2024-06-26T05:35:18.0479480Z Current runner version: '2.317.0' 2024-06-26T05:35:18.0482940Z Runner name: 'i-0220c04d5ce76743f' 2024-06-26T05:35:18.0483370Z Runner group name: 'Default' 2024-06-26T05:35:18.0483940Z Machine name: 'ip-10-0-3-190' 2024-06-26T05:35:18.0486410Z ##[group]GITHUB_TOKEN Permissions 2024-06-26T05:35:18.0487320Z Actions: read 2024-06-26T05:35:18.0487630Z Attestations: read 2024-06-26T05:35:18.0487930Z Checks: read 2024-06-26T05:35:18.0488210Z Contents: read 2024-06-26T05:35:18.0488510Z Deployments: read 2024-06-26T05:35:18.0488810Z Discussions: read 2024-06-26T05:35:18.0489110Z Issues: read 2024-06-26T05:35:18.0489390Z Metadata: read 2024-06-26T05:35:18.0489680Z Packages: read 2024-06-26T05:35:18.0489970Z Pages: read 2024-06-26T05:35:18.0490260Z PullRequests: read 2024-06-26T05:35:18.0490580Z RepositoryProjects: read 2024-06-26T05:35:18.0490920Z SecurityEvents: read 2024-06-26T05:35:18.0491240Z Statuses: read 2024-06-26T05:35:18.0491520Z ##[endgroup] 2024-06-26T05:35:18.0493180Z Secret source: Actions 2024-06-26T05:35:18.0493570Z Prepare workflow directory 2024-06-26T05:35:19.4354900Z Prepare all required actions 2024-06-26T05:35:19.4456170Z Getting action download info 2024-06-26T05:35:19.6368200Z Download action repository 'pytorch/test-infra@main' (SHA:43a2ce341cc31288e9a38b65ce600a7f43021bd5) 2024-06-26T05:35:20.3107760Z Download action repository 'pytorch/pytorch@main' (SHA:c04cec609dfb57a47665bd6de573669a9d2303fa) 2024-06-26T05:35:29.3349610Z Download action repository 'nick-fields/retry@v2.8.2' (SHA:3e91a01664abd3c5cd539100d10d33b9c5b68482) 2024-06-26T05:35:29.5099430Z Download action repository 'actions/upload-artifact@v3' (SHA:a8a3f3ad30e3422c9c7b888a15615d19a852ae32) 2024-06-26T05:35:29.7512180Z Getting action download info 2024-06-26T05:35:29.8396080Z Download action repository 'malfet/checkout@silent-checkout' (SHA:e07af140b3ccefc05679e3755b9db68f4ee4589c) 2024-06-26T05:35:30.0916960Z Getting action download info 2024-06-26T05:35:30.1967480Z Download action repository 'actions/cache@v3' (SHA:e12d46a63a90f2fae62d114769bbf2a179198b5c) 2024-06-26T05:35:30.6114340Z Getting action download info 2024-06-26T05:35:30.7346720Z Uses: pytorch/pytorch/.github/workflows/_mac-build.yml@refs/tags/ciflow/trunk/129470 (b8c4c54d347aa776934c60784e35936878ef18dc) 2024-06-26T05:35:30.7348080Z ##[group] Inputs 2024-06-26T05:35:30.7348290Z build-environment: macos-py3-arm64 2024-06-26T05:35:30.7348550Z runner-type: macos-m1-stable 2024-06-26T05:35:30.7348960Z build-generates-artifacts: true 2024-06-26T05:35:30.7349200Z xcode-version: 2024-06-26T05:35:30.7349380Z sync-tag: macos-py3-arm64-build 2024-06-26T05:35:30.7349610Z python-version: 3.9.12 2024-06-26T05:35:30.7349810Z environment-file: 2024-06-26T05:35:30.7350640Z 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" }, ]} 2024-06-26T05:35:30.7351490Z sccache-use-gha: false 2024-06-26T05:35:30.7351690Z ##[endgroup] 2024-06-26T05:35:30.7351990Z Complete job name: macos-py3-arm64 / build 2024-06-26T05:35:30.7799250Z ##[group]Run pytorch/test-infra/.github/actions/check-disk-space@main 2024-06-26T05:35:30.7799640Z with: 2024-06-26T05:35:30.7799810Z minimum-available-space-in-gb: 6 2024-06-26T05:35:30.7800040Z env: 2024-06-26T05:35:30.7800200Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:35:30.7800450Z SCCACHE_USE_GHA: false 2024-06-26T05:35:30.7800670Z ##[endgroup] 2024-06-26T05:35:30.7943520Z ##[group]Run echo "Print the available disk space for manual inspection" 2024-06-26T05:35:30.7944190Z echo "Print the available disk space for manual inspection" 2024-06-26T05:35:30.7944530Z df -h 2024-06-26T05:35:30.7944700Z  2024-06-26T05:35:30.7944870Z function check_disk_space() { 2024-06-26T05:35:30.7945110Z  set +e 2024-06-26T05:35:30.7945280Z  2024-06-26T05:35:30.7945480Z  # Set the minimum requirement space to 6GB 2024-06-26T05:35:30.7946510Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2024-06-26T05:35:30.7946930Z  2024-06-26T05:35:30.7947160Z  # Use KB to avoid floating point warning like 3.1GB 2024-06-26T05:35:30.7947590Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2024-06-26T05:35:30.7947910Z  do 2024-06-26T05:35:30.7948110Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2024-06-26T05:35:30.7948410Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2024-06-26T05:35:30.7948650Z  2024-06-26T05:35:30.7948830Z  if [ "${MOUNT}" = "/" ]; then 2024-06-26T05:35:30.7949170Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2024-06-26T05:35:30.7949980Z  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}" 2024-06-26T05:35:30.7950640Z  else 2024-06-26T05:35:30.7951010Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2024-06-26T05:35:30.7951430Z  fi 2024-06-26T05:35:30.7951590Z  fi 2024-06-26T05:35:30.7951750Z  done 2024-06-26T05:35:30.7951900Z  2024-06-26T05:35:30.7952050Z  set -e 2024-06-26T05:35:30.7952240Z } 2024-06-26T05:35:30.7952400Z  2024-06-26T05:35:30.7952590Z RESULT=$(check_disk_space) 2024-06-26T05:35:30.7952830Z echo "${RESULT}" 2024-06-26T05:35:30.7953070Z  2024-06-26T05:35:30.7953360Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2024-06-26T05:35:30.7954100Z  # We can clean up /System/Library/Caches/com.apple.coresymbolicationd on MacOS to free up the space and this should free up enough space 2024-06-26T05:35:30.7954890Z  # https://github.com/pytorch/pytorch/issues/85440 2024-06-26T05:35:30.7955400Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2024-06-26T05:35:30.7956120Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2024-06-26T05:35:30.7956820Z  sudo launchctl stop com.apple.coresymbolicationd || true 2024-06-26T05:35:30.7957230Z  2024-06-26T05:35:30.7957440Z  # Clean up crash reports on the runner 2024-06-26T05:35:30.7957900Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2024-06-26T05:35:30.7958270Z  2024-06-26T05:35:30.7958510Z  # Also try to clean up torch.hub caching directory 2024-06-26T05:35:30.7958890Z  rm -rf "${HOME}/.cache/torch/hub" || true 2024-06-26T05:35:30.7959160Z  2024-06-26T05:35:30.7959330Z  # Purge conda 2024-06-26T05:35:30.7959570Z  conda clean -p -t -y || true 2024-06-26T05:35:30.7959860Z  # and pip cache 2024-06-26T05:35:30.7960930Z  pip cache purge || true 2024-06-26T05:35:30.7961260Z  2024-06-26T05:35:30.7961580Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2024-06-26T05:35:30.7961960Z  # Re-run the check 2024-06-26T05:35:30.7962230Z  RESULT=$(check_disk_space) 2024-06-26T05:35:30.7962620Z  echo "${RESULT}" 2024-06-26T05:35:30.7962830Z fi 2024-06-26T05:35:30.7963040Z  2024-06-26T05:35:30.7963240Z if [[ "${RESULT}" == *Failure* ]]; then 2024-06-26T05:35:30.7963550Z  df -h 2024-06-26T05:35:30.7963740Z  2024-06-26T05:35:30.7964370Z  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." 2024-06-26T05:35:30.7965040Z  exit 1 2024-06-26T05:35:30.7965250Z fi 2024-06-26T05:35:30.7985170Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-06-26T05:35:30.7985480Z env: 2024-06-26T05:35:30.7985660Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:35:30.7985930Z SCCACHE_USE_GHA: false 2024-06-26T05:35:30.7986150Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2024-06-26T05:35:30.7986400Z ##[endgroup] 2024-06-26T05:35:30.8552600Z Print the available disk space for manual inspection 2024-06-26T05:35:30.8553300Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2024-06-26T05:35:30.8553820Z /dev/disk5s2s1 256Gi 9.5Gi 147Gi 7% 404k 1.5G 0% / 2024-06-26T05:35:30.8554280Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2024-06-26T05:35:30.8554770Z /dev/disk5s5 256Gi 1.0Gi 147Gi 1% 1 1.5G 0% /System/Volumes/VM 2024-06-26T05:35:30.8555330Z /dev/disk5s3 256Gi 5.7Gi 147Gi 4% 997 1.5G 0% /System/Volumes/Preboot 2024-06-26T05:35:30.8555880Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2024-06-26T05:35:30.8556510Z /dev/disk1s1 500Mi 54Mi 387Mi 13% 53 4.0M 0% /System/Volumes/iSCPreboot 2024-06-26T05:35:30.8557090Z /dev/disk1s3 500Mi 700Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2024-06-26T05:35:30.8557640Z /dev/disk5s1 256Gi 91Gi 147Gi 39% 11M 1.5G 1% /System/Volumes/Data 2024-06-26T05:35:30.8558400Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2024-06-26T05:35:30.8559180Z /dev/disk3s4 228Gi 220Ki 212Gi 1% 17 2.2G 0% /private/tmp/tmp-mount-CSI6T3 2024-06-26T05:35:30.8945370Z Success: There is 154554936KB free space left in / for macOS, continue 2024-06-26T05:35:30.9094310Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2024-06-26T05:35:30.9094730Z with: 2024-06-26T05:35:30.9094900Z submodules: recursive 2024-06-26T05:35:30.9095120Z fetch-depth: 0 2024-06-26T05:35:30.9095310Z env: 2024-06-26T05:35:30.9095490Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:35:30.9095740Z SCCACHE_USE_GHA: false 2024-06-26T05:35:30.9096000Z ##[endgroup] 2024-06-26T05:35:30.9123670Z ##[group]Run retry () { 2024-06-26T05:35:30.9123880Z retry () { 2024-06-26T05:35:30.9124180Z  $* || (sleep 1 && $*) || (sleep 2 && $*) || (sleep 4 && $*) || (sleep 8 && $*) 2024-06-26T05:35:30.9124510Z } 2024-06-26T05:35:30.9124690Z echo "${GITHUB_WORKSPACE}" 2024-06-26T05:35:30.9124940Z if [ -z "${NO_SUDO}" ]; then 2024-06-26T05:35:30.9125220Z  retry sudo rm -rf "${GITHUB_WORKSPACE}" 2024-06-26T05:35:30.9125490Z else 2024-06-26T05:35:30.9125700Z  retry rm -rf "${GITHUB_WORKSPACE}" 2024-06-26T05:35:30.9126060Z fi 2024-06-26T05:35:30.9126240Z mkdir "${GITHUB_WORKSPACE}" 2024-06-26T05:35:30.9143170Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-06-26T05:35:30.9143450Z env: 2024-06-26T05:35:30.9143630Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:35:30.9143870Z SCCACHE_USE_GHA: false 2024-06-26T05:35:30.9144050Z NO_SUDO: 2024-06-26T05:35:30.9144220Z ##[endgroup] 2024-06-26T05:35:31.0169830Z /Users/ec2-user/runner/_work/pytorch/pytorch 2024-06-26T05:35:45.4057410Z ##[group]Run malfet/checkout@silent-checkout 2024-06-26T05:35:45.4057680Z with: 2024-06-26T05:35:45.4057860Z ref: b8c4c54d347aa776934c60784e35936878ef18dc 2024-06-26T05:35:45.4058110Z fetch-depth: 0 2024-06-26T05:35:45.4058270Z submodules: recursive 2024-06-26T05:35:45.4058460Z quiet-checkout: true 2024-06-26T05:35:45.4058650Z repository: pytorch/pytorch 2024-06-26T05:35:45.4058940Z token: *** 2024-06-26T05:35:45.4059090Z ssh-strict: true 2024-06-26T05:35:45.4059270Z persist-credentials: true 2024-06-26T05:35:45.4059470Z clean: true 2024-06-26T05:35:45.4059640Z sparse-checkout-cone-mode: true 2024-06-26T05:35:45.4059860Z lfs: false 2024-06-26T05:35:45.4060020Z set-safe-directory: true 2024-06-26T05:35:45.4060460Z env: 2024-06-26T05:35:45.4060610Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:35:45.4060840Z SCCACHE_USE_GHA: false 2024-06-26T05:35:45.4061020Z ##[endgroup] 2024-06-26T05:35:45.5133500Z Syncing repository: pytorch/pytorch 2024-06-26T05:35:45.5134570Z ##[group]Getting Git version info 2024-06-26T05:35:45.5135040Z Working directory is '/Users/ec2-user/runner/_work/pytorch/pytorch' 2024-06-26T05:35:45.5135630Z [command]/usr/bin/git version 2024-06-26T05:35:45.5164610Z git version 2.39.3 (Apple Git-146) 2024-06-26T05:35:45.5177330Z ##[endgroup] 2024-06-26T05:35:45.5187190Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/63e73f06-a63a-463b-8c40-c74ad1c89a60' before making global git config changes 2024-06-26T05:35:45.5187980Z Adding repository directory to the temporary git global config as a safe directory 2024-06-26T05:35:45.5189160Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/pytorch/pytorch 2024-06-26T05:35:45.5265620Z Deleting the contents of '/Users/ec2-user/runner/_work/pytorch/pytorch' 2024-06-26T05:35:45.5269530Z ##[group]Initializing the repository 2024-06-26T05:35:45.5271430Z [command]/usr/bin/git init /Users/ec2-user/runner/_work/pytorch/pytorch 2024-06-26T05:35:45.5493350Z Initialized empty Git repository in /Users/ec2-user/runner/_work/pytorch/pytorch/.git/ 2024-06-26T05:35:45.5499170Z [command]/usr/bin/git remote add origin https://github.com/pytorch/pytorch 2024-06-26T05:35:45.5573120Z ##[endgroup] 2024-06-26T05:35:45.5573520Z ##[group]Disabling automatic garbage collection 2024-06-26T05:35:45.5575090Z [command]/usr/bin/git config --local gc.auto 0 2024-06-26T05:35:45.5639800Z ##[endgroup] 2024-06-26T05:35:45.5640140Z ##[group]Setting up auth 2024-06-26T05:35:45.5644230Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2024-06-26T05:35:45.5704550Z [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' || :" 2024-06-26T05:35:45.6191360Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2024-06-26T05:35:45.6259750Z [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' || :" 2024-06-26T05:35:45.6763310Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2024-06-26T05:35:45.6835340Z ##[endgroup] 2024-06-26T05:35:45.6835710Z ##[group]Fetching the repository 2024-06-26T05:35:45.6839350Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --progress --no-recurse-submodules --quiet origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2024-06-26T05:35:47.8750430Z remote: Enumerating objects: 987558 2024-06-26T05:35:47.8785230Z remote: Enumerating objects: 990079, done. 2024-06-26T05:35:47.8799400Z remote: Counting objects: 0% (1/2521) 2024-06-26T05:35:47.8802090Z remote: Counting objects: 1% (26/2521) 2024-06-26T05:35:47.8818040Z remote: Counting objects: 2% (51/2521) 2024-06-26T05:35:47.8820100Z remote: Counting objects: 3% (76/2521) 2024-06-26T05:35:47.8822120Z remote: Counting objects: 4% (101/2521) 2024-06-26T05:35:47.8824100Z remote: Counting objects: 5% (127/2521) 2024-06-26T05:35:47.8826070Z remote: Counting objects: 6% (152/2521) 2024-06-26T05:35:47.8827930Z remote: Counting objects: 7% (177/2521) 2024-06-26T05:35:47.8829860Z remote: Counting objects: 8% (202/2521) 2024-06-26T05:35:47.8831740Z remote: Counting objects: 9% (227/2521) 2024-06-26T05:35:47.8833890Z remote: Counting objects: 10% (253/2521) 2024-06-26T05:35:47.8835740Z remote: Counting objects: 11% (278/2521) 2024-06-26T05:35:47.8837700Z remote: Counting objects: 12% (303/2521) 2024-06-26T05:35:47.8841820Z remote: Counting objects: 13% (328/2521) 2024-06-26T05:35:47.8844050Z remote: Counting objects: 14% (353/2521) 2024-06-26T05:35:47.8846050Z remote: Counting objects: 15% (379/2521) 2024-06-26T05:35:47.8848000Z remote: Counting objects: 16% (404/2521) 2024-06-26T05:35:47.8849900Z remote: Counting objects: 17% (429/2521) 2024-06-26T05:35:47.8851640Z remote: Counting objects: 18% (454/2521) 2024-06-26T05:35:47.8853000Z remote: Counting objects: 19% (479/2521) 2024-06-26T05:35:47.8903740Z remote: Counting objects: 20% (505/2521) 2024-06-26T05:35:47.8905540Z remote: Counting objects: 21% (530/2521) 2024-06-26T05:35:47.8907390Z remote: Counting objects: 22% (555/2521) 2024-06-26T05:35:47.8909030Z remote: Counting objects: 23% (580/2521) 2024-06-26T05:35:47.8910620Z remote: Counting objects: 24% (606/2521) 2024-06-26T05:35:47.8912630Z remote: Counting objects: 25% (631/2521) 2024-06-26T05:35:47.8914570Z remote: Counting objects: 26% (656/2521) 2024-06-26T05:35:47.8916090Z remote: Counting objects: 27% (681/2521) 2024-06-26T05:35:47.8917740Z remote: Counting objects: 28% (706/2521) 2024-06-26T05:35:47.8919570Z remote: Counting objects: 29% (732/2521) 2024-06-26T05:35:47.8921150Z remote: Counting objects: 30% (757/2521) 2024-06-26T05:35:47.8922820Z remote: Counting objects: 31% (782/2521) 2024-06-26T05:35:47.8924750Z remote: Counting objects: 32% (807/2521) 2024-06-26T05:35:47.8926110Z remote: Counting objects: 33% (832/2521) 2024-06-26T05:35:47.8927480Z remote: Counting objects: 34% (858/2521) 2024-06-26T05:35:47.8930500Z remote: Counting objects: 35% (883/2521) 2024-06-26T05:35:47.8931950Z remote: Counting objects: 36% (908/2521) 2024-06-26T05:35:47.8933280Z remote: Counting objects: 37% (933/2521) 2024-06-26T05:35:47.8934610Z remote: Counting objects: 38% (958/2521) 2024-06-26T05:35:47.8935990Z remote: Counting objects: 39% (984/2521) 2024-06-26T05:35:47.8937410Z remote: Counting objects: 40% (1009/2521) 2024-06-26T05:35:47.8938830Z remote: Counting objects: 41% (1034/2521) 2024-06-26T05:35:47.8939970Z remote: Counting objects: 42% (1059/2521) 2024-06-26T05:35:47.8941060Z remote: Counting objects: 43% (1085/2521) 2024-06-26T05:35:47.8942180Z remote: Counting objects: 44% (1110/2521) 2024-06-26T05:35:47.8943320Z remote: Counting objects: 45% (1135/2521) 2024-06-26T05:35:47.8944420Z remote: Counting objects: 46% (1160/2521) 2024-06-26T05:35:47.8945530Z remote: Counting objects: 47% (1185/2521) 2024-06-26T05:35:47.8946670Z remote: Counting objects: 48% (1211/2521) 2024-06-26T05:35:47.8947760Z remote: Counting objects: 49% (1236/2521) 2024-06-26T05:35:47.8948870Z remote: Counting objects: 50% (1261/2521) 2024-06-26T05:35:47.8949930Z remote: Counting objects: 51% (1286/2521) 2024-06-26T05:35:47.8951010Z remote: Counting objects: 52% (1311/2521) 2024-06-26T05:35:47.8952120Z remote: Counting objects: 53% (1337/2521) 2024-06-26T05:35:47.8953270Z remote: Counting objects: 54% (1362/2521) 2024-06-26T05:35:47.8954380Z remote: Counting objects: 55% (1387/2521) 2024-06-26T05:35:47.8955480Z remote: Counting objects: 56% (1412/2521) 2024-06-26T05:35:47.8956590Z remote: Counting objects: 57% (1437/2521) 2024-06-26T05:35:47.8957690Z remote: Counting objects: 58% (1463/2521) 2024-06-26T05:35:47.8959030Z remote: Counting objects: 59% (1488/2521) 2024-06-26T05:35:47.8960240Z remote: Counting objects: 60% (1513/2521) 2024-06-26T05:35:47.8961340Z remote: Counting objects: 61% (1538/2521) 2024-06-26T05:35:47.8962440Z remote: Counting objects: 62% (1564/2521) 2024-06-26T05:35:47.8963710Z remote: Counting objects: 63% (1589/2521) 2024-06-26T05:35:47.8964840Z remote: Counting objects: 64% (1614/2521) 2024-06-26T05:35:47.8967370Z remote: Counting objects: 65% (1639/2521) 2024-06-26T05:35:47.8968520Z remote: Counting objects: 66% (1664/2521) 2024-06-26T05:35:47.8969650Z remote: Counting objects: 67% (1690/2521) 2024-06-26T05:35:47.8970750Z remote: Counting objects: 68% (1715/2521) 2024-06-26T05:35:47.8971850Z remote: Counting objects: 69% (1740/2521) 2024-06-26T05:35:47.8972990Z remote: Counting objects: 70% (1765/2521) 2024-06-26T05:35:47.8974080Z remote: Counting objects: 71% (1790/2521) 2024-06-26T05:35:47.8975190Z remote: Counting objects: 72% (1816/2521) 2024-06-26T05:35:47.8976320Z remote: Counting objects: 73% (1841/2521) 2024-06-26T05:35:47.8977430Z remote: Counting objects: 74% (1866/2521) 2024-06-26T05:35:47.8978550Z remote: Counting objects: 75% (1891/2521) 2024-06-26T05:35:47.8979780Z remote: Counting objects: 76% (1916/2521) 2024-06-26T05:35:47.8980980Z remote: Counting objects: 77% (1942/2521) 2024-06-26T05:35:47.8982240Z remote: Counting objects: 78% (1967/2521) 2024-06-26T05:35:47.8983270Z remote: Counting objects: 79% (1992/2521) 2024-06-26T05:35:47.8984180Z remote: Counting objects: 80% (2017/2521) 2024-06-26T05:35:47.8985070Z remote: Counting objects: 81% (2043/2521) 2024-06-26T05:35:47.8986350Z remote: Counting objects: 82% (2068/2521) 2024-06-26T05:35:47.8987250Z remote: Counting objects: 83% (2093/2521) 2024-06-26T05:35:47.8988120Z remote: Counting objects: 84% (2118/2521) 2024-06-26T05:35:47.8989020Z remote: Counting objects: 85% (2143/2521) 2024-06-26T05:35:47.8989900Z remote: Counting objects: 86% (2169/2521) 2024-06-26T05:35:47.8991370Z remote: Counting objects: 87% (2194/2521) 2024-06-26T05:35:47.8992330Z remote: Counting objects: 88% (2219/2521) 2024-06-26T05:35:47.8993230Z remote: Counting objects: 89% (2244/2521) 2024-06-26T05:35:47.8994240Z remote: Counting objects: 90% (2269/2521) 2024-06-26T05:35:47.8995130Z remote: Counting objects: 91% (2295/2521) 2024-06-26T05:35:47.8996020Z remote: Counting objects: 92% (2320/2521) 2024-06-26T05:35:47.8996890Z remote: Counting objects: 93% (2345/2521) 2024-06-26T05:35:47.8997770Z remote: Counting objects: 94% (2370/2521) 2024-06-26T05:35:47.8998660Z remote: Counting objects: 95% (2395/2521) 2024-06-26T05:35:47.8999590Z remote: Counting objects: 96% (2421/2521) 2024-06-26T05:35:47.9000560Z remote: Counting objects: 97% (2446/2521) 2024-06-26T05:35:47.9001520Z remote: Counting objects: 98% (2471/2521) 2024-06-26T05:35:47.9002440Z remote: Counting objects: 99% (2496/2521) 2024-06-26T05:35:47.9003390Z remote: Counting objects: 100% (2521/2521) 2024-06-26T05:35:47.9004340Z remote: Counting objects: 100% (2521/2521), done. 2024-06-26T05:35:47.9005380Z remote: Compressing objects: 0% (1/1016) 2024-06-26T05:35:47.9452270Z remote: Compressing objects: 1% (11/1016) 2024-06-26T05:35:47.9763230Z remote: Compressing objects: 2% (21/1016) 2024-06-26T05:35:48.0177860Z remote: Compressing objects: 3% (31/1016) 2024-06-26T05:35:48.0364900Z remote: Compressing objects: 4% (41/1016) 2024-06-26T05:35:48.0564120Z remote: Compressing objects: 5% (51/1016) 2024-06-26T05:35:48.0735230Z remote: Compressing objects: 6% (61/1016) 2024-06-26T05:35:48.1013160Z remote: Compressing objects: 7% (72/1016) 2024-06-26T05:35:48.2055550Z remote: Compressing objects: 8% (82/1016) 2024-06-26T05:35:48.3087300Z remote: Compressing objects: 9% (92/1016) 2024-06-26T05:35:48.4009420Z remote: Compressing objects: 10% (102/1016) 2024-06-26T05:35:48.4354120Z remote: Compressing objects: 11% (112/1016) 2024-06-26T05:35:48.4599590Z remote: Compressing objects: 12% (122/1016) 2024-06-26T05:35:48.4696650Z remote: Compressing objects: 13% (133/1016) 2024-06-26T05:35:48.4834450Z remote: Compressing objects: 14% (143/1016) 2024-06-26T05:35:48.4911110Z remote: Compressing objects: 15% (153/1016) 2024-06-26T05:35:48.4958550Z remote: Compressing objects: 16% (163/1016) 2024-06-26T05:35:48.4981620Z remote: Compressing objects: 17% (173/1016) 2024-06-26T05:35:48.4997300Z remote: Compressing objects: 18% (183/1016) 2024-06-26T05:35:48.5024300Z remote: Compressing objects: 19% (194/1016) 2024-06-26T05:35:48.5040140Z remote: Compressing objects: 20% (204/1016) 2024-06-26T05:35:48.5051370Z remote: Compressing objects: 21% (214/1016) 2024-06-26T05:35:48.5074410Z remote: Compressing objects: 22% (224/1016) 2024-06-26T05:35:48.5091740Z remote: Compressing objects: 23% (234/1016) 2024-06-26T05:35:48.5100640Z remote: Compressing objects: 24% (244/1016) 2024-06-26T05:35:48.5114160Z remote: Compressing objects: 25% (254/1016) 2024-06-26T05:35:48.5130470Z remote: Compressing objects: 26% (265/1016) 2024-06-26T05:35:48.5132660Z remote: Compressing objects: 27% (275/1016) 2024-06-26T05:35:48.5134630Z remote: Compressing objects: 28% (285/1016) 2024-06-26T05:35:48.5140160Z remote: Compressing objects: 29% (295/1016) 2024-06-26T05:35:48.5142190Z remote: Compressing objects: 30% (305/1016) 2024-06-26T05:35:48.5155280Z remote: Compressing objects: 31% (315/1016) 2024-06-26T05:35:48.5157270Z remote: Compressing objects: 32% (326/1016) 2024-06-26T05:35:48.5166290Z remote: Compressing objects: 33% (336/1016) 2024-06-26T05:35:48.5168260Z remote: Compressing objects: 34% (346/1016) 2024-06-26T05:35:48.5184810Z remote: Compressing objects: 35% (356/1016) 2024-06-26T05:35:48.5196100Z remote: Compressing objects: 36% (366/1016) 2024-06-26T05:35:48.5207840Z remote: Compressing objects: 37% (376/1016) 2024-06-26T05:35:48.5216550Z remote: Compressing objects: 38% (387/1016) 2024-06-26T05:35:48.5237340Z remote: Compressing objects: 39% (397/1016) 2024-06-26T05:35:48.5260540Z remote: Compressing objects: 40% (407/1016) 2024-06-26T05:35:48.5267170Z remote: Compressing objects: 41% (417/1016) 2024-06-26T05:35:48.5284330Z remote: Compressing objects: 42% (427/1016) 2024-06-26T05:35:48.5290750Z remote: Compressing objects: 43% (437/1016) 2024-06-26T05:35:48.5316570Z remote: Compressing objects: 44% (448/1016) 2024-06-26T05:35:48.5325860Z remote: Compressing objects: 45% (458/1016) 2024-06-26T05:35:48.5345710Z remote: Compressing objects: 46% (468/1016) 2024-06-26T05:35:48.5357970Z remote: Compressing objects: 47% (478/1016) 2024-06-26T05:35:48.5366820Z remote: Compressing objects: 48% (488/1016) 2024-06-26T05:35:48.5368840Z remote: Compressing objects: 49% (498/1016) 2024-06-26T05:35:48.5370910Z remote: Compressing objects: 50% (508/1016) 2024-06-26T05:35:48.5395760Z remote: Compressing objects: 51% (519/1016) 2024-06-26T05:35:48.5406300Z remote: Compressing objects: 52% (529/1016) 2024-06-26T05:35:48.5411240Z remote: Compressing objects: 53% (539/1016) 2024-06-26T05:35:48.5416650Z remote: Compressing objects: 54% (549/1016) 2024-06-26T05:35:48.5438320Z remote: Compressing objects: 55% (559/1016) 2024-06-26T05:35:48.5456290Z remote: Compressing objects: 56% (569/1016) 2024-06-26T05:35:48.5469520Z remote: Compressing objects: 57% (580/1016) 2024-06-26T05:35:48.5481580Z remote: Compressing objects: 58% (590/1016) 2024-06-26T05:35:48.5491320Z remote: Compressing objects: 59% (600/1016) 2024-06-26T05:35:48.5496260Z remote: Compressing objects: 60% (610/1016) 2024-06-26T05:35:48.5508800Z remote: Compressing objects: 61% (620/1016) 2024-06-26T05:35:48.5515820Z remote: Compressing objects: 62% (630/1016) 2024-06-26T05:35:48.5527140Z remote: Compressing objects: 63% (641/1016) 2024-06-26T05:35:48.5538830Z remote: Compressing objects: 64% (651/1016) 2024-06-26T05:35:48.5542930Z remote: Compressing objects: 65% (661/1016) 2024-06-26T05:35:48.5556210Z remote: Compressing objects: 66% (671/1016) 2024-06-26T05:35:48.5564570Z remote: Compressing objects: 67% (681/1016) 2024-06-26T05:35:48.5578050Z remote: Compressing objects: 68% (691/1016) 2024-06-26T05:35:48.5587690Z remote: Compressing objects: 69% (702/1016) 2024-06-26T05:35:48.5598410Z remote: Compressing objects: 70% (712/1016) 2024-06-26T05:35:48.5606910Z remote: Compressing objects: 71% (722/1016) 2024-06-26T05:35:48.5612120Z remote: Compressing objects: 72% (732/1016) 2024-06-26T05:35:48.5620990Z remote: Compressing objects: 73% (742/1016) 2024-06-26T05:35:48.5623920Z remote: Compressing objects: 74% (752/1016) 2024-06-26T05:35:48.5628930Z remote: Compressing objects: 75% (762/1016) 2024-06-26T05:35:48.5631140Z remote: Compressing objects: 76% (773/1016) 2024-06-26T05:35:48.5633720Z remote: Compressing objects: 77% (783/1016) 2024-06-26T05:35:48.5635840Z remote: Compressing objects: 78% (793/1016) 2024-06-26T05:35:48.5638010Z remote: Compressing objects: 79% (803/1016) 2024-06-26T05:35:48.5639990Z remote: Compressing objects: 80% (813/1016) 2024-06-26T05:35:48.5641920Z remote: Compressing objects: 81% (823/1016) 2024-06-26T05:35:48.5643870Z remote: Compressing objects: 82% (834/1016) 2024-06-26T05:35:48.5645830Z remote: Compressing objects: 83% (844/1016) 2024-06-26T05:35:48.5653570Z remote: Compressing objects: 84% (854/1016) 2024-06-26T05:35:48.5660800Z remote: Compressing objects: 85% (864/1016) 2024-06-26T05:35:48.5665630Z remote: Compressing objects: 86% (874/1016) 2024-06-26T05:35:48.5669930Z remote: Compressing objects: 87% (884/1016) 2024-06-26T05:35:48.5675940Z remote: Compressing objects: 88% (895/1016) 2024-06-26T05:35:48.5681780Z remote: Compressing objects: 89% (905/1016) 2024-06-26T05:35:48.5683270Z remote: Compressing objects: 90% (915/1016) 2024-06-26T05:35:48.5685630Z remote: Compressing objects: 91% (925/1016) 2024-06-26T05:35:48.5687140Z remote: Compressing objects: 92% (935/1016) 2024-06-26T05:35:48.5689630Z remote: Compressing objects: 93% (945/1016) 2024-06-26T05:35:48.5691160Z remote: Compressing objects: 94% (956/1016) 2024-06-26T05:35:48.5692580Z remote: Compressing objects: 95% (966/1016) 2024-06-26T05:35:48.5694160Z remote: Compressing objects: 96% (976/1016) 2024-06-26T05:35:48.5753680Z remote: Compressing objects: 97% (986/1016) 2024-06-26T05:35:48.5755210Z remote: Compressing objects: 98% (996/1016) 2024-06-26T05:35:48.5756340Z remote: Compressing objects: 99% (1006/1016) 2024-06-26T05:35:48.5757450Z remote: Compressing objects: 100% (1016/1016) 2024-06-26T05:35:48.5758670Z remote: Compressing objects: 100% (1016/1016), done. 2024-06-26T05:36:00.5778960Z remote: Total 990079 (delta 2076), reused 1799 (delta 1504), pack-reused 987558 2024-06-26T05:36:18.1019460Z [command]/usr/bin/git rev-parse --verify --quiet b8c4c54d347aa776934c60784e35936878ef18dc^{object} 2024-06-26T05:36:18.1238010Z b8c4c54d347aa776934c60784e35936878ef18dc 2024-06-26T05:36:18.1242040Z ##[endgroup] 2024-06-26T05:36:18.1243720Z ##[group]Determining the checkout info 2024-06-26T05:36:18.1244100Z ##[endgroup] 2024-06-26T05:36:18.1244410Z ##[group]Checking out the ref 2024-06-26T05:36:18.1245690Z [command]/usr/bin/git checkout --quiet --force b8c4c54d347aa776934c60784e35936878ef18dc 2024-06-26T05:36:21.8544630Z ##[endgroup] 2024-06-26T05:36:21.8545020Z ##[group]Setting up auth for fetching submodules 2024-06-26T05:36:21.8548230Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2024-06-26T05:36:21.8644800Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2024-06-26T05:36:21.8713300Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2024-06-26T05:36:21.8782440Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2024-06-26T05:36:21.8850210Z ##[endgroup] 2024-06-26T05:36:21.8850560Z ##[group]Fetching submodules 2024-06-26T05:36:21.8853120Z [command]/usr/bin/git submodule sync --recursive 2024-06-26T05:36:21.9368620Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --recursive 2024-06-26T05:36:21.9881720Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2024-06-26T05:36:21.9897380Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2024-06-26T05:36:21.9915800Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2024-06-26T05:36:21.9933860Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2024-06-26T05:36:21.9951870Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2024-06-26T05:36:21.9971070Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2024-06-26T05:36:21.9988030Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2024-06-26T05:36:22.0009170Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2024-06-26T05:36:22.0026470Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2024-06-26T05:36:22.0042800Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2024-06-26T05:36:22.0057680Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2024-06-26T05:36:22.0077080Z Submodule 'third_party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'third_party/eigen' 2024-06-26T05:36:22.0094700Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2024-06-26T05:36:22.0114850Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2024-06-26T05:36:22.0133740Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2024-06-26T05:36:22.0157220Z Submodule 'third_party/foxi' (https://github.com/houseroad/foxi.git) registered for path 'third_party/foxi' 2024-06-26T05:36:22.0173920Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2024-06-26T05:36:22.0193860Z Submodule 'third_party/gloo' (https://github.com/facebookincubator/gloo) registered for path 'third_party/gloo' 2024-06-26T05:36:22.0211840Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2024-06-26T05:36:22.0228720Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2024-06-26T05:36:22.0246630Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2024-06-26T05:36:22.0280840Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2024-06-26T05:36:22.0371710Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2024-06-26T05:36:22.0404240Z Submodule 'third_party/nccl/nccl' (https://github.com/NVIDIA/nccl) registered for path 'third_party/nccl/nccl' 2024-06-26T05:36:22.0428080Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2024-06-26T05:36:22.0448840Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2024-06-26T05:36:22.0465880Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2024-06-26T05:36:22.0483690Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2024-06-26T05:36:22.0503890Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2024-06-26T05:36:22.0524270Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2024-06-26T05:36:22.0543560Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2024-06-26T05:36:22.0566330Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2024-06-26T05:36:22.0587980Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2024-06-26T05:36:22.0604350Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2024-06-26T05:36:22.0625460Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2024-06-26T05:36:22.0696640Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/android/libs/fbjni'... 2024-06-26T05:36:22.3306280Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/FP16'... 2024-06-26T05:36:22.5229580Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/FXdiv'... 2024-06-26T05:36:22.7281400Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/NNPACK'... 2024-06-26T05:36:23.0318080Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2024-06-26T05:36:24.5549850Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2024-06-26T05:36:30.4420320Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/benchmark'... 2024-06-26T05:36:30.8210910Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2024-06-26T05:36:31.2607620Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2024-06-26T05:36:31.8156130Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2024-06-26T05:36:32.6208090Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/cutlass'... 2024-06-26T05:36:33.7372730Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/eigen'... 2024-06-26T05:36:36.9111390Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fbgemm'... 2024-06-26T05:36:37.9276700Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2024-06-26T05:36:39.2356770Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fmt'... 2024-06-26T05:36:40.1204640Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/foxi'... 2024-06-26T05:36:40.3070790Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2024-06-26T05:36:40.6924310Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/gloo'... 2024-06-26T05:36:41.0310300Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/googletest'... 2024-06-26T05:36:41.7472210Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/ideep'... 2024-06-26T05:36:42.0942790Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/ittapi'... 2024-06-26T05:36:42.3445600Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto'... 2024-06-26T05:36:43.3460110Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/mimalloc'... 2024-06-26T05:36:43.9920670Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/nccl/nccl'... 2024-06-26T05:36:44.6730970Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/nlohmann'... 2024-06-26T05:36:47.5540190Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx'... 2024-06-26T05:36:49.2752330Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2024-06-26T05:36:51.4966060Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/pocketfft'... 2024-06-26T05:36:51.7018050Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/protobuf'... 2024-06-26T05:36:56.5770050Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/psimd'... 2024-06-26T05:36:56.7824580Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2024-06-26T05:36:56.9801920Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/pybind11'... 2024-06-26T05:36:57.8333170Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2024-06-26T05:36:58.0753500Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/sleef'... 2024-06-26T05:36:58.6231910Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2024-06-26T05:36:59.0807070Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2024-06-26T05:36:59.1019130Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2024-06-26T05:36:59.1201230Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2024-06-26T05:36:59.1578960Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2024-06-26T05:36:59.2045300Z Submodule path 'third_party/VulkanMemoryAllocator': checked out 'a6bfc237255a6bac1513f7c1ebde6d8aed6b5191' 2024-06-26T05:37:02.5889650Z Submodule path 'third_party/XNNPACK': checked out 'fcbf55af6cf28a4627bcd1f703ab7ad843f0f3a2' 2024-06-26T05:37:02.6335920Z Submodule path 'third_party/benchmark': checked out '0d98dba29d66e93259db7daa53a9327df767a415' 2024-06-26T05:37:02.6781460Z Submodule path 'third_party/cpp-httplib': checked out '3b6597bba913d51161383657829b7e644e59c006' 2024-06-26T05:37:02.8396230Z Submodule path 'third_party/cpuinfo': checked out '3c8b1533ac03dd6531ab6e7b9245d488f13a82a5' 2024-06-26T05:37:02.8928440Z Submodule path 'third_party/cudnn_frontend': checked out 'aa3abd4bc689d6412979c7f55f9cd132848c9c6a' 2024-06-26T05:37:04.6175210Z Submodule path 'third_party/cutlass': checked out 'bbe579a9e3beb6ea6626d9227ec32d0dae119a49' 2024-06-26T05:37:05.5372770Z Submodule path 'third_party/eigen': checked out '3147391d946bb4b6c68edd901f2add6ac1f31f8c' 2024-06-26T05:37:05.6919440Z Submodule path 'third_party/fbgemm': checked out 'dbc3157bf256f1339b3fa1fef2be89ac4078be0e' 2024-06-26T05:37:05.7072700Z Submodule 'third_party/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/third_party/asmjit' 2024-06-26T05:37:05.7086910Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/third_party/cpuinfo' 2024-06-26T05:37:05.7104620Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/fbgemm/third_party/cutlass' 2024-06-26T05:37:05.7124610Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/third_party/googletest' 2024-06-26T05:37:05.7142910Z Submodule 'third_party/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/third_party/hipify_torch' 2024-06-26T05:37:05.7207230Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/asmjit'... 2024-06-26T05:37:06.5732590Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/cpuinfo'... 2024-06-26T05:37:07.0951610Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/cutlass'... 2024-06-26T05:37:08.1854770Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/googletest'... 2024-06-26T05:37:08.9259420Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fbgemm/third_party/hipify_torch'... 2024-06-26T05:37:09.2509730Z Submodule path 'third_party/fbgemm/third_party/asmjit': checked out 'd3fbf7c9bc7c1d1365a94a45614b91c5a3706b81' 2024-06-26T05:37:09.3666420Z Submodule path 'third_party/fbgemm/third_party/cpuinfo': checked out 'ed8b86a253800bafdb7b25c5c399f91bff9cb1f3' 2024-06-26T05:37:10.2157660Z Submodule path 'third_party/fbgemm/third_party/cutlass': checked out 'fc9ebc645b63f3a6bc80aaefde5c063fb72110d6' 2024-06-26T05:37:10.2907450Z Submodule path 'third_party/fbgemm/third_party/googletest': checked out 'cbf019de22c8dd37b2108da35b2748fd702d1796' 2024-06-26T05:37:10.3248310Z Submodule path 'third_party/fbgemm/third_party/hipify_torch': checked out '23f53b025b466d8ec3c45d52290d3442f7fbe6b1' 2024-06-26T05:37:10.8304290Z Submodule path 'third_party/flatbuffers': checked out '01834de25e4bf3975a9a00e816292b1ad0fe184b' 2024-06-26T05:37:10.8989570Z Submodule path 'third_party/fmt': checked out 'e69e5f977d458f2650bb346dadf2ad30c5320281' 2024-06-26T05:37:11.2394160Z Submodule path 'third_party/foxi': checked out 'c278588e34e535f0bb8f00df3880d26928038cad' 2024-06-26T05:37:11.3301630Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2024-06-26T05:37:11.3767430Z Submodule path 'third_party/gloo': checked out '5354032ea08eadd7fc4456477f7f7c6308818509' 2024-06-26T05:37:11.4580270Z Submodule path 'third_party/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2024-06-26T05:37:11.4954940Z Submodule path 'third_party/ideep': checked out '55ca0191687aaf19aca5cdb7881c791e3bea442b' 2024-06-26T05:37:11.4999900Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2024-06-26T05:37:11.5065550Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2024-06-26T05:37:19.0753750Z Submodule path 'third_party/ideep/mkl-dnn': checked out '1137e04ec0b5251ca2b4400a4fd3c667ce843d67' 2024-06-26T05:37:19.1048200Z Submodule path 'third_party/ittapi': checked out '5b8a7d7422611c3a0d799fb5fc5dd4abfae35b42' 2024-06-26T05:37:19.1800650Z Submodule path 'third_party/kineto': checked out '8681ff11e1fa54da39023076c5c43eddd87b7a8a' 2024-06-26T05:37:19.1859290Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2024-06-26T05:37:19.1890540Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2024-06-26T05:37:19.1908300Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2024-06-26T05:37:19.1972780Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2024-06-26T05:37:19.6190200Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2024-06-26T05:37:20.5239920Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2024-06-26T05:37:21.3441530Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2024-06-26T05:37:21.3585820Z Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2024-06-26T05:37:21.3610100Z Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2024-06-26T05:37:21.3630100Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2024-06-26T05:37:21.3651880Z Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2024-06-26T05:37:21.3678940Z Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2024-06-26T05:37:21.3704150Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2024-06-26T05:37:21.3730410Z Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2024-06-26T05:37:21.3752150Z Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2024-06-26T05:37:21.3819950Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2024-06-26T05:37:22.2404540Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2024-06-26T05:37:22.6129510Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2024-06-26T05:37:23.4897740Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2024-06-26T05:37:23.7406950Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2024-06-26T05:37:24.1973630Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2024-06-26T05:37:24.8834920Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2024-06-26T05:37:27.7615380Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2024-06-26T05:37:28.1513570Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2024-06-26T05:37:28.1807240Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2024-06-26T05:37:28.2190770Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2024-06-26T05:37:28.2412770Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2024-06-26T05:37:28.2451670Z Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2024-06-26T05:37:28.2513760Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2024-06-26T05:37:28.5224970Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2024-06-26T05:37:28.5488150Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2024-06-26T05:37:28.5924900Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2024-06-26T05:37:28.7771270Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2024-06-26T05:37:28.8061410Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2024-06-26T05:37:28.8548480Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out 'a33701196adfad74917046096bf5a2aa0ab0bb50' 2024-06-26T05:37:28.9114590Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2024-06-26T05:37:28.9623060Z Submodule path 'third_party/mimalloc': checked out 'b66e3214d8a104669c2ec05ae91ebc26a8f5ab78' 2024-06-26T05:37:28.9959820Z Submodule path 'third_party/nccl/nccl': checked out '48bb7fec7953112ff37499a272317f6663f8f600' 2024-06-26T05:37:29.1505210Z Submodule path 'third_party/nlohmann': checked out '87cda1d6646592ac5866dc703c8e1839046a6806' 2024-06-26T05:37:31.2579980Z Submodule path 'third_party/onnx': checked out '990217f043af7222348ca8f0301e17fa7b841781' 2024-06-26T05:37:31.2754970Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/onnx/third_party/benchmark' 2024-06-26T05:37:31.2773170Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2024-06-26T05:37:31.2840720Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/third_party/benchmark'... 2024-06-26T05:37:31.6376760Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2024-06-26T05:37:32.6987730Z Submodule path 'third_party/onnx/third_party/benchmark': checked out '2dd015dfef425c866d9a43f2c67d8b52d709acb6' 2024-06-26T05:37:32.7394350Z Submodule path 'third_party/onnx/third_party/pybind11': checked out '5b0a6fc2017fcc176545afe3e09c9f9885283242' 2024-06-26T05:37:32.8547190Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2024-06-26T05:37:32.8599340Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2024-06-26T05:37:32.8618130Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2024-06-26T05:37:32.8639870Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2024-06-26T05:37:32.8665420Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2024-06-26T05:37:32.8687460Z Submodule 'third_party/opentelemetry-proto' (https://github.com/open-telemetry/opentelemetry-proto) registered for path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2024-06-26T05:37:32.8706270Z Submodule 'third_party/opentracing-cpp' (https://github.com/opentracing/opentracing-cpp.git) registered for path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2024-06-26T05:37:32.8729810Z Submodule 'third_party/prometheus-cpp' (https://github.com/jupp0r/prometheus-cpp) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2024-06-26T05:37:32.8766050Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2024-06-26T05:37:32.8834030Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2024-06-26T05:37:33.2569860Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2024-06-26T05:37:33.9317620Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2024-06-26T05:37:34.2945010Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2024-06-26T05:37:37.1518480Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2024-06-26T05:37:37.5012320Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2024-06-26T05:37:37.7077820Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2024-06-26T05:37:38.0222070Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2024-06-26T05:37:42.9183770Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2024-06-26T05:37:42.9622900Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2024-06-26T05:37:42.9858360Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2024-06-26T05:37:43.1497960Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2024-06-26T05:37:43.1752160Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2024-06-26T05:37:43.1998410Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2024-06-26T05:37:43.2274780Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2024-06-26T05:37:43.2316730Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2024-06-26T05:37:43.2334560Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2024-06-26T05:37:43.2398620Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2024-06-26T05:37:44.2506130Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2024-06-26T05:37:45.2569510Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2024-06-26T05:37:45.3039570Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2024-06-26T05:37:48.4838020Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2024-06-26T05:37:48.5155550Z Submodule path 'third_party/pocketfft': checked out '9d3ab05a7fffbc71a492bc6a17be034e83e8f0fe' 2024-06-26T05:37:49.5299540Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2024-06-26T05:37:49.5486970Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2024-06-26T05:37:49.5507240Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2024-06-26T05:37:49.5572690Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2024-06-26T05:37:49.9092270Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2024-06-26T05:37:50.6014090Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2024-06-26T05:37:50.6745160Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2024-06-26T05:37:50.6925620Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2024-06-26T05:37:50.7125460Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2024-06-26T05:37:50.7547480Z Submodule path 'third_party/pybind11': checked out '3e9dfa2866941655c56877882565e7577de6fc7b' 2024-06-26T05:37:50.7916740Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2024-06-26T05:37:50.8446340Z Submodule path 'third_party/sleef': checked out '60e76d2bce17d278b439d9da17177c8f957a9e9b' 2024-06-26T05:37:50.8962630Z Submodule path 'third_party/tensorpipe': checked out '52791a2fd214b2a9dc5759d36725909c1daa7f2e' 2024-06-26T05:37:50.9005620Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2024-06-26T05:37:50.9026010Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2024-06-26T05:37:50.9048450Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2024-06-26T05:37:50.9068520Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2024-06-26T05:37:50.9136070Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2024-06-26T05:37:51.6225760Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2024-06-26T05:37:51.8672800Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2024-06-26T05:37:52.6623050Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2024-06-26T05:37:53.5479580Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2024-06-26T05:37:53.5731480Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2024-06-26T05:37:53.6399140Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '1dff88e5161cba5c59276d2070d2e304e4dcb242' 2024-06-26T05:37:53.6758350Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2024-06-26T05:37:53.6813600Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2024-06-26T05:37:53.6876870Z Cloning into '/Users/ec2-user/runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2024-06-26T05:37:53.9566290Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2024-06-26T05:37:53.9624060Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2024-06-26T05:37:54.0139680Z Entering 'android/libs/fbjni' 2024-06-26T05:37:54.0228140Z Entering 'third_party/FP16' 2024-06-26T05:37:54.0310800Z Entering 'third_party/FXdiv' 2024-06-26T05:37:54.0394950Z Entering 'third_party/NNPACK' 2024-06-26T05:37:54.0478920Z Entering 'third_party/VulkanMemoryAllocator' 2024-06-26T05:37:54.0570590Z Entering 'third_party/XNNPACK' 2024-06-26T05:37:54.0661830Z Entering 'third_party/benchmark' 2024-06-26T05:37:54.0749320Z Entering 'third_party/cpp-httplib' 2024-06-26T05:37:54.0832430Z Entering 'third_party/cpuinfo' 2024-06-26T05:37:54.0916710Z Entering 'third_party/cudnn_frontend' 2024-06-26T05:37:54.0999750Z Entering 'third_party/cutlass' 2024-06-26T05:37:54.1084350Z Entering 'third_party/eigen' 2024-06-26T05:37:54.1170580Z Entering 'third_party/fbgemm' 2024-06-26T05:37:54.1252140Z Entering 'third_party/fbgemm/third_party/asmjit' 2024-06-26T05:37:54.1335560Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2024-06-26T05:37:54.1418650Z Entering 'third_party/fbgemm/third_party/cutlass' 2024-06-26T05:37:54.1502060Z Entering 'third_party/fbgemm/third_party/googletest' 2024-06-26T05:37:54.1587440Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2024-06-26T05:37:54.1671600Z Entering 'third_party/flatbuffers' 2024-06-26T05:37:54.1757440Z Entering 'third_party/fmt' 2024-06-26T05:37:54.1840820Z Entering 'third_party/foxi' 2024-06-26T05:37:54.1923560Z Entering 'third_party/gemmlowp/gemmlowp' 2024-06-26T05:37:54.2006170Z Entering 'third_party/gloo' 2024-06-26T05:37:54.2088000Z Entering 'third_party/googletest' 2024-06-26T05:37:54.2170800Z Entering 'third_party/ideep' 2024-06-26T05:37:54.2251390Z Entering 'third_party/ideep/mkl-dnn' 2024-06-26T05:37:54.2338320Z Entering 'third_party/ittapi' 2024-06-26T05:37:54.2423140Z Entering 'third_party/kineto' 2024-06-26T05:37:54.2505370Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2024-06-26T05:37:54.2586880Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2024-06-26T05:37:54.2671260Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2024-06-26T05:37:54.2754820Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2024-06-26T05:37:54.2837860Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2024-06-26T05:37:54.2919080Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2024-06-26T05:37:54.3003840Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2024-06-26T05:37:54.3085890Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2024-06-26T05:37:54.3169100Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2024-06-26T05:37:54.3252190Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2024-06-26T05:37:54.3337510Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2024-06-26T05:37:54.3420750Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2024-06-26T05:37:54.3504560Z Entering 'third_party/mimalloc' 2024-06-26T05:37:54.3590010Z Entering 'third_party/nccl/nccl' 2024-06-26T05:37:54.3671220Z Entering 'third_party/nlohmann' 2024-06-26T05:37:54.3752720Z Entering 'third_party/onnx' 2024-06-26T05:37:54.3838740Z Entering 'third_party/onnx/third_party/benchmark' 2024-06-26T05:37:54.3923390Z Entering 'third_party/onnx/third_party/pybind11' 2024-06-26T05:37:54.4009160Z Entering 'third_party/opentelemetry-cpp' 2024-06-26T05:37:54.4093000Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2024-06-26T05:37:54.4175520Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2024-06-26T05:37:54.4259380Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2024-06-26T05:37:54.4342600Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2024-06-26T05:37:54.4424490Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2024-06-26T05:37:54.4507820Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2024-06-26T05:37:54.4589710Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2024-06-26T05:37:54.4671190Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2024-06-26T05:37:54.4754840Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2024-06-26T05:37:54.4840690Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2024-06-26T05:37:54.4933020Z Entering 'third_party/pocketfft' 2024-06-26T05:37:54.5017560Z Entering 'third_party/protobuf' 2024-06-26T05:37:54.5099060Z Entering 'third_party/protobuf/third_party/benchmark' 2024-06-26T05:37:54.5181330Z Entering 'third_party/protobuf/third_party/googletest' 2024-06-26T05:37:54.5266820Z Entering 'third_party/psimd' 2024-06-26T05:37:54.5349790Z Entering 'third_party/pthreadpool' 2024-06-26T05:37:54.5431460Z Entering 'third_party/pybind11' 2024-06-26T05:37:54.5513660Z Entering 'third_party/python-peachpy' 2024-06-26T05:37:54.5595760Z Entering 'third_party/sleef' 2024-06-26T05:37:54.5676010Z Entering 'third_party/tensorpipe' 2024-06-26T05:37:54.5755680Z Entering 'third_party/tensorpipe/third_party/googletest' 2024-06-26T05:37:54.5838210Z Entering 'third_party/tensorpipe/third_party/libnop' 2024-06-26T05:37:54.5919670Z Entering 'third_party/tensorpipe/third_party/libuv' 2024-06-26T05:37:54.6002850Z Entering 'third_party/tensorpipe/third_party/pybind11' 2024-06-26T05:37:54.6081760Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2024-06-26T05:37:54.6176840Z ##[endgroup] 2024-06-26T05:37:54.6177890Z ##[group]Persisting credentials for submodules 2024-06-26T05:37:54.6180650Z [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' || :" 2024-06-26T05:37:54.6685840Z Entering 'android/libs/fbjni' 2024-06-26T05:37:54.6789210Z Entering 'third_party/FP16' 2024-06-26T05:37:54.6888570Z Entering 'third_party/FXdiv' 2024-06-26T05:37:54.6987900Z Entering 'third_party/NNPACK' 2024-06-26T05:37:54.7086710Z Entering 'third_party/VulkanMemoryAllocator' 2024-06-26T05:37:54.7186630Z Entering 'third_party/XNNPACK' 2024-06-26T05:37:54.7292690Z Entering 'third_party/benchmark' 2024-06-26T05:37:54.7396200Z Entering 'third_party/cpp-httplib' 2024-06-26T05:37:54.7496080Z Entering 'third_party/cpuinfo' 2024-06-26T05:37:54.7595950Z Entering 'third_party/cudnn_frontend' 2024-06-26T05:37:54.7696560Z Entering 'third_party/cutlass' 2024-06-26T05:37:54.7799480Z Entering 'third_party/eigen' 2024-06-26T05:37:54.7902370Z Entering 'third_party/fbgemm' 2024-06-26T05:37:54.8001890Z Entering 'third_party/fbgemm/third_party/asmjit' 2024-06-26T05:37:54.8101430Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2024-06-26T05:37:54.8200520Z Entering 'third_party/fbgemm/third_party/cutlass' 2024-06-26T05:37:54.8306970Z Entering 'third_party/fbgemm/third_party/googletest' 2024-06-26T05:37:54.8403970Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2024-06-26T05:37:54.8505190Z Entering 'third_party/flatbuffers' 2024-06-26T05:37:54.8607020Z Entering 'third_party/fmt' 2024-06-26T05:37:54.8707620Z Entering 'third_party/foxi' 2024-06-26T05:37:54.8807370Z Entering 'third_party/gemmlowp/gemmlowp' 2024-06-26T05:37:54.8907010Z Entering 'third_party/gloo' 2024-06-26T05:37:54.9007880Z Entering 'third_party/googletest' 2024-06-26T05:37:54.9107880Z Entering 'third_party/ideep' 2024-06-26T05:37:54.9206250Z Entering 'third_party/ideep/mkl-dnn' 2024-06-26T05:37:54.9309190Z Entering 'third_party/ittapi' 2024-06-26T05:37:54.9410870Z Entering 'third_party/kineto' 2024-06-26T05:37:54.9509430Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2024-06-26T05:37:54.9608490Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2024-06-26T05:37:54.9710100Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2024-06-26T05:37:54.9811010Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2024-06-26T05:37:54.9911390Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2024-06-26T05:37:55.0010810Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2024-06-26T05:37:55.0113510Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2024-06-26T05:37:55.0213490Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2024-06-26T05:37:55.0313710Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2024-06-26T05:37:55.0414910Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2024-06-26T05:37:55.0516480Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2024-06-26T05:37:55.0618910Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2024-06-26T05:37:55.0721880Z Entering 'third_party/mimalloc' 2024-06-26T05:37:55.0822130Z Entering 'third_party/nccl/nccl' 2024-06-26T05:37:55.0921190Z Entering 'third_party/nlohmann' 2024-06-26T05:37:55.1020040Z Entering 'third_party/onnx' 2024-06-26T05:37:55.1124070Z Entering 'third_party/onnx/third_party/benchmark' 2024-06-26T05:37:55.1225300Z Entering 'third_party/onnx/third_party/pybind11' 2024-06-26T05:37:55.1325770Z Entering 'third_party/opentelemetry-cpp' 2024-06-26T05:37:55.1425730Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2024-06-26T05:37:55.1526090Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2024-06-26T05:37:55.1626060Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2024-06-26T05:37:55.1724770Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2024-06-26T05:37:55.1825850Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2024-06-26T05:37:55.1925680Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2024-06-26T05:37:55.2024210Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2024-06-26T05:37:55.2121100Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2024-06-26T05:37:55.2222700Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2024-06-26T05:37:55.2326480Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2024-06-26T05:37:55.2436160Z Entering 'third_party/pocketfft' 2024-06-26T05:37:55.2538450Z Entering 'third_party/protobuf' 2024-06-26T05:37:55.2638110Z Entering 'third_party/protobuf/third_party/benchmark' 2024-06-26T05:37:55.2739950Z Entering 'third_party/protobuf/third_party/googletest' 2024-06-26T05:37:55.2843530Z Entering 'third_party/psimd' 2024-06-26T05:37:55.2946010Z Entering 'third_party/pthreadpool' 2024-06-26T05:37:55.3045530Z Entering 'third_party/pybind11' 2024-06-26T05:37:55.3146020Z Entering 'third_party/python-peachpy' 2024-06-26T05:37:55.3246820Z Entering 'third_party/sleef' 2024-06-26T05:37:55.3346080Z Entering 'third_party/tensorpipe' 2024-06-26T05:37:55.3445090Z Entering 'third_party/tensorpipe/third_party/googletest' 2024-06-26T05:37:55.3544010Z Entering 'third_party/tensorpipe/third_party/libnop' 2024-06-26T05:37:55.3644420Z Entering 'third_party/tensorpipe/third_party/libuv' 2024-06-26T05:37:55.3744380Z Entering 'third_party/tensorpipe/third_party/pybind11' 2024-06-26T05:37:55.3843150Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2024-06-26T05:37:55.3959700Z [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" 2024-06-26T05:37:55.4466690Z Entering 'android/libs/fbjni' 2024-06-26T05:37:55.4567420Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2024-06-26T05:37:55.4601760Z Entering 'third_party/FP16' 2024-06-26T05:37:55.4701480Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2024-06-26T05:37:55.4736630Z Entering 'third_party/FXdiv' 2024-06-26T05:37:55.4834850Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2024-06-26T05:37:55.4869630Z Entering 'third_party/NNPACK' 2024-06-26T05:37:55.4967380Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2024-06-26T05:37:55.5002150Z Entering 'third_party/VulkanMemoryAllocator' 2024-06-26T05:37:55.5101020Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2024-06-26T05:37:55.5136040Z Entering 'third_party/XNNPACK' 2024-06-26T05:37:55.5233910Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2024-06-26T05:37:55.5274160Z Entering 'third_party/benchmark' 2024-06-26T05:37:55.5374850Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2024-06-26T05:37:55.5410180Z Entering 'third_party/cpp-httplib' 2024-06-26T05:37:55.5508550Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2024-06-26T05:37:55.5542540Z Entering 'third_party/cpuinfo' 2024-06-26T05:37:55.5640660Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2024-06-26T05:37:55.5675630Z Entering 'third_party/cudnn_frontend' 2024-06-26T05:37:55.5773970Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2024-06-26T05:37:55.5809290Z Entering 'third_party/cutlass' 2024-06-26T05:37:55.5908100Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2024-06-26T05:37:55.5945770Z Entering 'third_party/eigen' 2024-06-26T05:37:55.6043990Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/eigen/config remote.origin.url 2024-06-26T05:37:55.6079910Z Entering 'third_party/fbgemm' 2024-06-26T05:37:55.6178940Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2024-06-26T05:37:55.6212700Z Entering 'third_party/fbgemm/third_party/asmjit' 2024-06-26T05:37:55.6309950Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/asmjit/config remote.origin.url 2024-06-26T05:37:55.6345000Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2024-06-26T05:37:55.6442230Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/cpuinfo/config remote.origin.url 2024-06-26T05:37:55.6476000Z Entering 'third_party/fbgemm/third_party/cutlass' 2024-06-26T05:37:55.6574310Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/cutlass/config remote.origin.url 2024-06-26T05:37:55.6611520Z Entering 'third_party/fbgemm/third_party/googletest' 2024-06-26T05:37:55.6711460Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/googletest/config remote.origin.url 2024-06-26T05:37:55.6746500Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2024-06-26T05:37:55.6844990Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/third_party/hipify_torch/config remote.origin.url 2024-06-26T05:37:55.6881880Z Entering 'third_party/flatbuffers' 2024-06-26T05:37:55.6980670Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2024-06-26T05:37:55.7015950Z Entering 'third_party/fmt' 2024-06-26T05:37:55.7113680Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2024-06-26T05:37:55.7148020Z Entering 'third_party/foxi' 2024-06-26T05:37:55.7245310Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/foxi/config remote.origin.url 2024-06-26T05:37:55.7280140Z Entering 'third_party/gemmlowp/gemmlowp' 2024-06-26T05:37:55.7379300Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2024-06-26T05:37:55.7413700Z Entering 'third_party/gloo' 2024-06-26T05:37:55.7511760Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2024-06-26T05:37:55.7546220Z Entering 'third_party/googletest' 2024-06-26T05:37:55.7644070Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2024-06-26T05:37:55.7678650Z Entering 'third_party/ideep' 2024-06-26T05:37:55.7775130Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2024-06-26T05:37:55.7807890Z Entering 'third_party/ideep/mkl-dnn' 2024-06-26T05:37:55.7905640Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2024-06-26T05:37:55.7943560Z Entering 'third_party/ittapi' 2024-06-26T05:37:55.8042190Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2024-06-26T05:37:55.8076350Z Entering 'third_party/kineto' 2024-06-26T05:37:55.8172950Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2024-06-26T05:37:55.8205580Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2024-06-26T05:37:55.8303070Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2024-06-26T05:37:55.8336050Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2024-06-26T05:37:55.8434360Z 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 2024-06-26T05:37:55.8469110Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2024-06-26T05:37:55.8567080Z 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 2024-06-26T05:37:55.8602020Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2024-06-26T05:37:55.8700480Z 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 2024-06-26T05:37:55.8735090Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2024-06-26T05:37:55.8832510Z 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 2024-06-26T05:37:55.8864840Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2024-06-26T05:37:55.8964230Z 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 2024-06-26T05:37:55.9000340Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2024-06-26T05:37:55.9098080Z 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 2024-06-26T05:37:55.9132560Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2024-06-26T05:37:55.9229170Z 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 2024-06-26T05:37:55.9263230Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2024-06-26T05:37:55.9360770Z 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 2024-06-26T05:37:55.9395430Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2024-06-26T05:37:55.9492580Z 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 2024-06-26T05:37:55.9528760Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2024-06-26T05:37:55.9625780Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2024-06-26T05:37:55.9659530Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2024-06-26T05:37:55.9755680Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2024-06-26T05:37:55.9791440Z Entering 'third_party/mimalloc' 2024-06-26T05:37:55.9889650Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2024-06-26T05:37:55.9924220Z Entering 'third_party/nccl/nccl' 2024-06-26T05:37:56.0021770Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/nccl/nccl/config remote.origin.url 2024-06-26T05:37:56.0055990Z Entering 'third_party/nlohmann' 2024-06-26T05:37:56.0152490Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2024-06-26T05:37:56.0187380Z Entering 'third_party/onnx' 2024-06-26T05:37:56.0284690Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2024-06-26T05:37:56.0323430Z Entering 'third_party/onnx/third_party/benchmark' 2024-06-26T05:37:56.0422550Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/benchmark/config remote.origin.url 2024-06-26T05:37:56.0456570Z Entering 'third_party/onnx/third_party/pybind11' 2024-06-26T05:37:56.0553600Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2024-06-26T05:37:56.0590410Z Entering 'third_party/opentelemetry-cpp' 2024-06-26T05:37:56.0689990Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2024-06-26T05:37:56.0723200Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2024-06-26T05:37:56.0848330Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2024-06-26T05:37:56.0882390Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2024-06-26T05:37:56.0979010Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2024-06-26T05:37:56.1013470Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2024-06-26T05:37:56.1109460Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2024-06-26T05:37:56.1143320Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2024-06-26T05:37:56.1241370Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2024-06-26T05:37:56.1276030Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2024-06-26T05:37:56.1372660Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2024-06-26T05:37:56.1406560Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2024-06-26T05:37:56.1504410Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2024-06-26T05:37:56.1538620Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2024-06-26T05:37:56.1635520Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2024-06-26T05:37:56.1668170Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2024-06-26T05:37:56.1780670Z 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 2024-06-26T05:37:56.1815810Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2024-06-26T05:37:56.1913570Z 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 2024-06-26T05:37:56.1952050Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2024-06-26T05:37:56.2051150Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2024-06-26T05:37:56.2094400Z Entering 'third_party/pocketfft' 2024-06-26T05:37:56.2193620Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2024-06-26T05:37:56.2228830Z Entering 'third_party/protobuf' 2024-06-26T05:37:56.2331570Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2024-06-26T05:37:56.2362350Z Entering 'third_party/protobuf/third_party/benchmark' 2024-06-26T05:37:56.2462130Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2024-06-26T05:37:56.2496760Z Entering 'third_party/protobuf/third_party/googletest' 2024-06-26T05:37:56.2593920Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2024-06-26T05:37:56.2629920Z Entering 'third_party/psimd' 2024-06-26T05:37:56.2728150Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2024-06-26T05:37:56.2762420Z Entering 'third_party/pthreadpool' 2024-06-26T05:37:56.2860420Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2024-06-26T05:37:56.2895880Z Entering 'third_party/pybind11' 2024-06-26T05:37:56.2995650Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2024-06-26T05:37:56.3030810Z Entering 'third_party/python-peachpy' 2024-06-26T05:37:56.3127770Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2024-06-26T05:37:56.3162250Z Entering 'third_party/sleef' 2024-06-26T05:37:56.3259880Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2024-06-26T05:37:56.3294500Z Entering 'third_party/tensorpipe' 2024-06-26T05:37:56.3392880Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2024-06-26T05:37:56.3426390Z Entering 'third_party/tensorpipe/third_party/googletest' 2024-06-26T05:37:56.3525030Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2024-06-26T05:37:56.3559000Z Entering 'third_party/tensorpipe/third_party/libnop' 2024-06-26T05:37:56.3656500Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2024-06-26T05:37:56.3690090Z Entering 'third_party/tensorpipe/third_party/libuv' 2024-06-26T05:37:56.3787960Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2024-06-26T05:37:56.3822310Z Entering 'third_party/tensorpipe/third_party/pybind11' 2024-06-26T05:37:56.3919410Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2024-06-26T05:37:56.3952020Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2024-06-26T05:37:56.4050090Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2024-06-26T05:37:56.4248170Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2024-06-26T05:37:56.4758450Z Entering 'android/libs/fbjni' 2024-06-26T05:37:56.4846320Z Entering 'third_party/FP16' 2024-06-26T05:37:56.4930360Z Entering 'third_party/FXdiv' 2024-06-26T05:37:56.5011930Z Entering 'third_party/NNPACK' 2024-06-26T05:37:56.5093270Z Entering 'third_party/VulkanMemoryAllocator' 2024-06-26T05:37:56.5176450Z Entering 'third_party/XNNPACK' 2024-06-26T05:37:56.5266140Z Entering 'third_party/benchmark' 2024-06-26T05:37:56.5351670Z Entering 'third_party/cpp-httplib' 2024-06-26T05:37:56.5436700Z Entering 'third_party/cpuinfo' 2024-06-26T05:37:56.5520010Z Entering 'third_party/cudnn_frontend' 2024-06-26T05:37:56.5600480Z Entering 'third_party/cutlass' 2024-06-26T05:37:56.5685740Z Entering 'third_party/eigen' 2024-06-26T05:37:56.5769050Z Entering 'third_party/fbgemm' 2024-06-26T05:37:56.5850830Z Entering 'third_party/fbgemm/third_party/asmjit' 2024-06-26T05:37:56.5931460Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2024-06-26T05:37:56.6012610Z Entering 'third_party/fbgemm/third_party/cutlass' 2024-06-26T05:37:56.6095480Z Entering 'third_party/fbgemm/third_party/googletest' 2024-06-26T05:37:56.6178880Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2024-06-26T05:37:56.6261880Z Entering 'third_party/flatbuffers' 2024-06-26T05:37:56.6351630Z Entering 'third_party/fmt' 2024-06-26T05:37:56.6428870Z Entering 'third_party/foxi' 2024-06-26T05:37:56.6510190Z Entering 'third_party/gemmlowp/gemmlowp' 2024-06-26T05:37:56.6591840Z Entering 'third_party/gloo' 2024-06-26T05:37:56.6672820Z Entering 'third_party/googletest' 2024-06-26T05:37:56.6754500Z Entering 'third_party/ideep' 2024-06-26T05:37:56.6835290Z Entering 'third_party/ideep/mkl-dnn' 2024-06-26T05:37:56.6919590Z Entering 'third_party/ittapi' 2024-06-26T05:37:56.7003640Z Entering 'third_party/kineto' 2024-06-26T05:37:56.7084770Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2024-06-26T05:37:56.7165290Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2024-06-26T05:37:56.7248160Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2024-06-26T05:37:56.7333720Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2024-06-26T05:37:56.7415880Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2024-06-26T05:37:56.7495540Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2024-06-26T05:37:56.7579960Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2024-06-26T05:37:56.7662020Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2024-06-26T05:37:56.7744280Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2024-06-26T05:37:56.7825360Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2024-06-26T05:37:56.7909040Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2024-06-26T05:37:56.7990110Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2024-06-26T05:37:56.8074090Z Entering 'third_party/mimalloc' 2024-06-26T05:37:56.8156140Z Entering 'third_party/nccl/nccl' 2024-06-26T05:37:56.8237810Z Entering 'third_party/nlohmann' 2024-06-26T05:37:56.8319930Z Entering 'third_party/onnx' 2024-06-26T05:37:56.8405770Z Entering 'third_party/onnx/third_party/benchmark' 2024-06-26T05:37:56.8489040Z Entering 'third_party/onnx/third_party/pybind11' 2024-06-26T05:37:56.8573290Z Entering 'third_party/opentelemetry-cpp' 2024-06-26T05:37:56.8655260Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2024-06-26T05:37:56.8735900Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2024-06-26T05:37:56.8816570Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2024-06-26T05:37:56.8896510Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2024-06-26T05:37:56.8978370Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2024-06-26T05:37:56.9059840Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2024-06-26T05:37:56.9140200Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2024-06-26T05:37:56.9218700Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2024-06-26T05:37:56.9300990Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2024-06-26T05:37:56.9384820Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2024-06-26T05:37:56.9475080Z Entering 'third_party/pocketfft' 2024-06-26T05:37:56.9558600Z Entering 'third_party/protobuf' 2024-06-26T05:37:56.9639160Z Entering 'third_party/protobuf/third_party/benchmark' 2024-06-26T05:37:56.9723070Z Entering 'third_party/protobuf/third_party/googletest' 2024-06-26T05:37:56.9806160Z Entering 'third_party/psimd' 2024-06-26T05:37:56.9889650Z Entering 'third_party/pthreadpool' 2024-06-26T05:37:56.9971590Z Entering 'third_party/pybind11' 2024-06-26T05:37:57.0053570Z Entering 'third_party/python-peachpy' 2024-06-26T05:37:57.0134340Z Entering 'third_party/sleef' 2024-06-26T05:37:57.0215320Z Entering 'third_party/tensorpipe' 2024-06-26T05:37:57.0295090Z Entering 'third_party/tensorpipe/third_party/googletest' 2024-06-26T05:37:57.0375950Z Entering 'third_party/tensorpipe/third_party/libnop' 2024-06-26T05:37:57.0457010Z Entering 'third_party/tensorpipe/third_party/libuv' 2024-06-26T05:37:57.0537650Z Entering 'third_party/tensorpipe/third_party/pybind11' 2024-06-26T05:37:57.0618770Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2024-06-26T05:37:57.0713660Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2024-06-26T05:37:57.1213120Z Entering 'android/libs/fbjni' 2024-06-26T05:37:57.1298360Z Entering 'third_party/FP16' 2024-06-26T05:37:57.1379910Z Entering 'third_party/FXdiv' 2024-06-26T05:37:57.1461530Z Entering 'third_party/NNPACK' 2024-06-26T05:37:57.1543760Z Entering 'third_party/VulkanMemoryAllocator' 2024-06-26T05:37:57.1625650Z Entering 'third_party/XNNPACK' 2024-06-26T05:37:57.1712540Z Entering 'third_party/benchmark' 2024-06-26T05:37:57.1796110Z Entering 'third_party/cpp-httplib' 2024-06-26T05:37:57.1878010Z Entering 'third_party/cpuinfo' 2024-06-26T05:37:57.1960600Z Entering 'third_party/cudnn_frontend' 2024-06-26T05:37:57.2042180Z Entering 'third_party/cutlass' 2024-06-26T05:37:57.2127650Z Entering 'third_party/eigen' 2024-06-26T05:37:57.2211990Z Entering 'third_party/fbgemm' 2024-06-26T05:37:57.2292590Z Entering 'third_party/fbgemm/third_party/asmjit' 2024-06-26T05:37:57.2373520Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2024-06-26T05:37:57.2457210Z Entering 'third_party/fbgemm/third_party/cutlass' 2024-06-26T05:37:57.2544690Z Entering 'third_party/fbgemm/third_party/googletest' 2024-06-26T05:37:57.2628870Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2024-06-26T05:37:57.2713390Z Entering 'third_party/flatbuffers' 2024-06-26T05:37:57.2799100Z Entering 'third_party/fmt' 2024-06-26T05:37:57.2882470Z Entering 'third_party/foxi' 2024-06-26T05:37:57.2965140Z Entering 'third_party/gemmlowp/gemmlowp' 2024-06-26T05:37:57.3047120Z Entering 'third_party/gloo' 2024-06-26T05:37:57.3128360Z Entering 'third_party/googletest' 2024-06-26T05:37:57.3208090Z Entering 'third_party/ideep' 2024-06-26T05:37:57.3287690Z Entering 'third_party/ideep/mkl-dnn' 2024-06-26T05:37:57.3373700Z Entering 'third_party/ittapi' 2024-06-26T05:37:57.3459480Z Entering 'third_party/kineto' 2024-06-26T05:37:57.3541630Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2024-06-26T05:37:57.3621470Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2024-06-26T05:37:57.3703580Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2024-06-26T05:37:57.3785920Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2024-06-26T05:37:57.3866470Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2024-06-26T05:37:57.3947150Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2024-06-26T05:37:57.4031140Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2024-06-26T05:37:57.4113830Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2024-06-26T05:37:57.4195080Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2024-06-26T05:37:57.4278440Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2024-06-26T05:37:57.4363240Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2024-06-26T05:37:57.4444800Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2024-06-26T05:37:57.4529340Z Entering 'third_party/mimalloc' 2024-06-26T05:37:57.4611820Z Entering 'third_party/nccl/nccl' 2024-06-26T05:37:57.4693890Z Entering 'third_party/nlohmann' 2024-06-26T05:37:57.4774950Z Entering 'third_party/onnx' 2024-06-26T05:37:57.4859010Z Entering 'third_party/onnx/third_party/benchmark' 2024-06-26T05:37:57.4942490Z Entering 'third_party/onnx/third_party/pybind11' 2024-06-26T05:37:57.5025790Z Entering 'third_party/opentelemetry-cpp' 2024-06-26T05:37:57.5108560Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2024-06-26T05:37:57.5189240Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2024-06-26T05:37:57.5270770Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2024-06-26T05:37:57.5350650Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2024-06-26T05:37:57.5432430Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2024-06-26T05:37:57.5513020Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2024-06-26T05:37:57.5593750Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2024-06-26T05:37:57.5673340Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2024-06-26T05:37:57.5754640Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2024-06-26T05:37:57.5837060Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2024-06-26T05:37:57.5928250Z Entering 'third_party/pocketfft' 2024-06-26T05:37:57.6011880Z Entering 'third_party/protobuf' 2024-06-26T05:37:57.6092340Z Entering 'third_party/protobuf/third_party/benchmark' 2024-06-26T05:37:57.6173200Z Entering 'third_party/protobuf/third_party/googletest' 2024-06-26T05:37:57.6255750Z Entering 'third_party/psimd' 2024-06-26T05:37:57.6339020Z Entering 'third_party/pthreadpool' 2024-06-26T05:37:57.6420160Z Entering 'third_party/pybind11' 2024-06-26T05:37:57.6501370Z Entering 'third_party/python-peachpy' 2024-06-26T05:37:57.6581550Z Entering 'third_party/sleef' 2024-06-26T05:37:57.6662780Z Entering 'third_party/tensorpipe' 2024-06-26T05:37:57.6742650Z Entering 'third_party/tensorpipe/third_party/googletest' 2024-06-26T05:37:57.6823500Z Entering 'third_party/tensorpipe/third_party/libnop' 2024-06-26T05:37:57.6903260Z Entering 'third_party/tensorpipe/third_party/libuv' 2024-06-26T05:37:57.6983580Z Entering 'third_party/tensorpipe/third_party/pybind11' 2024-06-26T05:37:57.7062220Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2024-06-26T05:37:57.7156230Z ##[endgroup] 2024-06-26T05:37:57.7382730Z [command]/usr/bin/git log -1 --format='%H' 2024-06-26T05:37:57.7594560Z 'b8c4c54d347aa776934c60784e35936878ef18dc' 2024-06-26T05:37:57.7657400Z ##[group]Run if [ -n "${XCODE_VERSION}" ]; then 2024-06-26T05:37:57.7657700Z if [ -n "${XCODE_VERSION}" ]; then 2024-06-26T05:37:57.7658190Z  echo "DEVELOPER_DIR=/Applications/Xcode_${XCODE_VERSION}.app/Contents/Developer" >> "${GITHUB_ENV}" 2024-06-26T05:37:57.7664260Z fi 2024-06-26T05:37:57.7680330Z shell: /bin/bash -e {0} 2024-06-26T05:37:57.7680520Z env: 2024-06-26T05:37:57.7680680Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:37:57.7680920Z SCCACHE_USE_GHA: false 2024-06-26T05:37:57.7681110Z XCODE_VERSION: 2024-06-26T05:37:57.7681280Z ##[endgroup] 2024-06-26T05:37:57.8288040Z ##[group]Run pytorch/test-infra/.github/actions/setup-miniconda@main 2024-06-26T05:37:57.8288390Z with: 2024-06-26T05:37:57.8288550Z python-version: 3.9.12 2024-06-26T05:37:57.8288840Z environment-file: .github/requirements/conda-env-macOS-ARM64 2024-06-26T05:37:57.8289280Z pip-requirements-file: .github/requirements/pip-requirements-macOS.txt 2024-06-26T05:37:57.8289630Z miniconda-version: 23.1.0-1 2024-06-26T05:37:57.8289830Z env: 2024-06-26T05:37:57.8289980Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:37:57.8290210Z SCCACHE_USE_GHA: false 2024-06-26T05:37:57.8290400Z ##[endgroup] 2024-06-26T05:37:57.8303920Z ##[group]Run echo "today=$(/bin/date -u '+%Y%m%d')d" >> "${GITHUB_OUTPUT}" 2024-06-26T05:37:57.8304370Z echo "today=$(/bin/date -u '+%Y%m%d')d" >> "${GITHUB_OUTPUT}" 2024-06-26T05:37:57.8320250Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-06-26T05:37:57.8320530Z env: 2024-06-26T05:37:57.8320700Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:37:57.8320940Z SCCACHE_USE_GHA: false 2024-06-26T05:37:57.8321130Z ##[endgroup] 2024-06-26T05:37:57.8862230Z ##[group]Run actions/cache@v3 2024-06-26T05:37:57.8862480Z with: 2024-06-26T05:37:57.8862690Z path: /Users/ec2-user/runner/_work/_temp/miniconda 2024-06-26T05:37:57.8863030Z key: miniconda-macOS-ARM64-3.9.12-20240626d 2024-06-26T05:37:57.8863320Z enableCrossOsArchive: false 2024-06-26T05:37:57.8863550Z fail-on-cache-miss: false 2024-06-26T05:37:57.8863780Z lookup-only: false 2024-06-26T05:37:57.8863960Z env: 2024-06-26T05:37:57.8864130Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:37:57.8864430Z SCCACHE_USE_GHA: false 2024-06-26T05:37:57.8864620Z ##[endgroup] 2024-06-26T05:37:59.1055790Z Received 221137585 of 221137585 (100.0%), 210.3 MBs/sec 2024-06-26T05:37:59.5064170Z Cache Size: ~211 MB (221137585 B) 2024-06-26T05:37:59.5145420Z [command]/usr/bin/tar -xf /Users/ec2-user/runner/_work/_temp/dbd9b247-7f21-40f9-9e3e-d83c2b885618/cache.tzst -P -C /Users/ec2-user/runner/_work/pytorch/pytorch --use-compress-program unzstd 2024-06-26T05:38:07.9137990Z Cache restored successfully 2024-06-26T05:38:07.9341050Z Cache restored from key: miniconda-macOS-ARM64-3.9.12-20240626d 2024-06-26T05:38:07.9398420Z ##[group]Run set -x 2024-06-26T05:38:07.9398620Z set -x 2024-06-26T05:38:07.9398800Z  2024-06-26T05:38:07.9399040Z MINICONDA_INSTALL_PATH="${RUNNER_TEMP}/miniconda" 2024-06-26T05:38:07.9406530Z echo "${MINICONDA_INSTALL_PATH}/bin" >> $GITHUB_PATH 2024-06-26T05:38:07.9406990Z # NB: GITHUB_PATH has a lower priority than PATH, so also set the path 2024-06-26T05:38:07.9407510Z # here to make sure that the correct conda is used 2024-06-26T05:38:07.9407810Z { 2024-06-26T05:38:07.9408050Z  echo "PATH=${MINICONDA_INSTALL_PATH}/bin:${PATH}" 2024-06-26T05:38:07.9408430Z  echo "CONDA_EXE=${MINICONDA_INSTALL_PATH}/bin/conda"; 2024-06-26T05:38:07.9408750Z } >> "${GITHUB_ENV}" 2024-06-26T05:38:08.0085610Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-06-26T05:38:08.0085910Z env: 2024-06-26T05:38:08.0086080Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:38:08.0086330Z SCCACHE_USE_GHA: false 2024-06-26T05:38:08.0086520Z ##[endgroup] 2024-06-26T05:38:08.0637000Z + MINICONDA_INSTALL_PATH=/Users/ec2-user/runner/_work/_temp/miniconda 2024-06-26T05:38:08.0637580Z + echo /Users/ec2-user/runner/_work/_temp/miniconda/bin 2024-06-26T05:38:08.0638710Z + 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 2024-06-26T05:38:08.0639870Z + echo CONDA_EXE=/Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:38:08.2572960Z ##[group]Run actions/cache@v3 2024-06-26T05:38:08.2573190Z with: 2024-06-26T05:38:08.2573440Z path: /Users/ec2-user/runner/_work/_temp/conda-python-3.9.12 2024-06-26T05:38:08.2574800Z key: miniconda-env-macOS-ARM64-3.9.12-20240626d-d2e9511d9e56638ec6d1acb510f1a8c378c9d02010984f84aaf470a85ac03b75-317df9a7cbecab0e1b882611f260ff6ee31cf35d44d460b5049c2aab77ac687b 2024-06-26T05:38:08.2575650Z enableCrossOsArchive: false 2024-06-26T05:38:08.2575880Z fail-on-cache-miss: false 2024-06-26T05:38:08.2576090Z lookup-only: false 2024-06-26T05:38:08.2576260Z env: 2024-06-26T05:38:08.2576420Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:38:08.2576660Z SCCACHE_USE_GHA: false 2024-06-26T05:38:08.2577520Z 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 2024-06-26T05:38:08.2578610Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:38:08.2578960Z ##[endgroup] 2024-06-26T05:38:09.4561780Z Received 230263543 of 230263543 (100.0%), 219.2 MBs/sec 2024-06-26T05:38:10.1909070Z Cache Size: ~220 MB (230263543 B) 2024-06-26T05:38:10.1931380Z [command]/usr/bin/tar -xf /Users/ec2-user/runner/_work/_temp/638cd4bd-6a15-4ee8-8fcc-2baddaa4668e/cache.tzst -P -C /Users/ec2-user/runner/_work/pytorch/pytorch --use-compress-program unzstd 2024-06-26T05:38:23.0350240Z Cache restored successfully 2024-06-26T05:38:23.1067410Z Cache restored from key: miniconda-env-macOS-ARM64-3.9.12-20240626d-d2e9511d9e56638ec6d1acb510f1a8c378c9d02010984f84aaf470a85ac03b75-317df9a7cbecab0e1b882611f260ff6ee31cf35d44d460b5049c2aab77ac687b 2024-06-26T05:38:23.1134980Z ##[group]Run set -x 2024-06-26T05:38:23.1135230Z set -x 2024-06-26T05:38:23.1135410Z  2024-06-26T05:38:23.1135780Z # Print the conda we are using here in case we need debugging information 2024-06-26T05:38:23.1136200Z CONDA_RUNTIME=$(which conda) 2024-06-26T05:38:23.1136460Z "${CONDA_RUNTIME}" --version 2024-06-26T05:38:23.1136700Z  2024-06-26T05:38:23.1137120Z # https://docs.conda.io/projects/conda-build/en/stable/user-guide/environment-variables.html 2024-06-26T05:38:23.1137710Z CONDA_PREFIX="${RUNNER_TEMP}/conda_environment_${GITHUB_RUN_ID}" 2024-06-26T05:38:23.1138080Z "${CONDA_RUNTIME}" create \ 2024-06-26T05:38:23.1138330Z  --yes --quiet \ 2024-06-26T05:38:23.1138560Z  --prefix "${CONDA_PREFIX}" \ 2024-06-26T05:38:23.1138820Z  --clone "${CONDA_BASE_ENV}" 2024-06-26T05:38:23.1139060Z  2024-06-26T05:38:23.1139210Z set +e 2024-06-26T05:38:23.1139600Z # NB: Cloning sometimes doesn't copied pip dependencies (untracked files) over. If this 2024-06-26T05:38:23.1140250Z # happens, let's attempt to install the pip requirements directly on top of the cloned 2024-06-26T05:38:23.1140810Z # environment. This is to make sure that no dependency is missing. 2024-06-26T05:38:23.1141400Z UNTRACKED_FILES_COUNT=$("${CONDA_RUNTIME}" package -p "${CONDA_PREFIX}" -u | grep -v "^#" | wc -l | xargs) 2024-06-26T05:38:23.1141850Z set -e 2024-06-26T05:38:23.1142020Z  2024-06-26T05:38:23.1142330Z if [[ -z "${UNTRACKED_FILES_COUNT}" ]] || [[ "${UNTRACKED_FILES_COUNT}" == "0" ]]; then 2024-06-26T05:38:23.1142770Z  if [[ -f "${PIP_REQUIREMENTS_FILE}" ]]; then 2024-06-26T05:38:23.1143240Z  # NB: Force reinstall and don't use the cache, as the installation would still fail 2024-06-26T05:38:23.1143770Z  # when reporting that all requirements have been satisfied 2024-06-26T05:38:23.1144520Z  "${CONDA_RUNTIME}" run -p "${CONDA_PREFIX}" --no-capture-output python3 -mpip install --ignore-installed --no-cache-dir -r "${PIP_REQUIREMENTS_FILE}" 2024-06-26T05:38:23.1145200Z  elif [[ -n "${PIP_REQUIREMENTS_FILE}" ]]; then 2024-06-26T05:38:23.1145770Z  echo "::warning::Specified pip requirements file (${PIP_REQUIREMENTS_FILE}) not found, not going to include it" 2024-06-26T05:38:23.1146260Z  fi 2024-06-26T05:38:23.1146640Z fi 2024-06-26T05:38:23.1146810Z  2024-06-26T05:38:23.1147180Z # Keep exporting CONDA_PREFIX under CONDA_ENV because the latter could be used elsewhere 2024-06-26T05:38:23.1147700Z echo "CONDA_ENV=${CONDA_PREFIX}" >> "${GITHUB_ENV}" 2024-06-26T05:38:23.1148010Z  2024-06-26T05:38:23.1148270Z echo "CONDA_PREFIX=${CONDA_PREFIX}" >> "${GITHUB_ENV}" 2024-06-26T05:38:23.1148810Z echo "CONDA_RUN=${CONDA_RUNTIME} run -p ${CONDA_PREFIX} --no-capture-output" >> "${GITHUB_ENV}" 2024-06-26T05:38:23.1149300Z if [[ "${PYTHON_VERSION}" == "3.11" ]]; then 2024-06-26T05:38:23.1149920Z  # TODO: Remove me, when more packages will be available on default channel 2024-06-26T05:38:23.1150620Z  echo "CONDA_INSTALL=${CONDA_RUNTIME} install --yes --quiet -p ${CONDA_PREFIX} -c pytorch-nightly" >> "${GITHUB_ENV}" 2024-06-26T05:38:23.1151130Z else 2024-06-26T05:38:23.1151510Z  echo "CONDA_INSTALL=${CONDA_RUNTIME} install --yes --quiet -p ${CONDA_PREFIX}" >> "${GITHUB_ENV}" 2024-06-26T05:38:23.1151950Z fi 2024-06-26T05:38:23.1186060Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-06-26T05:38:23.1186370Z env: 2024-06-26T05:38:23.1186550Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:38:23.1186800Z SCCACHE_USE_GHA: false 2024-06-26T05:38:23.1187700Z 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 2024-06-26T05:38:23.1188710Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:38:23.1189130Z PYTHON_VERSION: 3.9.12 2024-06-26T05:38:23.1189480Z CONDA_BASE_ENV: /Users/ec2-user/runner/_work/_temp/conda-python-3.9.12 2024-06-26T05:38:23.1189970Z PIP_REQUIREMENTS_FILE: .github/requirements/pip-requirements-macOS.txt 2024-06-26T05:38:23.1190360Z ##[endgroup] 2024-06-26T05:38:23.1703340Z ++ which conda 2024-06-26T05:38:23.1740820Z + CONDA_RUNTIME=/Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:38:23.1741410Z + /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda --version 2024-06-26T05:38:25.2829660Z conda 23.1.0 2024-06-26T05:38:25.3291460Z + CONDA_PREFIX=/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:25.3292820Z + /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda create --yes --quiet --prefix /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --clone /Users/ec2-user/runner/_work/_temp/conda-python-3.9.12 2024-06-26T05:38:33.4916020Z Source: /Users/ec2-user/runner/_work/_temp/conda-python-3.9.12 2024-06-26T05:38:33.4916760Z Destination: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:33.4917880Z Packages: 59 2024-06-26T05:38:33.4918160Z Files: 15644 2024-06-26T05:38:33.8117380Z Preparing transaction: ...working... done 2024-06-26T05:38:38.3034560Z Verifying transaction: ...working... done 2024-06-26T05:38:42.3948720Z Executing transaction: ...working... done 2024-06-26T05:38:42.5129480Z + set +e 2024-06-26T05:38:42.5137980Z ++ /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda package -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 -u 2024-06-26T05:38:42.5139570Z ++ grep -v '^#' 2024-06-26T05:38:42.5141340Z ++ wc -l 2024-06-26T05:38:42.5142390Z ++ xargs 2024-06-26T05:38:43.1359100Z + UNTRACKED_FILES_COUNT=15644 2024-06-26T05:38:43.1359550Z + set -e 2024-06-26T05:38:43.1359770Z + [[ -z 15644 ]] 2024-06-26T05:38:43.1359990Z + [[ 15644 == \0 ]] 2024-06-26T05:38:43.1360430Z + echo CONDA_ENV=/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:43.1361080Z + echo CONDA_PREFIX=/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:43.1379610Z + echo 'CONDA_RUN=/Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --no-capture-output' 2024-06-26T05:38:43.1397660Z + [[ 3.9.12 == \3\.\1\1 ]] 2024-06-26T05:38:43.1398420Z + echo 'CONDA_INSTALL=/Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592' 2024-06-26T05:38:43.1431110Z ##[group]Run CONDA_RUNTIME=$(which conda) 2024-06-26T05:38:43.1431450Z CONDA_RUNTIME=$(which conda) 2024-06-26T05:38:43.1431720Z  2024-06-26T05:38:43.1443590Z set -euxo pipefail 2024-06-26T05:38:43.1443910Z "${CONDA_RUNTIME}" config --set channel_priority false 2024-06-26T05:38:43.1627520Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-06-26T05:38:43.1627980Z env: 2024-06-26T05:38:43.1628160Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:38:43.1628420Z SCCACHE_USE_GHA: false 2024-06-26T05:38:43.1629280Z 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 2024-06-26T05:38:43.1630250Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:38:43.1630710Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:43.1631210Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:43.1631980Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --no-capture-output 2024-06-26T05:38:43.1633020Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:43.1633680Z ##[endgroup] 2024-06-26T05:38:43.2135650Z + /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda config --set channel_priority false 2024-06-26T05:38:43.4402770Z ##[group]Run nick-fields/retry@v2.8.2 2024-06-26T05:38:43.4403020Z with: 2024-06-26T05:38:43.4403170Z timeout_minutes: 5 2024-06-26T05:38:43.4403360Z max_attempts: 3 2024-06-26T05:38:43.4403540Z retry_wait_seconds: 90 2024-06-26T05:38:43.4407240Z command: set -ex DOWNLOAD_SCCACHE=0 SCCACHE_VERSION="0.4.1" LOCAL_PATH="/usr/local/bin" if [ ! -f "${LOCAL_PATH}/sccache" ]; then DOWNLOAD_SCCACHE=1 else LOCAL_VERSION=$("${LOCAL_PATH}/sccache" --version | cut -d" " -f2) if [ "${LOCAL_VERSION}" != "${SCCACHE_VERSION}" ]; then DOWNLOAD_SCCACHE=1 fi fi if [ "${DOWNLOAD_SCCACHE}" == "1" ]; then sudo curl --retry 3 --retry-all-errors "https://s3.amazonaws.com/ossci-macos/sccache/sccache-v0.4.1-${RUNNER_ARCH}" --output "${LOCAL_PATH}/sccache" sudo chmod +x "${LOCAL_PATH}/sccache" fi if [[ "${SCCACHE_USE_GHA}" == "true" ]]; then echo "ACTIONS_CACHE_URL=${ACTIONS_CACHE_URL}" >> "${GITHUB_ENV}" echo "ACTIONS_RUNTIME_TOKEN=${ACTIONS_RUNTIME_TOKEN}" >> "${GITHUB_ENV}" echo "SCCACHE_GHA_ENABLED=on" >> "${GITHUB_ENV}" else # The runner has access to the S3 bucket via IAM profile without the need # for any credential echo "SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2" >> "${GITHUB_ENV}" echo "SCCACHE_S3_KEY_PREFIX=${GITHUB_WORKFLOW}" >> "${GITHUB_ENV}" fi # This is needed so that later build script could find sccache (which sccache) echo "${LOCAL_PATH}" >> $GITHUB_PATH 2024-06-26T05:38:43.4410920Z polling_interval_seconds: 1 2024-06-26T05:38:43.4432180Z warning_on_retry: true 2024-06-26T05:38:43.4432420Z continue_on_error: false 2024-06-26T05:38:43.4432610Z env: 2024-06-26T05:38:43.4432780Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:38:43.4433030Z SCCACHE_USE_GHA: false 2024-06-26T05:38:43.4433880Z 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 2024-06-26T05:38:43.4434850Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:38:43.4435320Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:43.4435810Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:43.4436590Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --no-capture-output 2024-06-26T05:38:43.4437620Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:43.4438240Z ##[endgroup] 2024-06-26T05:38:43.5377800Z + DOWNLOAD_SCCACHE=0 2024-06-26T05:38:43.5378470Z + SCCACHE_VERSION=0.4.1 2024-06-26T05:38:43.5385990Z + LOCAL_PATH=/usr/local/bin 2024-06-26T05:38:43.5387220Z + '[' '!' -f /usr/local/bin/sccache ']' 2024-06-26T05:38:43.5393590Z ++ /usr/local/bin/sccache --version 2024-06-26T05:38:43.5394240Z ++ cut '-d ' -f2 2024-06-26T05:38:43.6150780Z + LOCAL_VERSION=0.4.1 2024-06-26T05:38:43.6151140Z + '[' 0.4.1 '!=' 0.4.1 ']' 2024-06-26T05:38:43.6151410Z + '[' 0 == 1 ']' 2024-06-26T05:38:43.6151680Z + [[ false == \t\r\u\e ]] 2024-06-26T05:38:43.6152060Z + echo SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2 2024-06-26T05:38:43.6152420Z + echo SCCACHE_S3_KEY_PREFIX=trunk 2024-06-26T05:38:43.6159390Z + echo /usr/local/bin 2024-06-26T05:38:44.5409350Z Command completed after 1 attempt(s). 2024-06-26T05:38:44.6528010Z Prepare all required actions 2024-06-26T05:38:44.6648660Z ##[group]Run ./.github/actions/get-workflow-job-id 2024-06-26T05:38:44.6648940Z with: 2024-06-26T05:38:44.6649330Z github-token: *** 2024-06-26T05:38:44.6649510Z env: 2024-06-26T05:38:44.6649680Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:38:44.6649930Z SCCACHE_USE_GHA: false 2024-06-26T05:38:44.6650780Z 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 2024-06-26T05:38:44.6651760Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:38:44.6652220Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:44.6652720Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:44.6653570Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --no-capture-output 2024-06-26T05:38:44.6654630Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:44.6655330Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2024-06-26T05:38:44.6655630Z SCCACHE_S3_KEY_PREFIX: trunk 2024-06-26T05:38:44.6655850Z ##[endgroup] 2024-06-26T05:38:44.6669040Z ##[group]Run set -eux 2024-06-26T05:38:44.6669240Z set -eux 2024-06-26T05:38:44.6669610Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2024-06-26T05:38:44.6700490Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-06-26T05:38:44.6700800Z env: 2024-06-26T05:38:44.6700980Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:38:44.6701250Z SCCACHE_USE_GHA: false 2024-06-26T05:38:44.6702140Z 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 2024-06-26T05:38:44.6703150Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:38:44.6703630Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:44.6704150Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:44.6704960Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --no-capture-output 2024-06-26T05:38:44.6706090Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:44.6706820Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2024-06-26T05:38:44.6707160Z SCCACHE_S3_KEY_PREFIX: trunk 2024-06-26T05:38:44.6707520Z GITHUB_TOKEN: *** 2024-06-26T05:38:44.6707740Z ##[endgroup] 2024-06-26T05:38:44.7293850Z + python3 .github/scripts/get_workflow_job_id.py 9673646592 i-0220c04d5ce76743f 2024-06-26T05:38:45.5175980Z setting job-id=26687968773 2024-06-26T05:38:45.5177160Z setting job-name=macos-py3-arm64 / build 2024-06-26T05:38:45.5646910Z Prepare all required actions 2024-06-26T05:38:45.5647400Z Getting action download info 2024-06-26T05:38:45.6668720Z Download action repository 'nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482' (SHA:3e91a01664abd3c5cd539100d10d33b9c5b68482) 2024-06-26T05:38:45.8984130Z ##[group]Run ./.github/actions/filter-test-configs 2024-06-26T05:38:45.8984440Z with: 2024-06-26T05:38:45.8984730Z github-token: *** 2024-06-26T05:38:45.8985540Z 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" }, ]} 2024-06-26T05:38:45.8986400Z job-name: macos-py3-arm64 / build 2024-06-26T05:38:45.8986630Z env: 2024-06-26T05:38:45.8986790Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:38:45.8987030Z SCCACHE_USE_GHA: false 2024-06-26T05:38:45.8987900Z 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 2024-06-26T05:38:45.8988900Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:38:45.8989350Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:45.8989840Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:45.8990610Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --no-capture-output 2024-06-26T05:38:45.8991640Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:45.8992330Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2024-06-26T05:38:45.8992620Z SCCACHE_S3_KEY_PREFIX: trunk 2024-06-26T05:38:45.8992830Z ##[endgroup] 2024-06-26T05:38:45.9026550Z ##[group]Run nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482 2024-06-26T05:38:45.9026890Z with: 2024-06-26T05:38:45.9027040Z shell: bash 2024-06-26T05:38:45.9027210Z timeout_minutes: 10 2024-06-26T05:38:45.9027400Z max_attempts: 5 2024-06-26T05:38:45.9027580Z retry_wait_seconds: 30 2024-06-26T05:38:45.9028300Z 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 2024-06-26T05:38:45.9029060Z polling_interval_seconds: 1 2024-06-26T05:38:45.9029270Z warning_on_retry: true 2024-06-26T05:38:45.9029470Z continue_on_error: false 2024-06-26T05:38:45.9029670Z env: 2024-06-26T05:38:45.9029830Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:38:45.9030070Z SCCACHE_USE_GHA: false 2024-06-26T05:38:45.9030910Z 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 2024-06-26T05:38:45.9031860Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:38:45.9032320Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:45.9032800Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:45.9033570Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --no-capture-output 2024-06-26T05:38:45.9034590Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:45.9035270Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2024-06-26T05:38:45.9035560Z SCCACHE_S3_KEY_PREFIX: trunk 2024-06-26T05:38:45.9035880Z GITHUB_TOKEN: *** 2024-06-26T05:38:45.9036440Z ##[endgroup] 2024-06-26T05:38:45.9869720Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2024-06-26T05:38:46.3405130Z Requirement already satisfied: requests==2.27.1 in /Users/ec2-user/runner/_work/_temp/miniconda/lib/python3.9/site-packages (2.27.1) 2024-06-26T05:38:46.3406510Z Requirement already satisfied: pyyaml==6.0.1 in /Users/ec2-user/runner/_work/_temp/miniconda/lib/python3.9/site-packages (6.0.1) 2024-06-26T05:38:46.3455770Z Requirement already satisfied: certifi>=2017.4.17 in /Users/ec2-user/runner/_work/_temp/miniconda/lib/python3.9/site-packages (from requests==2.27.1) (2022.12.7) 2024-06-26T05:38:46.3458300Z Requirement already satisfied: urllib3<1.27,>=1.21.1 in /Users/ec2-user/runner/_work/_temp/miniconda/lib/python3.9/site-packages (from requests==2.27.1) (1.26.14) 2024-06-26T05:38:46.3463590Z Requirement already satisfied: charset-normalizer~=2.0.0 in /Users/ec2-user/runner/_work/_temp/miniconda/lib/python3.9/site-packages (from requests==2.27.1) (2.0.4) 2024-06-26T05:38:46.3468710Z Requirement already satisfied: idna<4,>=2.5 in /Users/ec2-user/runner/_work/_temp/miniconda/lib/python3.9/site-packages (from requests==2.27.1) (3.4) 2024-06-26T05:38:46.9903940Z Command completed after 1 attempt(s). 2024-06-26T05:38:47.0053600Z ##[group]Run set -x 2024-06-26T05:38:47.0054810Z set -x 2024-06-26T05:38:47.0055640Z  2024-06-26T05:38:47.0057290Z # Use relative path here as this could be checked out anywhere, not necessarily 2024-06-26T05:38:47.0059280Z # in runner workspace 2024-06-26T05:38:47.0060790Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2024-06-26T05:38:47.0142860Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-06-26T05:38:47.0144100Z env: 2024-06-26T05:38:47.0144880Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:38:47.0145930Z SCCACHE_USE_GHA: false 2024-06-26T05:38:47.0149470Z 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 2024-06-26T05:38:47.0153360Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:38:47.0155250Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:47.0157220Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:47.0160330Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --no-capture-output 2024-06-26T05:38:47.0187240Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:47.0189450Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2024-06-26T05:38:47.0190400Z SCCACHE_S3_KEY_PREFIX: trunk 2024-06-26T05:38:47.0191110Z ##[endgroup] 2024-06-26T05:38:47.0921850Z + python3 /Users/ec2-user/runner/_work/pytorch/pytorch/./.github/actions/filter-test-configs/../../scripts/parse_ref.py 2024-06-26T05:38:47.1105600Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2024-06-26T05:38:47.1105950Z echo "Workflow: ${GITHUB_WORKFLOW}" 2024-06-26T05:38:47.1106260Z echo "Job name: ${JOB_NAME}" 2024-06-26T05:38:47.1106510Z  2024-06-26T05:38:47.1106870Z # Use relative path here as this could be checked out anywhere, not necessarily 2024-06-26T05:38:47.1107310Z # in runner workspace 2024-06-26T05:38:47.1107730Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2024-06-26T05:38:47.1108150Z  --workflow "${GITHUB_WORKFLOW}" \ 2024-06-26T05:38:47.1108500Z  --job-name "${JOB_NAME}" \ 2024-06-26T05:38:47.1108780Z  --test-matrix "{ include: [ 2024-06-26T05:38:47.1109190Z  { config: "default", shard: 1, num_shards: 3, runner: "macos-m1-stable" }, 2024-06-26T05:38:47.1109900Z  { config: "default", shard: 2, num_shards: 3, runner: "macos-m1-stable" }, 2024-06-26T05:38:47.1110710Z  { config: "default", shard: 3, num_shards: 3, runner: "macos-m1-stable" }, 2024-06-26T05:38:47.1111090Z ]} 2024-06-26T05:38:47.1111280Z " \ 2024-06-26T05:38:47.1119890Z  --selected-test-configs "" \ 2024-06-26T05:38:47.1120200Z  --pr-number "${PR_NUMBER}" \ 2024-06-26T05:38:47.1120460Z  --tag "${TAG}" \ 2024-06-26T05:38:47.1120700Z  --event-name "${EVENT_NAME}" \ 2024-06-26T05:38:47.1120980Z  --schedule "${SCHEDULE}" \ 2024-06-26T05:38:47.1121260Z  --branch "${HEAD_BRANCH}" 2024-06-26T05:38:47.1140030Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-06-26T05:38:47.1140320Z env: 2024-06-26T05:38:47.1140500Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:38:47.1140740Z SCCACHE_USE_GHA: false 2024-06-26T05:38:47.1141610Z 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 2024-06-26T05:38:47.1142590Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:38:47.1143080Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:47.1143590Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:47.1144380Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --no-capture-output 2024-06-26T05:38:47.1145410Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:47.1146100Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2024-06-26T05:38:47.1146390Z SCCACHE_S3_KEY_PREFIX: trunk 2024-06-26T05:38:47.1146770Z GITHUB_TOKEN: *** 2024-06-26T05:38:47.1146980Z JOB_NAME: macos-py3-arm64 / build 2024-06-26T05:38:47.1147220Z PR_NUMBER: 2024-06-26T05:38:47.1147390Z TAG: ciflow/trunk/129470 2024-06-26T05:38:47.1147590Z EVENT_NAME: push 2024-06-26T05:38:47.1147770Z SCHEDULE: 2024-06-26T05:38:47.1147930Z HEAD_BRANCH: 2024-06-26T05:38:47.1148090Z ##[endgroup] 2024-06-26T05:38:47.1641190Z Workflow: trunk 2024-06-26T05:38:47.1641670Z Job name: macos-py3-arm64 / build 2024-06-26T05:38:47.4434220Z INFO:root:Found no test-config label on the PR, so all test configs are included 2024-06-26T05:38:47.6793620Z ##[group]Run echo "Filtered matrix:" 2024-06-26T05:38:47.6793950Z echo "Filtered matrix:" 2024-06-26T05:38:47.6803110Z 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"}]}" 2024-06-26T05:38:47.6803980Z  2024-06-26T05:38:47.6804190Z echo 2024-06-26T05:38:47.6804430Z echo "Is the current job unstable? False" 2024-06-26T05:38:47.6804720Z  2024-06-26T05:38:47.6804880Z echo 2024-06-26T05:38:47.6805110Z echo "Is keep-going label set? False" 2024-06-26T05:38:47.6805380Z  2024-06-26T05:38:47.6805540Z echo 2024-06-26T05:38:47.6805730Z echo "Renabled issues? " 2024-06-26T05:38:47.6824660Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-06-26T05:38:47.6824970Z env: 2024-06-26T05:38:47.6825140Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:38:47.6825410Z SCCACHE_USE_GHA: false 2024-06-26T05:38:47.6826260Z 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 2024-06-26T05:38:47.6827430Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:38:47.6828000Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:47.6828510Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:47.6829280Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --no-capture-output 2024-06-26T05:38:47.6830340Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:47.6831030Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2024-06-26T05:38:47.6831340Z SCCACHE_S3_KEY_PREFIX: trunk 2024-06-26T05:38:47.6831570Z ##[endgroup] 2024-06-26T05:38:47.7330590Z Filtered matrix: 2024-06-26T05:38:47.7331860Z {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}]} 2024-06-26T05:38:47.7332820Z 2024-06-26T05:38:47.7332920Z Is the current job unstable? False 2024-06-26T05:38:47.7333120Z 2024-06-26T05:38:47.7333240Z Is keep-going label set? False 2024-06-26T05:38:47.7333420Z 2024-06-26T05:38:47.7333500Z Renabled issues? 2024-06-26T05:38:47.7377330Z ##[group]Run echo "CMAKE_PREFIX_PATH=${CONDA_PREFIX:-"$(dirname "$(which conda)")/../"}" >> "${GITHUB_ENV}" 2024-06-26T05:38:47.7377990Z echo "CMAKE_PREFIX_PATH=${CONDA_PREFIX:-"$(dirname "$(which conda)")/../"}" >> "${GITHUB_ENV}" 2024-06-26T05:38:47.7378410Z  2024-06-26T05:38:47.7378590Z if [[ -n "$CONDA_ENV" ]]; then 2024-06-26T05:38:47.7378880Z  # Use binaries under conda environment 2024-06-26T05:38:47.7379200Z  export PATH="$CONDA_ENV/bin":$PATH 2024-06-26T05:38:47.7379470Z fi 2024-06-26T05:38:47.7379630Z  2024-06-26T05:38:47.7380000Z # NB: Same trick as Linux, there is no need to initialize sccache with the risk of getting 2024-06-26T05:38:47.7380620Z # it hangs or timeout at initialization. The cache will be started automatically 2024-06-26T05:38:47.7381080Z export SKIP_SCCACHE_INITIALIZATION=1 2024-06-26T05:38:47.7381430Z ${CONDA_RUN} .ci/pytorch/macos-build.sh 2024-06-26T05:38:47.7399670Z shell: /bin/bash -e {0} 2024-06-26T05:38:47.7399880Z env: 2024-06-26T05:38:47.7400060Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:38:47.7400320Z SCCACHE_USE_GHA: false 2024-06-26T05:38:47.7401160Z 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 2024-06-26T05:38:47.7402130Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:38:47.7402590Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:47.7403090Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:47.7403870Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --no-capture-output 2024-06-26T05:38:47.7404920Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:38:47.7405610Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2024-06-26T05:38:47.7405920Z SCCACHE_S3_KEY_PREFIX: trunk 2024-06-26T05:38:47.7406150Z OUR_GITHUB_JOB_ID: 26687968773 2024-06-26T05:38:47.7406420Z ##[endgroup] 2024-06-26T05:38:48.4416020Z +++ [[ macos-py3-arm64 == *rocm* ]] 2024-06-26T05:38:48.4416440Z +++ BUILD_TEST_LIBTORCH=0 2024-06-26T05:38:48.4418650Z ++ sysctl -a 2024-06-26T05:38:48.4419950Z ++ grep machdep.cpu 2024-06-26T05:38:48.4577920Z machdep.cpu.cores_per_package: 8 2024-06-26T05:38:48.4578230Z machdep.cpu.core_count: 8 2024-06-26T05:38:48.4578810Z machdep.cpu.logical_per_package: 8 2024-06-26T05:38:48.4579100Z machdep.cpu.thread_count: 8 2024-06-26T05:38:48.4579370Z machdep.cpu.brand_string: Apple M1 2024-06-26T05:38:48.4579910Z ++ export MACOSX_DEPLOYMENT_TARGET=11.1 2024-06-26T05:38:48.4580220Z ++ MACOSX_DEPLOYMENT_TARGET=11.1 2024-06-26T05:38:48.4580500Z ++ export CXX=clang++ 2024-06-26T05:38:48.4580720Z ++ CXX=clang++ 2024-06-26T05:38:48.4580920Z ++ export CC=clang 2024-06-26T05:38:48.4581130Z ++ CC=clang 2024-06-26T05:38:48.4584880Z ++ dirname .ci/pytorch/macos-build.sh 2024-06-26T05:38:48.4595930Z + source .ci/pytorch/common-build.sh 2024-06-26T05:38:48.4602850Z ++ [[ macos-py3-arm64 != *win-* ]] 2024-06-26T05:38:48.4607950Z ++++ dirname .ci/pytorch/common-build.sh 2024-06-26T05:38:48.4620320Z +++ cd .ci/pytorch 2024-06-26T05:38:48.4620670Z +++ pwd -P 2024-06-26T05:38:48.4622430Z ++ script_dir=/Users/ec2-user/runner/_work/pytorch/pytorch/.ci/pytorch 2024-06-26T05:38:48.4622850Z ++ which sccache 2024-06-26T05:38:48.4633940Z ++ sccache --stop-server 2024-06-26T05:38:48.4747510Z ++ true 2024-06-26T05:38:48.4747850Z ++ rm -f /Users/ec2-user/sccache_error.log 2024-06-26T05:38:48.4832700Z ++ trap_add sccache_epilogue EXIT 2024-06-26T05:38:48.4833020Z ++ trap_add_cmd=sccache_epilogue 2024-06-26T05:38:48.4833270Z ++ shift 2024-06-26T05:38:48.4834090Z ++ for trap_add_name in '"$@"' 2024-06-26T05:38:48.4839010Z ++++ trap -p EXIT 2024-06-26T05:38:48.4840680Z +++ eval 'extract_trap_cmd ' 2024-06-26T05:38:48.4840940Z ++++ extract_trap_cmd 2024-06-26T05:38:48.4841180Z ++++ printf '%s\n' '' 2024-06-26T05:38:48.4841450Z +++ printf '%s\n' sccache_epilogue 2024-06-26T05:38:48.4842290Z ++ trap -- ' 2024-06-26T05:38:48.4842540Z sccache_epilogue' EXIT 2024-06-26T05:38:48.4842890Z Skipping sccache server initialization, setting environment variables 2024-06-26T05:38:48.4843310Z ++ [[ -n 1 ]] 2024-06-26T05:38:48.4843710Z ++ echo 'Skipping sccache server initialization, setting environment variables' 2024-06-26T05:38:48.4844180Z ++ export SCCACHE_IDLE_TIMEOUT=0 2024-06-26T05:38:48.4844450Z ++ SCCACHE_IDLE_TIMEOUT=0 2024-06-26T05:38:48.4844880Z ++ export SCCACHE_ERROR_LOG=/Users/ec2-user/sccache_error.log 2024-06-26T05:38:48.4845320Z ++ SCCACHE_ERROR_LOG=/Users/ec2-user/sccache_error.log 2024-06-26T05:38:48.4853540Z ++ export RUST_LOG=sccache::server=error 2024-06-26T05:38:48.4853830Z ++ RUST_LOG=sccache::server=error 2024-06-26T05:38:48.4854100Z ++ sccache --zero-stats 2024-06-26T05:38:48.8712420Z Compile requests 0 2024-06-26T05:38:48.8712980Z Compile requests executed 0 2024-06-26T05:38:48.8713440Z Cache hits 0 2024-06-26T05:38:48.8713910Z Cache misses 0 2024-06-26T05:38:48.8714370Z Cache timeouts 0 2024-06-26T05:38:48.8714830Z Cache read errors 0 2024-06-26T05:38:48.8715280Z Forced recaches 0 2024-06-26T05:38:48.8715730Z Cache write errors 0 2024-06-26T05:38:48.8716190Z Compilation failures 0 2024-06-26T05:38:48.8716660Z Cache errors 0 2024-06-26T05:38:48.8717330Z Non-cacheable compilations 0 2024-06-26T05:38:48.8717850Z Non-cacheable calls 0 2024-06-26T05:38:48.8718350Z Non-compilation calls 0 2024-06-26T05:38:48.8718850Z Unsupported compiler calls 0 2024-06-26T05:38:48.8719340Z Average cache write 0.000 s 2024-06-26T05:38:48.8719830Z Average compiler 0.000 s 2024-06-26T05:38:48.8720300Z Average cache read hit 0.000 s 2024-06-26T05:38:48.8720860Z Failed distributed compilations 0 2024-06-26T05:38:48.8721750Z Cache location s3, name: ossci-compiler-cache-circleci-v2, prefix: /trunk/ 2024-06-26T05:38:48.8722530Z Version (client) 0.4.1 2024-06-26T05:38:48.8722980Z ++ which ccache 2024-06-26T05:38:48.8748440Z + '[' -z true ']' 2024-06-26T05:38:48.8748940Z + which sccache 2024-06-26T05:38:48.8772280Z ++ mktemp -d 2024-06-26T05:38:48.8842840Z + tmp_dir=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4 2024-06-26T05:38:48.8843640Z + trap 'rm -rfv ${tmp_dir}' EXIT 2024-06-26T05:38:48.8844360Z + write_sccache_stub /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang++ 2024-06-26T05:38:48.8845400Z + output=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang++ 2024-06-26T05:38:48.8847410Z ++ basename /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang++ 2024-06-26T05:38:48.8880590Z + binary=clang++ 2024-06-26T05:38:48.8884430Z ++ which clang++ 2024-06-26T05:38:48.8900530Z ++ which clang++ 2024-06-26T05:38:48.8913440Z + 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++ 2024-06-26T05:38:48.8914900Z + chmod a+x /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang++ 2024-06-26T05:38:48.8959660Z + write_sccache_stub /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang 2024-06-26T05:38:48.8960520Z + output=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang 2024-06-26T05:38:48.8963580Z ++ basename /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang 2024-06-26T05:38:48.8976020Z + binary=clang 2024-06-26T05:38:48.8979730Z ++ which clang 2024-06-26T05:38:48.8993200Z ++ which clang 2024-06-26T05:38:48.9004140Z + 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 2024-06-26T05:38:48.9005390Z + chmod a+x /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang 2024-06-26T05:38:48.9019750Z + export PATH=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4:/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/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 2024-06-26T05:38:48.9023340Z + PATH=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4:/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/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 2024-06-26T05:38:48.9025080Z + print_cmake_info 2024-06-26T05:38:48.9025300Z ++ which cmake 2024-06-26T05:38:48.9032040Z + CMAKE_EXEC=/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/cmake 2024-06-26T05:38:48.9032720Z + echo /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/cmake 2024-06-26T05:38:48.9033350Z /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/cmake 2024-06-26T05:38:48.9035340Z ++ dirname /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/cmake 2024-06-26T05:38:48.9044660Z + CONDA_INSTALLATION_DIR=/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin 2024-06-26T05:38:48.9045340Z + ls -la /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/../lib 2024-06-26T05:38:48.9109880Z total 181256 2024-06-26T05:38:48.9110290Z drwxr-xr-x 230 ec2-user staff 7360 Jun 26 05:38 . 2024-06-26T05:38:48.9110740Z drwxr-xr-x 13 ec2-user staff 416 Jun 26 05:38 .. 2024-06-26T05:38:48.9111190Z -rw-r--r-- 2 ec2-user staff 154497 May 3 21:11 Tk.icns 2024-06-26T05:38:48.9111650Z -rw-r--r-- 2 ec2-user staff 53684 May 3 21:11 Tk.tiff 2024-06-26T05:38:48.9112100Z drwxr-xr-x 3 ec2-user staff 96 Jun 26 05:38 clang 2024-06-26T05:38:48.9112540Z drwxr-xr-x 7 ec2-user staff 224 Jun 26 05:38 cmake 2024-06-26T05:38:48.9113210Z drwxr-xr-x 4 ec2-user staff 128 Jun 26 05:38 engines-1.1 2024-06-26T05:38:48.9113700Z drwxr-xr-x 9 ec2-user staff 288 Jun 26 05:38 itcl4.2.4 2024-06-26T05:38:48.9114170Z drwxr-xr-x 3 ec2-user staff 96 Jun 26 05:38 krb5 2024-06-26T05:38:48.9114640Z -rwxr-xr-x 2 ec2-user staff 471088 Oct 29 2021 libLerc.dylib 2024-06-26T05:38:48.9115210Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libblas.dylib -> libopenblas.dylib 2024-06-26T05:38:48.9115800Z -rwxr-xr-x 2 ec2-user staff 125200 Apr 30 20:56 libbz2.1.0.8.dylib 2024-06-26T05:38:48.9116270Z -rw-r--r-- 2 ec2-user staff 202304 Apr 30 20:56 libbz2.a 2024-06-26T05:38:48.9116810Z lrwxr-xr-x 1 ec2-user staff 18 Jun 26 05:38 libbz2.dylib -> libbz2.1.0.8.dylib 2024-06-26T05:38:48.9117370Z -rwxr-xr-x 3 ec2-user staff 1010816 Sep 8 2022 libc++.1.0.dylib 2024-06-26T05:38:48.9117930Z lrwxr-xr-x 1 ec2-user staff 16 Jun 26 05:38 libc++.1.dylib -> libc++.1.0.dylib 2024-06-26T05:38:48.9118450Z -rw-r--r-- 3 ec2-user staff 1393600 Sep 8 2022 libc++.a 2024-06-26T05:38:48.9118980Z lrwxr-xr-x 1 ec2-user staff 16 Jun 26 05:38 libc++.dylib -> libc++.1.0.dylib 2024-06-26T05:38:48.9119750Z -rw-r--r-- 3 ec2-user staff 7208 Sep 8 2022 libc++experimental.a 2024-06-26T05:38:48.9120290Z -rwxr-xr-x 2 ec2-user staff 127888 Sep 5 2023 libcares.2.6.1.dylib 2024-06-26T05:38:48.9120910Z lrwxr-xr-x 1 ec2-user staff 20 Jun 26 05:38 libcares.2.dylib -> libcares.2.6.1.dylib 2024-06-26T05:38:48.9121550Z lrwxr-xr-x 1 ec2-user staff 20 Jun 26 05:38 libcares.dylib -> libcares.2.6.1.dylib 2024-06-26T05:38:48.9122160Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libcblas.dylib -> libopenblas.dylib 2024-06-26T05:38:48.9122730Z -rwxr-xr-x 2 ec2-user staff 67456 Apr 30 13:25 libcharset.1.dylib 2024-06-26T05:38:48.9123220Z -rw-r--r-- 2 ec2-user staff 2848 Apr 30 13:25 libcharset.a 2024-06-26T05:38:48.9123780Z lrwxr-xr-x 1 ec2-user staff 18 Jun 26 05:38 libcharset.dylib -> libcharset.1.dylib 2024-06-26T05:38:48.9124350Z -rwxr-xr-x 2 ec2-user staff 69344 Jun 16 2023 libcom_err.3.0.dylib 2024-06-26T05:38:48.9124940Z lrwxr-xr-x 1 ec2-user staff 20 Jun 26 05:38 libcom_err.3.dylib -> libcom_err.3.0.dylib 2024-06-26T05:38:48.9125580Z lrwxr-xr-x 1 ec2-user staff 20 Jun 26 05:38 libcom_err.dylib -> libcom_err.3.0.dylib 2024-06-26T05:38:48.9126250Z -rwxr-xr-x 1 ec2-user staff 2275056 Jun 26 05:38 libcrypto.1.1.dylib 2024-06-26T05:38:48.9126730Z -rw-r--r--@ 1 ec2-user staff 3968520 Jun 26 05:38 libcrypto.a 2024-06-26T05:38:48.9127140Z + export CMAKE_EXEC 2024-06-26T05:38:48.9127720Z + install_name_tool -add_rpath @executable_path/../lib /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/cmake 2024-06-26T05:38:48.9128480Z lrwxr-xr-x 1 ec2-user staff 19 Jun 26 05:38 libcrypto.dylib -> libcrypto.1.1.dylib 2024-06-26T05:38:48.9129050Z -rwxr-xr-x 1 ec2-user staff 678112 Jun 26 05:38 libcurl.4.dylib 2024-06-26T05:38:48.9129600Z lrwxr-xr-x 1 ec2-user staff 15 Jun 26 05:38 libcurl.dylib -> libcurl.4.dylib 2024-06-26T05:38:48.9130160Z -rwxr-xr-x 2 ec2-user staff 103920 Sep 29 2023 libdeflate.0.dylib 2024-06-26T05:38:48.9130730Z lrwxr-xr-x 1 ec2-user staff 18 Jun 26 05:38 libdeflate.dylib -> libdeflate.0.dylib 2024-06-26T05:38:48.9131290Z -rwxr-xr-x 2 ec2-user staff 229728 Dec 19 2023 libedit.0.dylib 2024-06-26T05:38:48.9131770Z -rw-r--r-- 2 ec2-user staff 287296 Dec 19 2023 libedit.a 2024-06-26T05:38:48.9132290Z lrwxr-xr-x 1 ec2-user staff 15 Jun 26 05:38 libedit.dylib -> libedit.0.dylib 2024-06-26T05:38:48.9132820Z -rwxr-xr-x 2 ec2-user staff 92016 Aug 14 2021 libev.4.dylib 2024-06-26T05:38:48.9133350Z lrwxr-xr-x 1 ec2-user staff 13 Jun 26 05:38 libev.dylib -> libev.4.dylib 2024-06-26T05:38:48.9133900Z -rwxr-xr-x 2 ec2-user staff 199040 Apr 19 12:50 libexpat.1.9.2.dylib 2024-06-26T05:38:48.9134590Z lrwxr-xr-x 1 ec2-user staff 20 Jun 26 05:38 libexpat.1.dylib -> libexpat.1.9.2.dylib 2024-06-26T05:38:48.9135140Z -rw-r--r-- 2 ec2-user staff 193616 Apr 19 12:50 libexpat.a 2024-06-26T05:38:48.9135690Z lrwxr-xr-x 1 ec2-user staff 20 Jun 26 05:38 libexpat.dylib -> libexpat.1.9.2.dylib 2024-06-26T05:38:48.9136290Z lrwxr-xr-x 1 ec2-user staff 14 Jun 26 05:38 libffi.7.dylib -> libffi.8.dylib 2024-06-26T05:38:48.9136830Z -rwxr-xr-x 2 ec2-user staff 120624 Apr 30 13:24 libffi.8.dylib 2024-06-26T05:38:48.9137350Z -rw-r--r-- 2 ec2-user staff 54584 Apr 30 13:24 libffi.a 2024-06-26T05:38:48.9137890Z lrwxr-xr-x 1 ec2-user staff 14 Jun 26 05:38 libffi.dylib -> libffi.8.dylib 2024-06-26T05:38:48.9138510Z lrwxr-xr-x 1 ec2-user staff 16 Jun 26 05:38 libform.6.dylib -> libformw.6.dylib 2024-06-26T05:38:48.9139100Z lrwxr-xr-x 1 ec2-user staff 10 Jun 26 05:38 libform.a -> libformw.a 2024-06-26T05:38:48.9146530Z lrwxr-xr-x 1 ec2-user staff 16 Jun 26 05:38 libform.dylib -> libformw.6.dylib 2024-06-26T05:38:48.9147100Z -rwxr-xr-x 3 ec2-user staff 113712 Jan 26 2023 libformw.6.dylib 2024-06-26T05:38:48.9147780Z -rw-r--r-- 3 ec2-user staff 100944 Jan 26 2023 libformw.a 2024-06-26T05:38:48.9148340Z lrwxr-xr-x 1 ec2-user staff 16 Jun 26 05:38 libformw.dylib -> libformw.6.dylib 2024-06-26T05:38:48.9148920Z -rwxr-xr-x 2 ec2-user staff 735296 Oct 26 2022 libfreetype.6.dylib 2024-06-26T05:38:48.9149430Z -rw-r--r-- 2 ec2-user staff 882072 Oct 26 2022 libfreetype.a 2024-06-26T05:38:48.9150000Z lrwxr-xr-x 1 ec2-user staff 19 Jun 26 05:38 libfreetype.dylib -> libfreetype.6.dylib 2024-06-26T05:38:48.9150550Z -rw-r--r-- 2 ec2-user staff 143664 Oct 11 2022 libgcc_s.1.1.dylib 2024-06-26T05:38:48.9151060Z -rwxr-xr-x 2 ec2-user staff 3717456 Oct 11 2022 libgfortran.5.dylib 2024-06-26T05:38:48.9151620Z lrwxr-xr-x 1 ec2-user staff 19 Jun 26 05:38 libgfortran.dylib -> libgfortran.5.dylib 2024-06-26T05:38:48.9152170Z -rwxr-xr-x 2 ec2-user staff 105728 Feb 21 2023 libgif.7.2.0.dylib 2024-06-26T05:38:48.9152710Z lrwxr-xr-x 1 ec2-user staff 18 Jun 26 05:38 libgif.7.dylib -> libgif.7.2.0.dylib 2024-06-26T05:38:48.9153290Z lrwxr-xr-x 1 ec2-user staff 18 Jun 26 05:38 libgif.dylib -> libgif.7.2.0.dylib 2024-06-26T05:38:48.9153860Z lrwxr-xr-x 1 ec2-user staff 12 Jun 26 05:38 libgomp.1.dylib -> libomp.dylib 2024-06-26T05:38:48.9154420Z lrwxr-xr-x 1 ec2-user staff 12 Jun 26 05:38 libgomp.dylib -> libomp.dylib 2024-06-26T05:38:48.9154960Z -rwxr-xr-x 1 ec2-user staff 333152 Jun 26 05:38 libgssapi_krb5.2.2.dylib 2024-06-26T05:38:48.9155590Z lrwxr-xr-x 1 ec2-user staff 24 Jun 26 05:38 libgssapi_krb5.2.dylib -> libgssapi_krb5.2.2.dylib 2024-06-26T05:38:48.9156260Z lrwxr-xr-x 1 ec2-user staff 24 Jun 26 05:38 libgssapi_krb5.dylib -> libgssapi_krb5.2.2.dylib 2024-06-26T05:38:48.9156830Z -rwxr-xr-x 2 ec2-user staff 153488 Jun 16 2023 libgssrpc.4.2.dylib 2024-06-26T05:38:48.9157390Z lrwxr-xr-x 1 ec2-user staff 19 Jun 26 05:38 libgssrpc.4.dylib -> libgssrpc.4.2.dylib 2024-06-26T05:38:48.9158000Z lrwxr-xr-x 1 ec2-user staff 19 Jun 26 05:38 libgssrpc.dylib -> libgssrpc.4.2.dylib 2024-06-26T05:38:48.9158540Z -rwxr-xr-x 3 ec2-user staff 91184 Oct 24 2022 libhistory.8.2.dylib 2024-06-26T05:38:48.9159120Z lrwxr-xr-x 1 ec2-user staff 20 Jun 26 05:38 libhistory.8.dylib -> libhistory.8.2.dylib 2024-06-26T05:38:48.9159650Z -rw-r--r-- 3 ec2-user staff 48392 Oct 24 2022 libhistory.a 2024-06-26T05:38:48.9160180Z lrwxr-xr-x 1 ec2-user staff 20 Jun 26 05:38 libhistory.dylib -> libhistory.8.2.dylib 2024-06-26T05:38:48.9160720Z -rwxr-xr-x 2 ec2-user staff 1015200 Apr 30 13:25 libiconv.2.dylib 2024-06-26T05:38:48.9161180Z -rw-r--r-- 2 ec2-user staff 980096 Apr 30 13:25 libiconv.a 2024-06-26T05:38:48.9161790Z lrwxr-xr-x 1 ec2-user staff 16 Jun 26 05:38 libiconv.dylib -> libiconv.2.dylib 2024-06-26T05:38:48.9162370Z lrwxr-xr-x 1 ec2-user staff 12 Jun 26 05:38 libiomp5.dylib -> libomp.dylib 2024-06-26T05:38:48.9162890Z -rwxr-xr-x 2 ec2-user staff 284272 Mar 3 2023 libjpeg.9.dylib 2024-06-26T05:38:48.9163350Z -rw-r--r-- 2 ec2-user staff 303552 Mar 3 2023 libjpeg.a 2024-06-26T05:38:48.9163850Z lrwxr-xr-x 1 ec2-user staff 15 Jun 26 05:38 libjpeg.dylib -> libjpeg.9.dylib 2024-06-26T05:38:48.9164380Z -rwxr-xr-x 2 ec2-user staff 113520 Jun 16 2023 libk5crypto.3.1.dylib 2024-06-26T05:38:48.9164970Z lrwxr-xr-x 1 ec2-user staff 21 Jun 26 05:38 libk5crypto.3.dylib -> libk5crypto.3.1.dylib 2024-06-26T05:38:48.9165610Z lrwxr-xr-x 1 ec2-user staff 21 Jun 26 05:38 libk5crypto.dylib -> libk5crypto.3.1.dylib 2024-06-26T05:38:48.9166280Z lrwxr-xr-x 1 ec2-user staff 27 Jun 26 05:38 libkadm5clnt.dylib -> libkadm5clnt_mit.12.0.dylib 2024-06-26T05:38:48.9166920Z -rwxr-xr-x 1 ec2-user staff 134880 Jun 26 05:38 libkadm5clnt_mit.12.0.dylib 2024-06-26T05:38:48.9167560Z lrwxr-xr-x 1 ec2-user staff 27 Jun 26 05:38 libkadm5clnt_mit.12.dylib -> libkadm5clnt_mit.12.0.dylib 2024-06-26T05:38:48.9168430Z lrwxr-xr-x 1 ec2-user staff 27 Jun 26 05:38 libkadm5clnt_mit.dylib -> libkadm5clnt_mit.12.0.dylib 2024-06-26T05:38:48.9169120Z lrwxr-xr-x 1 ec2-user staff 26 Jun 26 05:38 libkadm5srv.dylib -> libkadm5srv_mit.12.0.dylib 2024-06-26T05:38:48.9169710Z -rwxr-xr-x 1 ec2-user staff 154944 Jun 26 05:38 libkadm5srv_mit.12.0.dylib 2024-06-26T05:38:48.9170340Z lrwxr-xr-x 1 ec2-user staff 26 Jun 26 05:38 libkadm5srv_mit.12.dylib -> libkadm5srv_mit.12.0.dylib 2024-06-26T05:38:48.9171020Z lrwxr-xr-x 1 ec2-user staff 26 Jun 26 05:38 libkadm5srv_mit.dylib -> libkadm5srv_mit.12.0.dylib 2024-06-26T05:38:48.9171600Z -rwxr-xr-x 1 ec2-user staff 132336 Jun 26 05:38 libkdb5.10.0.dylib 2024-06-26T05:38:48.9172150Z lrwxr-xr-x 1 ec2-user staff 18 Jun 26 05:38 libkdb5.10.dylib -> libkdb5.10.0.dylib 2024-06-26T05:38:48.9172760Z lrwxr-xr-x 1 ec2-user staff 18 Jun 26 05:38 libkdb5.dylib -> libkdb5.10.0.dylib 2024-06-26T05:38:48.9173290Z -rwxr-xr-x 2 ec2-user staff 71216 Jun 16 2023 libkrad.0.0.dylib 2024-06-26T05:38:48.9173810Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libkrad.0.dylib -> libkrad.0.0.dylib 2024-06-26T05:38:48.9174390Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libkrad.dylib -> libkrad.0.0.dylib 2024-06-26T05:38:48.9174900Z -rwxr-xr-x 1 ec2-user staff 826304 Jun 26 05:38 libkrb5.3.3.dylib 2024-06-26T05:38:48.9175420Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libkrb5.3.dylib -> libkrb5.3.3.dylib 2024-06-26T05:38:48.9175980Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libkrb5.dylib -> libkrb5.3.3.dylib 2024-06-26T05:38:48.9176520Z -rwxr-xr-x 2 ec2-user staff 93744 Jun 16 2023 libkrb5support.1.1.dylib 2024-06-26T05:38:48.9177130Z lrwxr-xr-x 1 ec2-user staff 24 Jun 26 05:38 libkrb5support.1.dylib -> libkrb5support.1.1.dylib 2024-06-26T05:38:48.9177820Z lrwxr-xr-x 1 ec2-user staff 24 Jun 26 05:38 libkrb5support.dylib -> libkrb5support.1.1.dylib 2024-06-26T05:38:48.9178470Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 liblapack.dylib -> libopenblas.dylib 2024-06-26T05:38:48.9179030Z -rwxr-xr-x 2 ec2-user staff 380608 Aug 13 2021 liblcms2.2.dylib 2024-06-26T05:38:48.9179510Z -rw-r--r-- 2 ec2-user staff 529192 Aug 13 2021 liblcms2.a 2024-06-26T05:38:48.9180020Z lrwxr-xr-x 1 ec2-user staff 16 Jun 26 05:38 liblcms2.dylib -> liblcms2.2.dylib 2024-06-26T05:38:48.9180550Z -rwxr-xr-x 2 ec2-user staff 225328 Apr 30 20:56 liblz4.1.9.4.dylib 2024-06-26T05:38:48.9181080Z lrwxr-xr-x 1 ec2-user staff 18 Jun 26 05:38 liblz4.1.dylib -> liblz4.1.9.4.dylib 2024-06-26T05:38:48.9181660Z lrwxr-xr-x 1 ec2-user staff 18 Jun 26 05:38 liblz4.dylib -> liblz4.1.9.4.dylib 2024-06-26T05:38:48.9182240Z -rwxr-xr-x 2 ec2-user staff 217520 Apr 30 21:03 liblzma.5.dylib 2024-06-26T05:38:48.9182690Z -rw-r--r-- 2 ec2-user staff 264344 Apr 30 21:03 liblzma.a 2024-06-26T05:38:48.9183200Z lrwxr-xr-x 1 ec2-user staff 15 Jun 26 05:38 liblzma.dylib -> liblzma.5.dylib 2024-06-26T05:38:48.9183780Z lrwxr-xr-x 1 ec2-user staff 16 Jun 26 05:38 libmenu.6.dylib -> libmenuw.6.dylib 2024-06-26T05:38:48.9184330Z lrwxr-xr-x 1 ec2-user staff 10 Jun 26 05:38 libmenu.a -> libmenuw.a 2024-06-26T05:38:48.9184880Z lrwxr-xr-x 1 ec2-user staff 16 Jun 26 05:38 libmenu.dylib -> libmenuw.6.dylib 2024-06-26T05:38:48.9185410Z -rwxr-xr-x 3 ec2-user staff 73008 Jan 26 2023 libmenuw.6.dylib 2024-06-26T05:38:48.9185870Z -rw-r--r-- 3 ec2-user staff 43824 Jan 26 2023 libmenuw.a 2024-06-26T05:38:48.9186390Z lrwxr-xr-x 1 ec2-user staff 16 Jun 26 05:38 libmenuw.dylib -> libmenuw.6.dylib 2024-06-26T05:38:48.9186980Z lrwxr-xr-x 1 ec2-user staff 15 Jun 26 05:38 libncurses++.a -> libncurses++w.a 2024-06-26T05:38:48.9187510Z -rw-r--r-- 3 ec2-user staff 108432 Jan 26 2023 libncurses++w.a 2024-06-26T05:38:48.9188200Z lrwxr-xr-x 1 ec2-user staff 19 Jun 26 05:38 libncurses.6.dylib -> libncursesw.6.dylib 2024-06-26T05:38:48.9188800Z lrwxr-xr-x 1 ec2-user staff 13 Jun 26 05:38 libncurses.a -> libncursesw.a 2024-06-26T05:38:48.9189380Z lrwxr-xr-x 1 ec2-user staff 19 Jun 26 05:38 libncurses.dylib -> libncursesw.6.dylib 2024-06-26T05:38:48.9189930Z -rwxr-xr-x 1 ec2-user staff 252048 Jun 26 05:38 libncursesw.6.dylib 2024-06-26T05:38:48.9190410Z -rw-r--r-- 3 ec2-user staff 302192 Jan 26 2023 libncursesw.a 2024-06-26T05:38:48.9190950Z lrwxr-xr-x 1 ec2-user staff 19 Jun 26 05:38 libncursesw.dylib -> libncursesw.6.dylib 2024-06-26T05:38:48.9191500Z -rwxr-xr-x 2 ec2-user staff 211216 Jun 16 2023 libnghttp2.14.dylib 2024-06-26T05:38:48.9192060Z lrwxr-xr-x 1 ec2-user staff 19 Jun 26 05:38 libnghttp2.dylib -> libnghttp2.14.dylib 2024-06-26T05:38:48.9192590Z -rwxr-xr-x 2 ec2-user staff 763440 Sep 8 2022 libomp.dylib 2024-06-26T05:38:48.9193170Z lrwxr-xr-x 1 ec2-user staff 26 Jun 26 05:38 libopenblas.0.dylib -> libopenblasp-r0.3.21.dylib 2024-06-26T05:38:48.9193790Z -rwxr-xr-x 2 ec2-user staff 23144528 Oct 4 2022 libopenblas.dylib 2024-06-26T05:38:48.9194340Z -rwxr-xr-x 2 ec2-user staff 23144560 Oct 4 2022 libopenblasp-r0.3.21.dylib 2024-06-26T05:38:48.9194990Z -rwxr-xr-x 2 ec2-user staff 340880 Aug 13 2021 libopenjp2.2.3.0.dylib 2024-06-26T05:38:48.9195600Z lrwxr-xr-x 1 ec2-user staff 22 Jun 26 05:38 libopenjp2.7.dylib -> libopenjp2.2.3.0.dylib 2024-06-26T05:38:48.9196170Z -rw-r--r-- 2 ec2-user staff 417152 Aug 13 2021 libopenjp2.a 2024-06-26T05:38:48.9196720Z lrwxr-xr-x 1 ec2-user staff 22 Jun 26 05:38 libopenjp2.dylib -> libopenjp2.2.3.0.dylib 2024-06-26T05:38:48.9197360Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libpanel.6.dylib -> libpanelw.6.dylib 2024-06-26T05:38:48.9197960Z lrwxr-xr-x 1 ec2-user staff 11 Jun 26 05:38 libpanel.a -> libpanelw.a 2024-06-26T05:38:48.9198550Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libpanel.dylib -> libpanelw.6.dylib 2024-06-26T05:38:48.9199130Z -rwxr-xr-x 3 ec2-user staff 68352 Jan 26 2023 libpanelw.6.dylib 2024-06-26T05:38:48.9199620Z -rw-r--r-- 3 ec2-user staff 15856 Jan 26 2023 libpanelw.a 2024-06-26T05:38:48.9200160Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libpanelw.dylib -> libpanelw.6.dylib 2024-06-26T05:38:48.9200740Z lrwxr-xr-x 1 ec2-user staff 10 Jun 26 05:38 libpng.a -> libpng16.a 2024-06-26T05:38:48.9201340Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libpng.dylib -> libpng16.16.dylib 2024-06-26T05:38:48.9201880Z -rwxr-xr-x 2 ec2-user staff 258784 Mar 3 2023 libpng16.16.dylib 2024-06-26T05:38:48.9202370Z -rw-r--r-- 2 ec2-user staff 294888 Mar 3 2023 libpng16.a 2024-06-26T05:38:48.9203110Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libpng16.dylib -> libpng16.16.dylib 2024-06-26T05:38:48.9203670Z -rwxr-xr-x 1 ec2-user staff 4022992 Jun 26 05:38 libpython3.9.dylib 2024-06-26T05:38:48.9204180Z -rwxr-xr-x 2 ec2-user staff 371952 Oct 11 2022 libquadmath.0.dylib 2024-06-26T05:38:48.9204760Z lrwxr-xr-x 1 ec2-user staff 19 Jun 26 05:38 libquadmath.dylib -> libquadmath.0.dylib 2024-06-26T05:38:48.9205330Z -rwxr-xr-x 3 ec2-user staff 327920 Oct 24 2022 libreadline.8.2.dylib 2024-06-26T05:38:48.9205930Z lrwxr-xr-x 1 ec2-user staff 21 Jun 26 05:38 libreadline.8.dylib -> libreadline.8.2.dylib 2024-06-26T05:38:48.9206490Z -rw-r--r-- 3 ec2-user staff 509560 Oct 24 2022 libreadline.a 2024-06-26T05:38:48.9207100Z lrwxr-xr-x 1 ec2-user staff 21 Jun 26 05:38 libreadline.dylib -> libreadline.8.2.dylib 2024-06-26T05:38:48.9207660Z -rw-r--r-- 2 ec2-user staff 247856 Aug 20 2021 librhash.0.dylib 2024-06-26T05:38:48.9208140Z -rw-r--r-- 2 ec2-user staff 235000 Aug 20 2021 librhash.a 2024-06-26T05:38:48.9208650Z lrwxr-xr-x 1 ec2-user staff 16 Jun 26 05:38 librhash.dylib -> librhash.0.dylib 2024-06-26T05:38:48.9209350Z -rwxr-xr-x 2 ec2-user staff 68672 Sep 15 2023 libsharpyuv.0.dylib 2024-06-26T05:38:48.9210520Z lrwxr-xr-x 1 ec2-user staff 19 Jun 26 05:38 libsharpyuv.dylib -> libsharpyuv.0.dylib 2024-06-26T05:38:48.9211190Z -rwxr-xr-x 2 ec2-user staff 1594192 Apr 30 14:45 libsqlite3.0.dylib 2024-06-26T05:38:48.9211780Z lrwxr-xr-x 1 ec2-user staff 18 Jun 26 05:38 libsqlite3.dylib -> libsqlite3.0.dylib 2024-06-26T05:38:48.9212430Z -rwxr-xr-x 2 ec2-user staff 284496 Jun 16 2023 libssh2.1.0.1.dylib 2024-06-26T05:38:48.9213030Z lrwxr-xr-x 1 ec2-user staff 19 Jun 26 05:38 libssh2.1.dylib -> libssh2.1.0.1.dylib 2024-06-26T05:38:48.9213580Z -rw-r--r-- 2 ec2-user staff 342368 Jun 16 2023 libssh2.a 2024-06-26T05:38:48.9214130Z lrwxr-xr-x 1 ec2-user staff 19 Jun 26 05:38 libssh2.dylib -> libssh2.1.0.1.dylib 2024-06-26T05:38:48.9214780Z -rwxr-xr-x 2 ec2-user staff 541728 Sep 11 2023 libssl.1.1.dylib 2024-06-26T05:38:48.9215270Z -rw-r--r-- 2 ec2-user staff 773744 Sep 11 2023 libssl.a 2024-06-26T05:38:48.9215790Z lrwxr-xr-x 1 ec2-user staff 16 Jun 26 05:38 libssl.dylib -> libssl.1.1.dylib 2024-06-26T05:38:48.9216320Z -rwxr-xr-x 1 ec2-user staff 1628848 Jun 26 05:38 libtcl8.6.dylib 2024-06-26T05:38:48.9216820Z -rwxr-xr-x 2 ec2-user staff 5856 May 3 21:10 libtclstub8.6.a 2024-06-26T05:38:48.9217350Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libtiff.5.dylib -> ./libtiff.6.dylib 2024-06-26T05:38:48.9217900Z -rwxr-xr-x 2 ec2-user staff 545440 Sep 1 2023 libtiff.6.dylib 2024-06-26T05:38:48.9218360Z -rw-r--r-- 2 ec2-user staff 733272 Sep 1 2023 libtiff.a 2024-06-26T05:38:48.9218880Z lrwxr-xr-x 1 ec2-user staff 15 Jun 26 05:38 libtiff.dylib -> libtiff.6.dylib 2024-06-26T05:38:48.9219420Z -rwxr-xr-x 2 ec2-user staff 70992 Sep 1 2023 libtiffxx.6.dylib 2024-06-26T05:38:48.9219890Z -rw-r--r-- 2 ec2-user staff 10840 Sep 1 2023 libtiffxx.a 2024-06-26T05:38:48.9226090Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libtiffxx.dylib -> libtiffxx.6.dylib 2024-06-26T05:38:48.9226710Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libtinfo.6.dylib -> libtinfow.6.dylib 2024-06-26T05:38:48.9227270Z lrwxr-xr-x 1 ec2-user staff 11 Jun 26 05:38 libtinfo.a -> libtinfow.a 2024-06-26T05:38:48.9227820Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libtinfo.dylib -> libtinfow.6.dylib 2024-06-26T05:38:48.9228350Z -rwxr-xr-x 1 ec2-user staff 255072 Jun 26 05:38 libtinfow.6.dylib 2024-06-26T05:38:48.9228800Z -rw-r--r--@ 1 ec2-user staff 345456 Jun 26 05:38 libtinfow.a 2024-06-26T05:38:48.9229310Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libtinfow.dylib -> libtinfow.6.dylib 2024-06-26T05:38:48.9229940Z -rwxr-xr-x 2 ec2-user staff 1590336 May 3 21:12 libtk8.6.dylib 2024-06-26T05:38:48.9230400Z -rwxr-xr-x 2 ec2-user staff 4728 May 3 21:11 libtkstub8.6.a 2024-06-26T05:38:48.9230860Z -rwxr-xr-x 2 ec2-user staff 266832 Aug 19 2021 libuv.1.dylib 2024-06-26T05:38:48.9231310Z -rw-r--r-- 2 ec2-user staff 1047680 Aug 19 2021 libuv.a 2024-06-26T05:38:48.9231820Z lrwxr-xr-x 1 ec2-user staff 13 Jun 26 05:38 libuv.dylib -> libuv.1.dylib 2024-06-26T05:38:48.9232350Z -rwxr-xr-x 2 ec2-user staff 88752 Jun 16 2023 libverto.0.0.dylib 2024-06-26T05:38:48.9232910Z lrwxr-xr-x 1 ec2-user staff 18 Jun 26 05:38 libverto.0.dylib -> libverto.0.0.dylib 2024-06-26T05:38:48.9233490Z lrwxr-xr-x 1 ec2-user staff 18 Jun 26 05:38 libverto.dylib -> libverto.0.0.dylib 2024-06-26T05:38:48.9234000Z -rwxr-xr-x 2 ec2-user staff 451680 Sep 15 2023 libwebp.7.dylib 2024-06-26T05:38:48.9234510Z lrwxr-xr-x 1 ec2-user staff 15 Jun 26 05:38 libwebp.dylib -> libwebp.7.dylib 2024-06-26T05:38:48.9235060Z -rwxr-xr-x 2 ec2-user staff 253472 Sep 15 2023 libwebpdecoder.3.dylib 2024-06-26T05:38:48.9235650Z lrwxr-xr-x 1 ec2-user staff 22 Jun 26 05:38 libwebpdecoder.dylib -> libwebpdecoder.3.dylib 2024-06-26T05:38:48.9236400Z -rwxr-xr-x 2 ec2-user staff 69216 Sep 15 2023 libwebpdemux.2.dylib 2024-06-26T05:38:48.9236970Z lrwxr-xr-x 1 ec2-user staff 20 Jun 26 05:38 libwebpdemux.dylib -> libwebpdemux.2.dylib 2024-06-26T05:38:48.9237520Z -rwxr-xr-x 2 ec2-user staff 88944 Sep 15 2023 libwebpmux.3.dylib 2024-06-26T05:38:48.9238060Z lrwxr-xr-x 1 ec2-user staff 18 Jun 26 05:38 libwebpmux.dylib -> libwebpmux.3.dylib 2024-06-26T05:38:48.9238590Z -rwxr-xr-x 2 ec2-user staff 156864 Aug 16 2021 libyaml-0.2.dylib 2024-06-26T05:38:48.9239040Z -rw-r--r-- 2 ec2-user staff 142944 Aug 16 2021 libyaml.a 2024-06-26T05:38:48.9239560Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libyaml.dylib -> libyaml-0.2.dylib 2024-06-26T05:38:48.9240100Z -rwxr-xr-x 2 ec2-user staff 140576 Apr 30 21:02 libz.1.2.13.dylib 2024-06-26T05:38:48.9240610Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libz.1.dylib -> libz.1.2.13.dylib 2024-06-26T05:38:48.9241100Z -rw-r--r-- 2 ec2-user staff 105176 Apr 30 21:02 libz.a 2024-06-26T05:38:48.9241580Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 libz.dylib -> libz.1.2.13.dylib 2024-06-26T05:38:48.9242110Z -rwxr-xr-x 2 ec2-user staff 850144 May 2 19:33 libzstd.1.5.5.dylib 2024-06-26T05:38:48.9242670Z lrwxr-xr-x 1 ec2-user staff 19 Jun 26 05:38 libzstd.1.dylib -> libzstd.1.5.5.dylib 2024-06-26T05:38:48.9243160Z -rw-r--r-- 2 ec2-user staff 921456 May 2 19:33 libzstd.a 2024-06-26T05:38:48.9243670Z lrwxr-xr-x 1 ec2-user staff 19 Jun 26 05:38 libzstd.dylib -> libzstd.1.5.5.dylib 2024-06-26T05:38:48.9244180Z drwxr-xr-x 5 ec2-user staff 160 Jun 26 05:38 openjpeg-2.3 2024-06-26T05:38:48.9244630Z drwxr-xr-x 54 ec2-user staff 1728 Jun 26 05:38 pkgconfig 2024-06-26T05:38:48.9245080Z drwxr-xr-x 212 ec2-user staff 6784 Jun 26 05:38 python3.9 2024-06-26T05:38:48.9245520Z drwxr-xr-x 4 ec2-user staff 128 Jun 26 05:38 sqlite3.44.2 2024-06-26T05:38:48.9245950Z drwxr-xr-x 5 ec2-user staff 160 Jun 26 05:38 tcl8 2024-06-26T05:38:48.9246360Z drwxr-xr-x 17 ec2-user staff 544 Jun 26 05:38 tcl8.6 2024-06-26T05:38:48.9246790Z -rw-r--r-- 1 ec2-user staff 9605 Jun 26 05:38 tclConfig.sh 2024-06-26T05:38:48.9247240Z -rw-r--r-- 2 ec2-user staff 773 May 3 21:10 tclooConfig.sh 2024-06-26T05:38:48.9247680Z drwxr-xr-x 7 ec2-user staff 224 Jun 26 05:38 tdbc1.1.7 2024-06-26T05:38:48.9248130Z drwxr-xr-x 5 ec2-user staff 160 Jun 26 05:38 tdbcmysql1.1.7 2024-06-26T05:38:48.9248590Z drwxr-xr-x 5 ec2-user staff 160 Jun 26 05:38 tdbcodbc1.1.7 2024-06-26T05:38:48.9249050Z drwxr-xr-x 5 ec2-user staff 160 Jun 26 05:38 tdbcpostgres1.1.7 2024-06-26T05:38:48.9249630Z lrwxr-xr-x 1 ec2-user staff 17 Jun 26 05:38 terminfo -> ../share/terminfo 2024-06-26T05:38:48.9250120Z drwxr-xr-x 5 ec2-user staff 160 Jun 26 05:38 thread2.8.9 2024-06-26T05:38:48.9250540Z drwxr-xr-x 40 ec2-user staff 1280 Jun 26 05:38 tk8.6 2024-06-26T05:38:48.9250960Z -rw-r--r-- 1 ec2-user staff 4929 Jun 26 05:38 tkConfig.sh 2024-06-26T05:38:48.9251980Z /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_9673646592/bin/cmake 2024-06-26T05:38:48.9466720Z + codesign -f -s - /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/cmake 2024-06-26T05:38:48.9540990Z /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/cmake: replacing existing signature 2024-06-26T05:38:49.0554910Z + [[ macos-py3-arm64 = *arm64* ]] 2024-06-26T05:38:49.0557860Z ++ uname -m 2024-06-26T05:38:49.0597480Z + [[ arm64 == \a\r\m\6\4 ]] 2024-06-26T05:38:49.0597720Z + compile_arm64 2024-06-26T05:38:49.0597920Z + USE_DISTRIBUTED=0 2024-06-26T05:38:49.0598110Z + USE_OPENMP=1 2024-06-26T05:38:49.0598320Z + MACOSX_DEPLOYMENT_TARGET=11.0 2024-06-26T05:38:49.0598570Z + WERROR=1 2024-06-26T05:38:49.0599120Z + BUILD_TEST=OFF 2024-06-26T05:38:49.0599330Z + USE_PYTORCH_METAL=1 2024-06-26T05:38:49.0599550Z + python setup.py bdist_wheel 2024-06-26T05:38:51.5218450Z -- The CXX compiler identification is AppleClang 15.0.0.15000309 2024-06-26T05:38:51.6638110Z -- The C compiler identification is AppleClang 15.0.0.15000309 2024-06-26T05:38:51.6709250Z -- Detecting CXX compiler ABI info 2024-06-26T05:38:51.8230450Z -- Detecting CXX compiler ABI info - done 2024-06-26T05:38:51.8259520Z -- Check for working CXX compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang++ - skipped 2024-06-26T05:38:51.8261520Z -- Detecting CXX compile features 2024-06-26T05:38:51.8265030Z -- Detecting CXX compile features - done 2024-06-26T05:38:51.8311370Z -- Detecting C compiler ABI info 2024-06-26T05:38:51.9749710Z -- Detecting C compiler ABI info - done 2024-06-26T05:38:51.9783430Z -- Check for working C compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang - skipped 2024-06-26T05:38:51.9785590Z -- Detecting C compile features 2024-06-26T05:38:51.9788520Z -- Detecting C compile features - done 2024-06-26T05:38:51.9818540Z -- Not forcing any particular BLAS to be found 2024-06-26T05:38:52.0059630Z -- CLANG_VERSION_STRING: 15.0 2024-06-26T05:38:52.0235280Z -- sdk version: 14.4, mps supported: ON 2024-06-26T05:38:52.0401900Z -- MPSGraph framework found 2024-06-26T05:38:52.0432560Z -- Could not find ccache. Consider installing ccache to speed up compilation. 2024-06-26T05:38:52.0469080Z -- Performing Test C_HAS_AVX_1 2024-06-26T05:38:52.2643270Z -- Performing Test C_HAS_AVX_1 - Failed 2024-06-26T05:38:52.2645330Z -- Performing Test C_HAS_AVX_2 2024-06-26T05:38:52.3593730Z -- Performing Test C_HAS_AVX_2 - Failed 2024-06-26T05:38:52.3595610Z -- Performing Test C_HAS_AVX_3 2024-06-26T05:38:52.4272300Z -- Performing Test C_HAS_AVX_3 - Failed 2024-06-26T05:38:52.4274400Z -- Performing Test C_HAS_AVX2_1 2024-06-26T05:38:52.5218210Z -- Performing Test C_HAS_AVX2_1 - Failed 2024-06-26T05:38:52.5220130Z -- Performing Test C_HAS_AVX2_2 2024-06-26T05:38:52.6169660Z -- Performing Test C_HAS_AVX2_2 - Failed 2024-06-26T05:38:52.6171680Z -- Performing Test C_HAS_AVX2_3 2024-06-26T05:38:52.6823060Z -- Performing Test C_HAS_AVX2_3 - Failed 2024-06-26T05:38:52.6825340Z -- Performing Test C_HAS_AVX512_1 2024-06-26T05:38:52.7774140Z -- Performing Test C_HAS_AVX512_1 - Failed 2024-06-26T05:38:52.7776080Z -- Performing Test C_HAS_AVX512_2 2024-06-26T05:38:52.8719230Z -- Performing Test C_HAS_AVX512_2 - Failed 2024-06-26T05:38:52.8721130Z -- Performing Test C_HAS_AVX512_3 2024-06-26T05:38:52.9381170Z -- Performing Test C_HAS_AVX512_3 - Failed 2024-06-26T05:38:52.9383490Z -- Performing Test CXX_HAS_AVX_1 2024-06-26T05:38:53.0325600Z -- Performing Test CXX_HAS_AVX_1 - Failed 2024-06-26T05:38:53.0327430Z -- Performing Test CXX_HAS_AVX_2 2024-06-26T05:38:53.1283070Z -- Performing Test CXX_HAS_AVX_2 - Failed 2024-06-26T05:38:53.1284790Z -- Performing Test CXX_HAS_AVX_3 2024-06-26T05:38:53.1944020Z -- Performing Test CXX_HAS_AVX_3 - Failed 2024-06-26T05:38:53.1946610Z -- Performing Test CXX_HAS_AVX2_1 2024-06-26T05:38:53.2901190Z -- Performing Test CXX_HAS_AVX2_1 - Failed 2024-06-26T05:38:53.2903080Z -- Performing Test CXX_HAS_AVX2_2 2024-06-26T05:38:53.3843720Z -- Performing Test CXX_HAS_AVX2_2 - Failed 2024-06-26T05:38:53.3845820Z -- Performing Test CXX_HAS_AVX2_3 2024-06-26T05:38:53.4505850Z -- Performing Test CXX_HAS_AVX2_3 - Failed 2024-06-26T05:38:53.4508150Z -- Performing Test CXX_HAS_AVX512_1 2024-06-26T05:38:53.5457020Z -- Performing Test CXX_HAS_AVX512_1 - Failed 2024-06-26T05:38:53.5459020Z -- Performing Test CXX_HAS_AVX512_2 2024-06-26T05:38:53.6405220Z -- Performing Test CXX_HAS_AVX512_2 - Failed 2024-06-26T05:38:53.6407240Z -- Performing Test CXX_HAS_AVX512_3 2024-06-26T05:38:53.7069320Z -- Performing Test CXX_HAS_AVX512_3 - Failed 2024-06-26T05:38:53.7072700Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS 2024-06-26T05:38:53.8130260Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS - Failed 2024-06-26T05:38:53.8134790Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2024-06-26T05:38:53.9767570Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Success 2024-06-26T05:38:53.9771770Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2024-06-26T05:38:54.1477660Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Success 2024-06-26T05:38:54.1481800Z -- Performing Test COMPILER_SUPPORTS_RDYNAMIC 2024-06-26T05:38:54.3071160Z -- Performing Test COMPILER_SUPPORTS_RDYNAMIC - Success 2024-06-26T05:38:54.3150080Z CUDA_TOOLKIT_ROOT_DIR not found or specified 2024-06-26T05:38:55.8545530Z -- Could NOT find CUDA (missing: CUDA_TOOLKIT_ROOT_DIR CUDA_NVCC_EXECUTABLE CUDA_INCLUDE_DIRS CUDA_CUDART_LIBRARY) 2024-06-26T05:38:55.8549010Z CMake Warning at cmake/public/cuda.cmake:31 (message): 2024-06-26T05:38:55.8549500Z Caffe2: CUDA cannot be found. Depending on whether you are building Caffe2 2024-06-26T05:38:55.8550060Z or a Caffe2 dependent library, the next warning / error will give you more 2024-06-26T05:38:55.8550460Z info. 2024-06-26T05:38:55.8550640Z Call Stack (most recent call first): 2024-06-26T05:38:55.8550930Z cmake/Dependencies.cmake:43 (include) 2024-06-26T05:38:55.8551220Z CMakeLists.txt:853 (include) 2024-06-26T05:38:55.8551380Z 2024-06-26T05:38:55.8551380Z 2024-06-26T05:38:55.8551530Z CMake Warning at cmake/Dependencies.cmake:72 (message): 2024-06-26T05:38:55.8552050Z Not compiling with CUDA. Suppress this warning with -DUSE_CUDA=OFF. 2024-06-26T05:38:55.8552440Z Call Stack (most recent call first): 2024-06-26T05:38:55.8552710Z CMakeLists.txt:853 (include) 2024-06-26T05:38:55.8552870Z 2024-06-26T05:38:55.8552870Z 2024-06-26T05:38:55.8561620Z CMake Warning at cmake/Dependencies.cmake:90 (message): 2024-06-26T05:38:55.8562130Z Not compiling with XPU. Could NOT find SYCL.Suppress this warning with 2024-06-26T05:38:55.8562570Z -DUSE_XPU=OFF. 2024-06-26T05:38:55.8562790Z Call Stack (most recent call first): 2024-06-26T05:38:55.8563080Z CMakeLists.txt:853 (include) 2024-06-26T05:38:55.8563250Z 2024-06-26T05:38:55.8563260Z 2024-06-26T05:38:55.8563470Z -- Building using own protobuf under third_party per request. 2024-06-26T05:38:55.8563860Z -- Use custom protobuf build. 2024-06-26T05:38:55.8573450Z -- 2024-06-26T05:38:55.8573750Z -- 3.13.0.0 2024-06-26T05:38:55.8590050Z -- Looking for pthread.h 2024-06-26T05:38:56.0258970Z -- Looking for pthread.h - found 2024-06-26T05:38:56.0260570Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2024-06-26T05:38:56.1931820Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2024-06-26T05:38:56.1938830Z -- Found Threads: TRUE 2024-06-26T05:38:56.1942040Z -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS 2024-06-26T05:38:56.5127680Z -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS - Success 2024-06-26T05:38:56.5266270Z -- Caffe2 protobuf include directory: $$ 2024-06-26T05:38:56.5279050Z -- Trying to find preferred BLAS backend of choice: MKL 2024-06-26T05:38:56.5288470Z -- MKL_THREADING = OMP 2024-06-26T05:38:56.5298920Z -- Looking for sys/types.h 2024-06-26T05:38:56.6896340Z -- Looking for sys/types.h - found 2024-06-26T05:38:56.6902080Z -- Looking for stdint.h 2024-06-26T05:38:56.8932450Z -- Looking for stdint.h - found 2024-06-26T05:38:56.8941130Z -- Looking for stddef.h 2024-06-26T05:38:57.1247070Z -- Looking for stddef.h - found 2024-06-26T05:38:57.1247640Z -- Check size of void* 2024-06-26T05:38:57.2901940Z -- Check size of void* - done 2024-06-26T05:38:57.3001990Z -- MKL_THREADING = OMP 2024-06-26T05:38:57.3087800Z CMake Warning at cmake/Dependencies.cmake:199 (message): 2024-06-26T05:38:57.3088220Z MKL could not be found. Defaulting to Eigen 2024-06-26T05:38:57.3088550Z Call Stack (most recent call first): 2024-06-26T05:38:57.3088810Z CMakeLists.txt:853 (include) 2024-06-26T05:38:57.3088980Z 2024-06-26T05:38:57.3088980Z 2024-06-26T05:38:57.3089370Z CMake Warning at cmake/Dependencies.cmake:241 (message): 2024-06-26T05:38:57.3089850Z Preferred BLAS (MKL) cannot be found, now searching for a general BLAS 2024-06-26T05:38:57.3090220Z library 2024-06-26T05:38:57.3090400Z Call Stack (most recent call first): 2024-06-26T05:38:57.3090660Z CMakeLists.txt:853 (include) 2024-06-26T05:38:57.3090820Z 2024-06-26T05:38:57.3090820Z 2024-06-26T05:38:57.3101980Z -- MKL_THREADING = OMP 2024-06-26T05:38:57.3104430Z -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m] 2024-06-26T05:38:57.3109700Z -- Library mkl_intel_lp64: not found 2024-06-26T05:38:57.3110500Z -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m] 2024-06-26T05:38:57.3115850Z -- Library mkl_intel: not found 2024-06-26T05:38:57.3116630Z -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - guide - pthread - m] 2024-06-26T05:38:57.3121970Z -- Library mkl_intel_lp64: not found 2024-06-26T05:38:57.3122650Z -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - guide - pthread - m] 2024-06-26T05:38:57.3128000Z -- Library mkl_intel: not found 2024-06-26T05:38:57.3128660Z -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m] 2024-06-26T05:38:57.3133930Z -- Library mkl_intel_lp64: not found 2024-06-26T05:38:57.3134510Z -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m] 2024-06-26T05:38:57.3139740Z -- Library mkl_intel: not found 2024-06-26T05:38:57.3140270Z -- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m] 2024-06-26T05:38:57.3145630Z -- Library mkl_intel_lp64: not found 2024-06-26T05:38:57.3146080Z -- Checking for [mkl_intel - mkl_sequential - mkl_core - m] 2024-06-26T05:38:57.3151380Z -- Library mkl_intel: not found 2024-06-26T05:38:57.3151880Z -- Checking for [mkl_intel_lp64 - mkl_core - iomp5 - pthread - m] 2024-06-26T05:38:57.3157210Z -- Library mkl_intel_lp64: not found 2024-06-26T05:38:57.3157630Z -- Checking for [mkl_intel - mkl_core - iomp5 - pthread - m] 2024-06-26T05:38:57.3162880Z -- Library mkl_intel: not found 2024-06-26T05:38:57.3163420Z -- Checking for [mkl_intel_lp64 - mkl_core - guide - pthread - m] 2024-06-26T05:38:57.3168730Z -- Library mkl_intel_lp64: not found 2024-06-26T05:38:57.3169170Z -- Checking for [mkl_intel - mkl_core - guide - pthread - m] 2024-06-26T05:38:57.3174410Z -- Library mkl_intel: not found 2024-06-26T05:38:57.3174910Z -- Checking for [mkl_intel_lp64 - mkl_core - pthread - m] 2024-06-26T05:38:57.3180250Z -- Library mkl_intel_lp64: not found 2024-06-26T05:38:57.3180640Z -- Checking for [mkl_intel - mkl_core - pthread - m] 2024-06-26T05:38:57.3185960Z -- Library mkl_intel: not found 2024-06-26T05:38:57.3186360Z -- Checking for [mkl - guide - pthread - m] 2024-06-26T05:38:57.3191600Z -- Library mkl: not found 2024-06-26T05:38:57.3191850Z -- MKL library not found 2024-06-26T05:38:57.3192090Z -- Checking for [blis] 2024-06-26T05:38:57.3198260Z -- Library blis: BLAS_blis_LIBRARY-NOTFOUND 2024-06-26T05:38:57.3198580Z -- Checking for [Accelerate] 2024-06-26T05:38:57.3204360Z -- Library Accelerate: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework 2024-06-26T05:38:57.3204950Z -- Looking for sgemm_ 2024-06-26T05:38:57.4867770Z -- Looking for sgemm_ - found 2024-06-26T05:38:57.4870620Z -- Performing Test BLAS_F2C_DOUBLE_WORKS 2024-06-26T05:38:57.7208390Z -- Performing Test BLAS_F2C_DOUBLE_WORKS - Success 2024-06-26T05:38:57.7210460Z -- Performing Test BLAS_F2C_FLOAT_WORKS 2024-06-26T05:38:57.9505790Z -- Performing Test BLAS_F2C_FLOAT_WORKS - Failed 2024-06-26T05:38:57.9507050Z -- This BLAS uses the F2C return conventions 2024-06-26T05:38:57.9508930Z -- Performing Test BLAS_USE_CBLAS_DOT 2024-06-26T05:38:58.2004030Z -- Performing Test BLAS_USE_CBLAS_DOT - Success 2024-06-26T05:38:58.2006670Z -- Looking for sbgemm_ 2024-06-26T05:38:58.3648110Z -- Looking for sbgemm_ - not found 2024-06-26T05:38:58.3649200Z -- Found a library with BLAS API (accelerate). Full path: (/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework) 2024-06-26T05:38:58.3650200Z -- Using pocketfft in directory: /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/pocketfft/ 2024-06-26T05:38:58.4479000Z -- The ASM compiler identification is Clang with GNU-like command-line 2024-06-26T05:38:58.4514070Z -- Found assembler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang 2024-06-26T05:38:58.4616970Z -- Brace yourself, we are building NNPACK 2024-06-26T05:38:58.4647410Z -- NNPACK backend is neon 2024-06-26T05:38:58.5052810Z CMake Warning at cmake/Dependencies.cmake:712 (message): 2024-06-26T05:38:58.5055010Z A compiler with AVX512 support is required for FBGEMM. Not compiling with 2024-06-26T05:38:58.5056320Z FBGEMM. Turn this warning off by USE_FBGEMM=OFF. 2024-06-26T05:38:58.5057200Z Call Stack (most recent call first): 2024-06-26T05:38:58.5057940Z CMakeLists.txt:853 (include) 2024-06-26T05:38:58.5058390Z 2024-06-26T05:38:58.5058400Z 2024-06-26T05:38:58.5058820Z CMake Warning at cmake/Dependencies.cmake:757 (message): 2024-06-26T05:38:58.5059890Z Turning USE_FAKELOWP off as it depends on USE_FBGEMM. 2024-06-26T05:38:58.5060780Z Call Stack (most recent call first): 2024-06-26T05:38:58.5061520Z CMakeLists.txt:853 (include) 2024-06-26T05:38:58.5061970Z 2024-06-26T05:38:58.5061980Z 2024-06-26T05:38:58.5068150Z -- Using third party subdirectory Eigen. 2024-06-26T05:39:00.3719360Z -- Found Python: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/python (found version "3.9.12") found components: Interpreter Development NumPy Development.Module Development.Embed 2024-06-26T05:39:00.3720230Z -- Using third_party/pybind11. 2024-06-26T05:39:00.3720760Z -- pybind11 include dirs: /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2024-06-26T05:39:00.4409250Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2024-06-26T05:39:00.4409710Z -- Using third_party/opentelemetry-cpp. 2024-06-26T05:39:00.4410370Z -- opentelemetry api include dirs: /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2024-06-26T05:39:00.4429860Z -- MKL_THREADING = OMP 2024-06-26T05:39:00.4523090Z -- Check OMP with lib /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -v 2024-06-26T05:39:00.5262580Z CMake Warning at cmake/Modules/FindOpenMP.cmake:290 (message): 2024-06-26T05:39:00.5263130Z Detecting C OpenMP compiler ABI info compiled with the following output: 2024-06-26T05:39:00.5263460Z 2024-06-26T05:39:00.5263550Z Change Dir: 2024-06-26T05:39:00.5264010Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp 2024-06-26T05:39:00.5264520Z 2024-06-26T05:39:00.5264580Z 2024-06-26T05:39:00.5264680Z 2024-06-26T05:39:00.5264740Z Run Build 2024-06-26T05:39:00.5265140Z Command(s):/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/ninja 2024-06-26T05:39:00.5265600Z cmTC_82c84 && [1/2] Building C object 2024-06-26T05:39:00.5265910Z CMakeFiles/cmTC_82c84.dir/OpenMPTryFlag.c.o 2024-06-26T05:39:00.5266130Z 2024-06-26T05:39:00.5266270Z FAILED: CMakeFiles/cmTC_82c84.dir/OpenMPTryFlag.c.o 2024-06-26T05:39:00.5266520Z 2024-06-26T05:39:00.5266760Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang 2024-06-26T05:39:00.5267250Z -Xpreprocessor -fopenmp -v -arch arm64 -isysroot 2024-06-26T05:39:00.5267620Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2024-06-26T05:39:00.5267990Z -mmacosx-version-min=11.0 -std=gnu11 -MD -MT 2024-06-26T05:39:00.5268350Z CMakeFiles/cmTC_82c84.dir/OpenMPTryFlag.c.o -MF 2024-06-26T05:39:00.5268700Z CMakeFiles/cmTC_82c84.dir/OpenMPTryFlag.c.o.d -o 2024-06-26T05:39:00.5269060Z CMakeFiles/cmTC_82c84.dir/OpenMPTryFlag.c.o -c 2024-06-26T05:39:00.5269600Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2024-06-26T05:39:00.5269980Z 2024-06-26T05:39:00.5269990Z 2024-06-26T05:39:00.5270350Z Apple clang version 15.0.0 (clang-1500.3.9.4) 2024-06-26T05:39:00.5270570Z 2024-06-26T05:39:00.5270700Z Target: arm64-apple-darwin23.4.0 2024-06-26T05:39:00.5270880Z 2024-06-26T05:39:00.5270950Z Thread model: posix 2024-06-26T05:39:00.5271090Z 2024-06-26T05:39:00.5271250Z InstalledDir: /Library/Developer/CommandLineTools/usr/bin 2024-06-26T05:39:00.5271510Z 2024-06-26T05:39:00.5283670Z "/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_82c84.dir/OpenMPTryFlag.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_82c84.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 2024-06-26T05:39:00.5294850Z 2024-06-26T05:39:00.5295060Z clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target 2024-06-26T05:39:00.5295430Z arm64-apple-darwin23.4.0 2024-06-26T05:39:00.5295580Z 2024-06-26T05:39:00.5295710Z ignoring nonexistent directory "/usr/local/include" 2024-06-26T05:39:00.5295940Z 2024-06-26T05:39:00.5296020Z ignoring nonexistent directory 2024-06-26T05:39:00.5296390Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" 2024-06-26T05:39:00.5296700Z 2024-06-26T05:39:00.5296780Z ignoring nonexistent directory 2024-06-26T05:39:00.5297160Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" 2024-06-26T05:39:00.5297480Z 2024-06-26T05:39:00.5297750Z #include "..." search starts here: 2024-06-26T05:39:00.5297930Z 2024-06-26T05:39:00.5298010Z #include <...> search starts here: 2024-06-26T05:39:00.5298190Z 2024-06-26T05:39:00.5298370Z /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include 2024-06-26T05:39:00.5298840Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2024-06-26T05:39:00.5299230Z /Library/Developer/CommandLineTools/usr/include 2024-06-26T05:39:00.5299770Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) 2024-06-26T05:39:00.5300190Z 2024-06-26T05:39:00.5300270Z End of search list. 2024-06-26T05:39:00.5300390Z 2024-06-26T05:39:00.5300460Z 2024-06-26T05:39:00.5300900Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c:2:10: 2024-06-26T05:39:00.5301420Z fatal error: 'omp.h' file not found 2024-06-26T05:39:00.5301600Z 2024-06-26T05:39:00.5301670Z #include 2024-06-26T05:39:00.5301790Z 2024-06-26T05:39:00.5301860Z ^~~~~~~ 2024-06-26T05:39:00.5301970Z 2024-06-26T05:39:00.5302040Z 1 error generated. 2024-06-26T05:39:00.5302170Z 2024-06-26T05:39:00.5302270Z ninja: build stopped: subcommand failed. 2024-06-26T05:39:00.5302470Z 2024-06-26T05:39:00.5302520Z 2024-06-26T05:39:00.5302610Z 2024-06-26T05:39:00.5302690Z Call Stack (most recent call first): 2024-06-26T05:39:00.5303010Z cmake/Modules/FindOpenMP.cmake:506 (_OPENMP_GET_FLAGS) 2024-06-26T05:39:00.5303340Z cmake/Dependencies.cmake:949 (include) 2024-06-26T05:39:00.5303610Z CMakeLists.txt:853 (include) 2024-06-26T05:39:00.5303760Z 2024-06-26T05:39:00.5303760Z 2024-06-26T05:39:00.6756750Z -- MKL_THREADING = OMP 2024-06-26T05:39:00.6845350Z -- Check OMP with lib /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -I/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/include -v 2024-06-26T05:39:00.8461580Z -- MKL_THREADING = OMP 2024-06-26T05:39:00.8550180Z -- Check OMP with lib /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -v 2024-06-26T05:39:00.9291880Z CMake Warning at cmake/Modules/FindOpenMP.cmake:290 (message): 2024-06-26T05:39:00.9292430Z Detecting CXX OpenMP compiler ABI info compiled with the following output: 2024-06-26T05:39:00.9292800Z 2024-06-26T05:39:00.9292870Z Change Dir: 2024-06-26T05:39:00.9293340Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp 2024-06-26T05:39:00.9293660Z 2024-06-26T05:39:00.9293720Z 2024-06-26T05:39:00.9293810Z 2024-06-26T05:39:00.9293880Z Run Build 2024-06-26T05:39:00.9294270Z Command(s):/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/ninja 2024-06-26T05:39:00.9295050Z cmTC_fbaf2 && [1/2] Building CXX object 2024-06-26T05:39:00.9295370Z CMakeFiles/cmTC_fbaf2.dir/OpenMPTryFlag.cpp.o 2024-06-26T05:39:00.9295590Z 2024-06-26T05:39:00.9295730Z FAILED: CMakeFiles/cmTC_fbaf2.dir/OpenMPTryFlag.cpp.o 2024-06-26T05:39:00.9295970Z 2024-06-26T05:39:00.9296200Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang++ 2024-06-26T05:39:00.9296770Z -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Xpreprocessor -fopenmp -v 2024-06-26T05:39:00.9303860Z -arch arm64 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2024-06-26T05:39:00.9304310Z -mmacosx-version-min=11.0 -std=gnu++17 -MD -MT 2024-06-26T05:39:00.9304680Z CMakeFiles/cmTC_fbaf2.dir/OpenMPTryFlag.cpp.o -MF 2024-06-26T05:39:00.9305060Z CMakeFiles/cmTC_fbaf2.dir/OpenMPTryFlag.cpp.o.d -o 2024-06-26T05:39:00.9305440Z CMakeFiles/cmTC_fbaf2.dir/OpenMPTryFlag.cpp.o -c 2024-06-26T05:39:00.9306000Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2024-06-26T05:39:00.9306380Z 2024-06-26T05:39:00.9306390Z 2024-06-26T05:39:00.9306540Z Apple clang version 15.0.0 (clang-1500.3.9.4) 2024-06-26T05:39:00.9306780Z 2024-06-26T05:39:00.9306900Z Target: arm64-apple-darwin23.4.0 2024-06-26T05:39:00.9307280Z 2024-06-26T05:39:00.9307360Z Thread model: posix 2024-06-26T05:39:00.9307500Z 2024-06-26T05:39:00.9307660Z InstalledDir: /Library/Developer/CommandLineTools/usr/bin 2024-06-26T05:39:00.9307920Z 2024-06-26T05:39:00.9320580Z "/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_fbaf2.dir/OpenMPTryFlag.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_fbaf2.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 2024-06-26T05:39:00.9332660Z 2024-06-26T05:39:00.9332870Z clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target 2024-06-26T05:39:00.9333230Z arm64-apple-darwin23.4.0 2024-06-26T05:39:00.9333380Z 2024-06-26T05:39:00.9333520Z ignoring nonexistent directory "/usr/local/include" 2024-06-26T05:39:00.9333750Z 2024-06-26T05:39:00.9333830Z ignoring nonexistent directory 2024-06-26T05:39:00.9334210Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" 2024-06-26T05:39:00.9334520Z 2024-06-26T05:39:00.9334600Z ignoring nonexistent directory 2024-06-26T05:39:00.9334970Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" 2024-06-26T05:39:00.9335430Z 2024-06-26T05:39:00.9335520Z #include "..." search starts here: 2024-06-26T05:39:00.9335710Z 2024-06-26T05:39:00.9335790Z #include <...> search starts here: 2024-06-26T05:39:00.9335960Z 2024-06-26T05:39:00.9336160Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 2024-06-26T05:39:00.9336650Z /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include 2024-06-26T05:39:00.9337110Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2024-06-26T05:39:00.9337500Z /Library/Developer/CommandLineTools/usr/include 2024-06-26T05:39:00.9338020Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) 2024-06-26T05:39:00.9338440Z 2024-06-26T05:39:00.9338510Z End of search list. 2024-06-26T05:39:00.9338640Z 2024-06-26T05:39:00.9338700Z 2024-06-26T05:39:00.9339150Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp:2:10: 2024-06-26T05:39:00.9339680Z fatal error: 'omp.h' file not found 2024-06-26T05:39:00.9339860Z 2024-06-26T05:39:00.9339930Z #include 2024-06-26T05:39:00.9340050Z 2024-06-26T05:39:00.9340110Z ^~~~~~~ 2024-06-26T05:39:00.9340220Z 2024-06-26T05:39:00.9340300Z 1 error generated. 2024-06-26T05:39:00.9340420Z 2024-06-26T05:39:00.9340520Z ninja: build stopped: subcommand failed. 2024-06-26T05:39:00.9340720Z 2024-06-26T05:39:00.9340780Z 2024-06-26T05:39:00.9340860Z 2024-06-26T05:39:00.9340940Z Call Stack (most recent call first): 2024-06-26T05:39:00.9341260Z cmake/Modules/FindOpenMP.cmake:506 (_OPENMP_GET_FLAGS) 2024-06-26T05:39:00.9341590Z cmake/Dependencies.cmake:949 (include) 2024-06-26T05:39:00.9341860Z CMakeLists.txt:853 (include) 2024-06-26T05:39:00.9342020Z 2024-06-26T05:39:00.9342030Z 2024-06-26T05:39:01.0800200Z -- MKL_THREADING = OMP 2024-06-26T05:39:01.0887710Z -- Check OMP with lib /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -I/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/include -v 2024-06-26T05:39:01.4816780Z -- Found OpenMP_C: -Xpreprocessor -fopenmp -I/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/include 2024-06-26T05:39:01.6463310Z -- Found OpenMP_CXX: -Xpreprocessor -fopenmp -I/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/include 2024-06-26T05:39:01.6463980Z -- Found OpenMP: TRUE 2024-06-26T05:39:01.6464690Z -- Adding OpenMP CXX_FLAGS: -Xpreprocessor -fopenmp -I/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/include 2024-06-26T05:39:01.6465570Z -- Will link against OpenMP libraries: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib/libomp.dylib 2024-06-26T05:39:01.6651400Z -- Found PythonInterp: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/python (found version "3.9.12") 2024-06-26T05:39:01.6653420Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2024-06-26T05:39:01.6654540Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2024-06-26T05:39:01.6655620Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2024-06-26T05:39:01.8098510Z -- 2024-06-26T05:39:01.8098790Z -- ******** Summary ******** 2024-06-26T05:39:01.8099110Z -- CMake version : 3.22.1 2024-06-26T05:39:01.8099660Z -- CMake command : /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/cmake 2024-06-26T05:39:01.8100150Z -- System : Darwin 2024-06-26T05:39:01.8100690Z -- C++ compiler : /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang++ 2024-06-26T05:39:01.8101240Z -- C++ compiler version : 15.0.0.15000309 2024-06-26T05:39:01.8102000Z -- CXX flags : -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Wnon-virtual-dtor 2024-06-26T05:39:01.8102490Z -- Build type : Release 2024-06-26T05:39:01.8102940Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1;__STDC_FORMAT_MACROS 2024-06-26T05:39:01.8103630Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib/python3.9/site-packages 2024-06-26T05:39:01.8104310Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2024-06-26T05:39:01.8105190Z -- CMAKE_MODULE_PATH : /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/Modules;/Users/ec2-user/runner/_work/pytorch/pytorch/cmake/public/../Modules_CUDA_fix 2024-06-26T05:39:01.8105860Z -- 2024-06-26T05:39:01.8106070Z -- ONNX version : 1.16.0 2024-06-26T05:39:01.8106400Z -- ONNX NAMESPACE : onnx_torch 2024-06-26T05:39:01.8106740Z -- ONNX_USE_LITE_PROTO : OFF 2024-06-26T05:39:01.8107070Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2024-06-26T05:39:01.8107400Z -- Protobuf_USE_STATIC_LIBS : ON 2024-06-26T05:39:01.8107720Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2024-06-26T05:39:01.8108050Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2024-06-26T05:39:01.8108370Z -- ONNX_WERROR : OFF 2024-06-26T05:39:01.8108670Z -- ONNX_BUILD_TESTS : OFF 2024-06-26T05:39:01.8108990Z -- ONNX_BUILD_BENCHMARKS : OFF 2024-06-26T05:39:01.8109290Z -- ONNX_BUILD_SHARED_LIBS : 2024-06-26T05:39:01.8109600Z -- BUILD_SHARED_LIBS : OFF 2024-06-26T05:39:01.8109860Z -- 2024-06-26T05:39:01.8110070Z -- Protobuf compiler : 2024-06-26T05:39:01.8110380Z -- Protobuf includes : 2024-06-26T05:39:01.8117190Z -- Protobuf libraries : 2024-06-26T05:39:01.8117510Z -- BUILD_ONNX_PYTHON : OFF 2024-06-26T05:39:01.8117870Z CMake Warning at cmake/Dependencies.cmake:1407 (message): 2024-06-26T05:39:01.8118370Z Not compiling with MAGMA. Suppress this warning with -DUSE_MAGMA=OFF. 2024-06-26T05:39:01.8118760Z Call Stack (most recent call first): 2024-06-26T05:39:01.8119030Z CMakeLists.txt:853 (include) 2024-06-26T05:39:01.8119190Z 2024-06-26T05:39:01.8119190Z 2024-06-26T05:39:01.8119260Z -- 2024-06-26T05:39:01.8119450Z -- ******** Summary ******** 2024-06-26T05:39:01.8119710Z -- CMake version : 3.22.1 2024-06-26T05:39:01.8120190Z -- CMake command : /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/cmake 2024-06-26T05:39:01.8120630Z -- System : Darwin 2024-06-26T05:39:01.8121140Z -- C++ compiler : /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang++ 2024-06-26T05:39:01.8121770Z -- C++ compiler version : 15.0.0.15000309 2024-06-26T05:39:01.8122240Z -- CXX flags : -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Wnon-virtual-dtor 2024-06-26T05:39:01.8122670Z -- Build type : Release 2024-06-26T05:39:01.8123010Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 2024-06-26T05:39:01.8123630Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib/python3.9/site-packages 2024-06-26T05:39:01.8124270Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2024-06-26T05:39:01.8125120Z -- CMAKE_MODULE_PATH : /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/Modules;/Users/ec2-user/runner/_work/pytorch/pytorch/cmake/public/../Modules_CUDA_fix 2024-06-26T05:39:01.8125780Z -- 2024-06-26T05:39:01.8125970Z -- ONNX version : 1.4.1 2024-06-26T05:39:01.8126240Z -- ONNX NAMESPACE : onnx_torch 2024-06-26T05:39:01.8126530Z -- ONNX_BUILD_TESTS : OFF 2024-06-26T05:39:01.8126780Z -- ONNX_BUILD_BENCHMARKS : OFF 2024-06-26T05:39:01.8127040Z -- ONNX_USE_LITE_PROTO : OFF 2024-06-26T05:39:01.8127290Z -- ONNXIFI_DUMMY_BACKEND : 2024-06-26T05:39:01.8127510Z -- 2024-06-26T05:39:01.8127770Z -- Protobuf compiler : 2024-06-26T05:39:01.8128030Z -- Protobuf includes : 2024-06-26T05:39:01.8128280Z -- Protobuf libraries : 2024-06-26T05:39:01.8128520Z -- BUILD_ONNX_PYTHON : OFF 2024-06-26T05:39:01.8128910Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2024-06-26T05:39:01.8129310Z -- Adding -DNDEBUG to compile flags 2024-06-26T05:39:01.8153490Z -- No OMAP3 processor on this machine. 2024-06-26T05:39:01.8153830Z -- No OMAP4 processor on this machine. 2024-06-26T05:39:01.8154160Z -- Neon found with compiler flag : -D__NEON__ 2024-06-26T05:39:01.8162390Z -- Looking for cheev_ 2024-06-26T05:39:01.9855030Z -- Looking for cheev_ - found 2024-06-26T05:39:01.9855660Z -- Found a library with LAPACK API (accelerate). 2024-06-26T05:39:01.9856060Z disabling CUDA because NOT USE_CUDA is set 2024-06-26T05:39:01.9856380Z disabling ROCM because NOT USE_ROCM is set 2024-06-26T05:39:01.9856700Z disabling MKLDNN because USE_MKLDNN is not set 2024-06-26T05:39:01.9857100Z -- MIOpen not found. Compiling without MIOpen support 2024-06-26T05:39:01.9857440Z -- Looking for mmap 2024-06-26T05:39:02.1338580Z -- Looking for mmap - found 2024-06-26T05:39:02.1339030Z -- Looking for shm_open 2024-06-26T05:39:02.3028790Z -- Looking for shm_open - found 2024-06-26T05:39:02.3029280Z -- Looking for shm_unlink 2024-06-26T05:39:02.4998720Z -- Looking for shm_unlink - found 2024-06-26T05:39:02.4999220Z -- Looking for malloc_usable_size 2024-06-26T05:39:02.6612480Z -- Looking for malloc_usable_size - not found 2024-06-26T05:39:02.6637460Z -- Version: 10.2.1 2024-06-26T05:39:02.6637700Z -- Build type: Release 2024-06-26T05:39:02.6643470Z -- Performing Test HAS_NULLPTR_WARNING 2024-06-26T05:39:02.8073390Z -- Performing Test HAS_NULLPTR_WARNING - Success 2024-06-26T05:39:02.8115770Z -- Using CPU-only version of Kineto 2024-06-26T05:39:02.8116080Z -- Configuring Kineto dependency: 2024-06-26T05:39:02.8116610Z -- KINETO_SOURCE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2024-06-26T05:39:02.8117110Z -- KINETO_BUILD_TESTS = OFF 2024-06-26T05:39:02.8117370Z -- KINETO_LIBRARY_TYPE = static 2024-06-26T05:39:02.8295580Z INFO CUDA_SOURCE_DIR = 2024-06-26T05:39:02.8295840Z INFO ROCM_SOURCE_DIR = 2024-06-26T05:39:02.8448580Z INFO CUPTI unavailable or disabled - not building GPU profilers 2024-06-26T05:39:02.8758850Z INFO CUPTI_INCLUDE_DIR = /extras/CUPTI/include 2024-06-26T05:39:02.8759230Z INFO ROCTRACER_INCLUDE_DIR = /include/roctracer 2024-06-26T05:39:02.8759990Z INFO DYNOLOG_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2024-06-26T05:39:02.8760750Z -- Kineto: FMT_SOURCE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fmt 2024-06-26T05:39:02.8761640Z -- Kineto: FMT_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fmt/include 2024-06-26T05:39:02.8762560Z INFO IPCFABRIC_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2024-06-26T05:39:02.8766040Z -- Configured Kineto (CPU) 2024-06-26T05:39:02.8769800Z -- Running on macOS with Apple silicon 2024-06-26T05:39:02.8780100Z -- Performing Test HAS_WERROR_RETURN_TYPE 2024-06-26T05:39:03.0377950Z -- Performing Test HAS_WERROR_RETURN_TYPE - Success 2024-06-26T05:39:03.0382640Z -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR 2024-06-26T05:39:03.2026290Z -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR - Success 2024-06-26T05:39:03.2030860Z -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT 2024-06-26T05:39:03.3470830Z -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT - Success 2024-06-26T05:39:03.3475390Z -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT 2024-06-26T05:39:03.5135750Z -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT - Success 2024-06-26T05:39:03.5140450Z -- Performing Test HAS_WERROR_BOOL_OPERATION 2024-06-26T05:39:03.6910410Z -- Performing Test HAS_WERROR_BOOL_OPERATION - Success 2024-06-26T05:39:03.6910850Z -- Performing Test HAS_WNARROWING 2024-06-26T05:39:03.8490310Z -- Performing Test HAS_WNARROWING - Success 2024-06-26T05:39:03.8495060Z -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS 2024-06-26T05:39:03.9887960Z -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS - Success 2024-06-26T05:39:03.9892760Z -- Performing Test HAS_WNO_TYPE_LIMITS 2024-06-26T05:39:04.1561220Z -- Performing Test HAS_WNO_TYPE_LIMITS - Success 2024-06-26T05:39:04.1566310Z -- Performing Test HAS_WNO_ARRAY_BOUNDS 2024-06-26T05:39:04.3173820Z -- Performing Test HAS_WNO_ARRAY_BOUNDS - Success 2024-06-26T05:39:04.3178430Z -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS 2024-06-26T05:39:04.4868790Z -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS - Success 2024-06-26T05:39:04.4873340Z -- Performing Test HAS_WNO_UNUSED_PARAMETER 2024-06-26T05:39:04.6337560Z -- Performing Test HAS_WNO_UNUSED_PARAMETER - Success 2024-06-26T05:39:04.6342040Z -- Performing Test HAS_WNO_UNUSED_FUNCTION 2024-06-26T05:39:04.7802620Z -- Performing Test HAS_WNO_UNUSED_FUNCTION - Success 2024-06-26T05:39:04.7807280Z -- Performing Test HAS_WNO_UNUSED_RESULT 2024-06-26T05:39:04.9168860Z -- Performing Test HAS_WNO_UNUSED_RESULT - Success 2024-06-26T05:39:04.9173890Z -- Performing Test HAS_WNO_STRICT_OVERFLOW 2024-06-26T05:39:05.0560800Z -- Performing Test HAS_WNO_STRICT_OVERFLOW - Success 2024-06-26T05:39:05.0565480Z -- Performing Test HAS_WNO_STRICT_ALIASING 2024-06-26T05:39:05.2303430Z -- Performing Test HAS_WNO_STRICT_ALIASING - Success 2024-06-26T05:39:05.2308080Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2024-06-26T05:39:05.3634190Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2024-06-26T05:39:05.3638780Z -- Performing Test HAS_WVLA_EXTENSION 2024-06-26T05:39:05.5383250Z -- Performing Test HAS_WVLA_EXTENSION - Success 2024-06-26T05:39:05.5387910Z -- Performing Test HAS_WSUGGEST_OVERRIDE 2024-06-26T05:39:05.7392970Z -- Performing Test HAS_WSUGGEST_OVERRIDE - Success 2024-06-26T05:39:05.7397620Z -- Performing Test HAS_WNEWLINE_EOF 2024-06-26T05:39:05.8898120Z -- Performing Test HAS_WNEWLINE_EOF - Success 2024-06-26T05:39:05.8902990Z -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE 2024-06-26T05:39:06.0578520Z -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE - Success 2024-06-26T05:39:06.0583140Z -- Performing Test HAS_WINCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE 2024-06-26T05:39:06.2262250Z -- Performing Test HAS_WINCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE - Success 2024-06-26T05:39:06.2266740Z -- Performing Test HAS_WNO_ERROR_PEDANTIC 2024-06-26T05:39:06.3846450Z -- Performing Test HAS_WNO_ERROR_PEDANTIC - Success 2024-06-26T05:39:06.3850950Z -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST 2024-06-26T05:39:06.6140100Z -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST - Success 2024-06-26T05:39:06.6144880Z -- Performing Test HAS_WNO_ERROR_INCONSISTENT_MISSING_OVERRIDE 2024-06-26T05:39:06.7606520Z -- Performing Test HAS_WNO_ERROR_INCONSISTENT_MISSING_OVERRIDE - Success 2024-06-26T05:39:06.7611470Z -- Performing Test HAS_WNO_ERROR_INCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE 2024-06-26T05:39:06.9133110Z -- Performing Test HAS_WNO_ERROR_INCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE - Success 2024-06-26T05:39:06.9137700Z -- Performing Test HAS_WCONSTANT_CONVERSION 2024-06-26T05:39:07.0496890Z -- Performing Test HAS_WCONSTANT_CONVERSION - Success 2024-06-26T05:39:07.0501530Z -- Performing Test HAS_WNO_INVALID_PARTIAL_SPECIALIZATION 2024-06-26T05:39:07.1910500Z -- Performing Test HAS_WNO_INVALID_PARTIAL_SPECIALIZATION - Success 2024-06-26T05:39:07.1915040Z -- Performing Test HAS_WNO_ALIGNED_ALLOCATION_UNAVAILABLE 2024-06-26T05:39:07.3409830Z -- Performing Test HAS_WNO_ALIGNED_ALLOCATION_UNAVAILABLE - Failed 2024-06-26T05:39:07.3414430Z -- Performing Test HAS_WNO_MISSING_BRACES 2024-06-26T05:39:07.4744570Z -- Performing Test HAS_WNO_MISSING_BRACES - Success 2024-06-26T05:39:07.4749260Z -- Performing Test HAS_QUNUSED_ARGUMENTS 2024-06-26T05:39:07.6438660Z -- Performing Test HAS_QUNUSED_ARGUMENTS - Success 2024-06-26T05:39:07.6443440Z -- Performing Test HAS_FCOLOR_DIAGNOSTICS 2024-06-26T05:39:07.8110270Z -- Performing Test HAS_FCOLOR_DIAGNOSTICS - Success 2024-06-26T05:39:07.8114550Z -- Performing Test HAS_FALIGNED_NEW 2024-06-26T05:39:07.9579980Z -- Performing Test HAS_FALIGNED_NEW - Success 2024-06-26T05:39:07.9584430Z -- Performing Test HAS_WERROR 2024-06-26T05:39:08.1009060Z -- Performing Test HAS_WERROR - Success 2024-06-26T05:39:08.1013710Z -- Performing Test HAS_WNO_UNUSED_BUT_SET_VARIABLE 2024-06-26T05:39:08.2420220Z -- Performing Test HAS_WNO_UNUSED_BUT_SET_VARIABLE - Success 2024-06-26T05:39:08.2425170Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED 2024-06-26T05:39:08.3150210Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED - Failed 2024-06-26T05:39:08.3155450Z -- Performing Test HAS_FSTANDALONE_DEBUG 2024-06-26T05:39:08.4648660Z -- Performing Test HAS_FSTANDALONE_DEBUG - Success 2024-06-26T05:39:08.4653350Z -- Performing Test HAS_FNO_MATH_ERRNO 2024-06-26T05:39:08.6361390Z -- Performing Test HAS_FNO_MATH_ERRNO - Success 2024-06-26T05:39:08.6365760Z -- Performing Test HAS_FNO_TRAPPING_MATH 2024-06-26T05:39:08.7757950Z -- Performing Test HAS_FNO_TRAPPING_MATH - Success 2024-06-26T05:39:08.7762600Z -- Performing Test HAS_WERROR_FORMAT 2024-06-26T05:39:08.9239760Z -- Performing Test HAS_WERROR_FORMAT - Success 2024-06-26T05:39:08.9244750Z -- Performing Test HAS_WNO_UNGUARDED_AVAILABILITY_NEW 2024-06-26T05:39:09.0829250Z -- Performing Test HAS_WNO_UNGUARDED_AVAILABILITY_NEW - Success 2024-06-26T05:39:09.0833800Z -- Performing Test HAS_WNO_UNUSED_PRIVATE_FIELD 2024-06-26T05:39:09.2291940Z -- Performing Test HAS_WNO_UNUSED_PRIVATE_FIELD - Success 2024-06-26T05:39:09.2406360Z -- Performing Test HAS_WDEPRECATED 2024-06-26T05:39:09.4007040Z -- Performing Test HAS_WDEPRECATED - Success 2024-06-26T05:39:09.4007550Z -- don't use NUMA 2024-06-26T05:39:09.4036100Z -- Looking for backtrace 2024-06-26T05:39:09.5485130Z -- Looking for backtrace - found 2024-06-26T05:39:09.5485710Z -- backtrace facility detected in default set of libraries 2024-06-26T05:39:09.5487450Z -- Found Backtrace: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2024-06-26T05:39:11.4890000Z -- headers outputs: 2024-06-26T05:39:15.8137050Z -- sources outputs: 2024-06-26T05:39:16.5557340Z -- declarations_yaml outputs: 2024-06-26T05:39:16.6326210Z -- Using ATen parallel backend: OMP 2024-06-26T05:39:16.6330460Z disabling CUDA because USE_CUDA is set false 2024-06-26T05:39:17.2521490Z -- Found OpenSSL: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib/libcrypto.dylib (found version "1.1.1w") 2024-06-26T05:39:17.2546620Z -- Check size of long double 2024-06-26T05:39:17.4790000Z -- Check size of long double - done 2024-06-26T05:39:17.4792140Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2024-06-26T05:39:17.5839900Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2024-06-26T05:39:17.5856750Z -- Found OpenMP_C: -Xpreprocessor -fopenmp -I/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/include (found version "5.0") 2024-06-26T05:39:17.5858690Z -- Found OpenMP_CXX: -Xpreprocessor -fopenmp -I/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/include (found version "5.0") 2024-06-26T05:39:17.5859610Z -- Found OpenMP: TRUE (found version "5.0") 2024-06-26T05:39:17.5861610Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2024-06-26T05:39:17.7323250Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Failed 2024-06-26T05:39:17.7324980Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2024-06-26T05:39:17.8706980Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2024-06-26T05:39:17.8708730Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2024-06-26T05:39:17.9712640Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2024-06-26T05:39:17.9714920Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2024-06-26T05:39:18.1230520Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Success 2024-06-26T05:39:18.1232310Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2024-06-26T05:39:18.2052800Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2024-06-26T05:39:18.2182490Z Target system: Darwin-23.4.0 2024-06-26T05:39:18.2182780Z Target processor: arm64 2024-06-26T05:39:18.2183070Z -- Configuring build for SLEEF-v3.6.0 2024-06-26T05:39:18.2183390Z Host system: Darwin-23.4.0 2024-06-26T05:39:18.2183630Z Host processor: arm64 2024-06-26T05:39:18.2184130Z Detected C compiler: AppleClang @ /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang 2024-06-26T05:39:18.2184650Z CMake: 3.22.1 2024-06-26T05:39:18.2185060Z Make program: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/ninja 2024-06-26T05:39:18.2185970Z -- Using option `-Wall -Wno-unused-function -Wno-attributes -Wno-unused-result -ffp-contract=off -fno-math-errno -fno-trapping-math` to compile libsleef 2024-06-26T05:39:18.2186640Z -- Building shared libs : OFF 2024-06-26T05:39:18.2186890Z -- Building static test bins: OFF 2024-06-26T05:39:18.2187160Z -- MPFR : LIB_MPFR-NOTFOUND 2024-06-26T05:39:18.2187390Z -- GMP : LIBGMP-NOTFOUND 2024-06-26T05:39:18.2187600Z -- RT : 2024-06-26T05:39:18.2187790Z -- FFTW3 : LIBFFTW3-NOTFOUND 2024-06-26T05:39:18.2188030Z -- OPENSSL : 1.1.1w 2024-06-26T05:39:18.2188240Z -- SDE : SDE_COMMAND-NOTFOUND 2024-06-26T05:39:18.2188490Z -- COMPILER_SUPPORTS_OPENMP : 2024-06-26T05:39:18.2256590Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2024-06-26T05:39:18.2257200Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2024-06-26T05:39:18.2258040Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2024-06-26T05:39:18.2258830Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2024-06-26T05:39:18.3524850Z -- Performing Test HAS_WMISSING_PROTOTYPES 2024-06-26T05:39:18.5033660Z -- Performing Test HAS_WMISSING_PROTOTYPES - Success 2024-06-26T05:39:18.5038640Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2024-06-26T05:39:18.6572190Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Success 2024-06-26T05:39:18.7446100Z -- The OBJC compiler identification is AppleClang 15.0.0.15000309 2024-06-26T05:39:18.8141420Z -- The OBJCXX compiler identification is AppleClang 15.0.0.15000309 2024-06-26T05:39:18.8202630Z -- Detecting OBJC compiler ABI info 2024-06-26T05:39:18.9627430Z -- Detecting OBJC compiler ABI info - done 2024-06-26T05:39:18.9657000Z -- Check for working OBJC compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang - skipped 2024-06-26T05:39:18.9708460Z -- Detecting OBJCXX compiler ABI info 2024-06-26T05:39:19.1193300Z -- Detecting OBJCXX compiler ABI info - done 2024-06-26T05:39:19.1223260Z -- Check for working OBJCXX compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang++ - skipped 2024-06-26T05:39:19.1607950Z -- _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 2024-06-26T05:39:19.1609460Z -- Toolchain using default OSX SDK: /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk 2024-06-26T05:39:19.1610850Z -- 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 2024-06-26T05:39:19.1646130Z -- Using /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib/python3.9/site-packages as python relative installation path 2024-06-26T05:39:19.1657940Z CMake Warning at CMakeLists.txt:1282 (message): 2024-06-26T05:39:19.1658400Z Generated cmake files are only fully tested if one builds with system glog, 2024-06-26T05:39:19.1658930Z gflags, and protobuf. Other settings may generate files that are not well 2024-06-26T05:39:19.1659310Z tested. 2024-06-26T05:39:19.1659410Z 2024-06-26T05:39:19.1659410Z 2024-06-26T05:39:19.1672070Z -- 2024-06-26T05:39:19.1672290Z -- ******** Summary ******** 2024-06-26T05:39:19.1672520Z -- General: 2024-06-26T05:39:19.1672730Z -- CMake version : 3.22.1 2024-06-26T05:39:19.1673220Z -- CMake command : /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/cmake 2024-06-26T05:39:19.1681270Z -- System : Darwin 2024-06-26T05:39:19.1681830Z -- C++ compiler : /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang++ 2024-06-26T05:39:19.1682340Z -- C++ compiler id : AppleClang 2024-06-26T05:39:19.1682650Z -- C++ compiler version : 15.0.0.15000309 2024-06-26T05:39:19.1682950Z -- Using ccache if found : ON 2024-06-26T05:39:19.1683280Z -- Found ccache : CCACHE_PROGRAM-NOTFOUND 2024-06-26T05:39:19.1687940Z -- CXX flags : -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -DNDEBUG -DUSE_KINETO -DLIBKINETO_NOCUPTI -DLIBKINETO_NOROCTRACER -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-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wno-unused-parameter -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wvla-extension -Wsuggest-override -Wnewline-eof -Winconsistent-missing-override -Winconsistent-missing-destructor-override -Wno-pass-failed -Wno-error=pedantic -Wno-error=old-style-cast -Wno-error=inconsistent-missing-override -Wno-error=inconsistent-missing-destructor-override -Wconstant-conversion -Wno-invalid-partial-specialization -Wno-missing-braces -Qunused-arguments -fcolor-diagnostics -faligned-new -Werror -Wno-unused-but-set-variable -fno-math-errno -fno-trapping-math -Werror=format -DUSE_MPS -Wno-unused-private-field -Wno-missing-braces 2024-06-26T05:39:19.1692740Z -- Shared LD flags : -rdynamic -weak_framework Foundation -weak_framework MetalPerformanceShaders -weak_framework MetalPerformanceShadersGraph -weak_framework Metal 2024-06-26T05:39:19.1693430Z -- Static LD flags : 2024-06-26T05:39:19.1693680Z -- Module LD flags : 2024-06-26T05:39:19.1693930Z -- Build type : Release 2024-06-26T05:39:19.1694950Z -- 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 2024-06-26T05:39:19.1696160Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib/python3.9/site-packages 2024-06-26T05:39:19.1696980Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2024-06-26T05:39:19.1697360Z -- USE_GOLD_LINKER : OFF 2024-06-26T05:39:19.1697600Z -- 2024-06-26T05:39:19.1697780Z -- TORCH_VERSION : 2.5.0 2024-06-26T05:39:19.1698060Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2024-06-26T05:39:19.1698330Z -- BUILD_BINARY : OFF 2024-06-26T05:39:19.1698580Z -- BUILD_CUSTOM_PROTOBUF : ON 2024-06-26T05:39:19.1698840Z -- Link local protobuf : ON 2024-06-26T05:39:19.1699080Z -- BUILD_DOCS : OFF 2024-06-26T05:39:19.1699340Z -- BUILD_PYTHON : True 2024-06-26T05:39:19.1699600Z -- Python version : 3.9.12 2024-06-26T05:39:19.1700090Z -- Python executable : /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/python 2024-06-26T05:39:19.1700810Z -- Python library : /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib/libpython3.9.dylib 2024-06-26T05:39:19.1701520Z -- Python includes : /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/include/python3.9 2024-06-26T05:39:19.1702360Z -- Python site-package : /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib/python3.9/site-packages 2024-06-26T05:39:19.1702880Z -- BUILD_SHARED_LIBS : ON 2024-06-26T05:39:19.1703160Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2024-06-26T05:39:19.1703450Z -- BUILD_TEST : False 2024-06-26T05:39:19.1703700Z -- BUILD_JNI : OFF 2024-06-26T05:39:19.1703950Z -- BUILD_MOBILE_AUTOGRAD : OFF 2024-06-26T05:39:19.1704200Z -- BUILD_LITE_INTERPRETER: OFF 2024-06-26T05:39:19.1704450Z -- CROSS_COMPILING_MACOSX : 2024-06-26T05:39:19.1704690Z -- INTERN_BUILD_MOBILE : 2024-06-26T05:39:19.1704930Z -- TRACING_BASED : OFF 2024-06-26T05:39:19.1705180Z -- USE_BLAS : 1 2024-06-26T05:39:19.1705440Z -- BLAS : accelerate 2024-06-26T05:39:19.1705730Z -- BLAS_HAS_SBGEMM : 2024-06-26T05:39:19.1705960Z -- USE_LAPACK : 1 2024-06-26T05:39:19.1706210Z -- LAPACK : accelerate 2024-06-26T05:39:19.1706470Z -- USE_ASAN : OFF 2024-06-26T05:39:19.1706710Z -- USE_TSAN : OFF 2024-06-26T05:39:19.1706960Z -- USE_CPP_CODE_COVERAGE : OFF 2024-06-26T05:39:19.1707210Z -- USE_CUDA : OFF 2024-06-26T05:39:19.1707440Z -- USE_XPU : OFF 2024-06-26T05:39:19.1707670Z -- USE_ROCM : OFF 2024-06-26T05:39:19.1707910Z -- BUILD_NVFUSER : 2024-06-26T05:39:19.1708140Z -- USE_EIGEN_FOR_BLAS : ON 2024-06-26T05:39:19.1708390Z -- USE_FBGEMM : OFF 2024-06-26T05:39:19.1708640Z -- USE_FAKELOWP : OFF 2024-06-26T05:39:19.1708890Z -- USE_KINETO : ON 2024-06-26T05:39:19.1709130Z -- USE_GFLAGS : OFF 2024-06-26T05:39:19.1709360Z -- USE_GLOG : OFF 2024-06-26T05:39:19.1709600Z -- USE_LITE_PROTO : OFF 2024-06-26T05:39:19.1709850Z -- USE_PYTORCH_METAL : 1 2024-06-26T05:39:19.1710110Z -- USE_PYTORCH_METAL_EXPORT : OFF 2024-06-26T05:39:19.1710390Z -- USE_MPS : ON 2024-06-26T05:39:19.1710640Z -- USE_MKL : OFF 2024-06-26T05:39:19.1710880Z -- USE_MKLDNN : OFF 2024-06-26T05:39:19.1711110Z -- USE_UCC : OFF 2024-06-26T05:39:19.1711350Z -- USE_ITT : OFF 2024-06-26T05:39:19.1711590Z -- USE_NCCL : OFF 2024-06-26T05:39:19.1711820Z -- USE_NNPACK : ON 2024-06-26T05:39:19.1712060Z -- USE_NUMPY : ON 2024-06-26T05:39:19.1712300Z -- USE_OBSERVERS : ON 2024-06-26T05:39:19.1712540Z -- USE_OPENCL : OFF 2024-06-26T05:39:19.1712780Z -- USE_OPENMP : 1 2024-06-26T05:39:19.1713010Z -- USE_MIMALLOC : OFF 2024-06-26T05:39:19.1713250Z -- USE_VULKAN : OFF 2024-06-26T05:39:19.1713480Z -- USE_PROF : OFF 2024-06-26T05:39:19.1713810Z -- USE_PYTORCH_QNNPACK : ON 2024-06-26T05:39:19.1714060Z -- USE_XNNPACK : ON 2024-06-26T05:39:19.1714300Z -- USE_DISTRIBUTED : 0 2024-06-26T05:39:19.1714560Z -- Public Dependencies : 2024-06-26T05:39:19.1715320Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;pytorch_qnnpack;nnpack;XNNPACK;fp16;caffe2::openmp;foxi_loader;fmt::fmt-header-only;kineto 2024-06-26T05:39:19.1715960Z -- Public CUDA Deps. : 2024-06-26T05:39:19.1716190Z -- Private CUDA Deps. : 2024-06-26T05:39:19.1716440Z -- USE_COREML_DELEGATE : OFF 2024-06-26T05:39:19.1716700Z -- BUILD_LAZY_TS_BACKEND : ON 2024-06-26T05:39:19.1716960Z -- USE_ROCM_KERNEL_ASSERT : OFF 2024-06-26T05:39:19.1734250Z -- Configuring done 2024-06-26T05:39:20.0545800Z -- Generating done 2024-06-26T05:39:20.1657300Z CMake Warning: 2024-06-26T05:39:20.1657780Z Manually-specified variables were not used by the project: 2024-06-26T05:39:20.1658060Z 2024-06-26T05:39:20.1658130Z BUILD_ENVIRONMENT 2024-06-26T05:39:20.1658350Z CMAKE_EXEC 2024-06-26T05:39:20.1658450Z 2024-06-26T05:39:20.1658460Z 2024-06-26T05:39:20.1681490Z -- Build files have been written to: /Users/ec2-user/runner/_work/pytorch/pytorch/build 2024-06-26T05:39:23.3428590Z [1/4] Generating ATen declarations_yaml 2024-06-26T05:39:26.2469620Z [2/4] Generating ATen headers 2024-06-26T05:39:26.9050200Z [3/4] Generating ATen sources 2024-06-26T05:39:27.0937450Z [1/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/u32-sqrt-scalar-bitmanip.c.o 2024-06-26T05:39:27.1077210Z [2/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr2-lut64-p3h1ts-div.c.o 2024-06-26T05:39:27.1079190Z [3/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/u32-sqrt-scalar-clz-binsearch.c.o 2024-06-26T05:39:27.1111740Z [4/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/u32-sqrt-scalar-cvti32-sqrt-lrint.c.o 2024-06-26T05:39:27.1198270Z [5/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/u32-sqrt-scalar-tflm.c.o 2024-06-26T05:39:27.1219960Z [6/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr2-p6h4ts-div.c.o 2024-06-26T05:39:27.1226280Z [7/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr2-p6h5ps-div.c.o 2024-06-26T05:39:27.1235040Z [8/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/u32-sqrt-scalar-clz-newton.c.o 2024-06-26T05:39:27.1236810Z [9/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/u32-sqrt-scalar-cvti64-sqrt-lrint.c.o 2024-06-26T05:39:27.1303920Z [10/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr2-p6h5ts-div.c.o 2024-06-26T05:39:27.1988370Z [11/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/u32-sqrt-scalar-cvti64-sqrtf-lrintf.c.o 2024-06-26T05:39:27.2195560Z [12/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/u64-sqrt-scalar-cvtu32-sqrt-cvtsatu32f64.c.o 2024-06-26T05:39:27.2220690Z [13/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/u32-sqrt-scalar-cvtu32-sqrtf-lrintf.c.o 2024-06-26T05:39:27.2316500Z [14/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/u32-sqrt-scalar-hashemian.c.o 2024-06-26T05:39:27.2344950Z [15/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/u32-sqrt-scalar-cvtu32-sqrt-lrint.c.o 2024-06-26T05:39:27.2356660Z [16/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/u64-sqrt-scalar-cvtu32-sqrt-llrint.c.o 2024-06-26T05:39:27.2499790Z [17/5905] 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 2024-06-26T05:39:27.2619450Z [18/5905] 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 2024-06-26T05:39:27.2625490Z [19/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/u64-sqrt-scalar-cvtu64-sqrt-llrint.c.o 2024-06-26T05:39:27.2912820Z [20/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4-minmax-scalar.c.o 2024-06-26T05:39:27.2968970Z [21/5905] 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 2024-06-26T05:39:27.3295520Z [22/5905] 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 2024-06-26T05:39:27.3499120Z [23/5905] 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 2024-06-26T05:39:27.3636320Z [24/5905] 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 2024-06-26T05:39:27.3680280Z [25/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x2-minmax-scalar.c.o 2024-06-26T05:39:27.3770560Z [26/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x2-minmax-scalar.c.o 2024-06-26T05:39:27.3812000Z [27/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4-minmax-scalar.c.o 2024-06-26T05:39:27.3836560Z [28/5905] 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 2024-06-26T05:39:27.3983700Z [29/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4-minmax-scalar.c.o 2024-06-26T05:39:27.4025830Z [30/5905] 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 2024-06-26T05:39:27.4177570Z [31/5905] 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 2024-06-26T05:39:27.4712090Z [32/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4-minmax-scalar.c.o 2024-06-26T05:39:27.4735490Z [33/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x2-minmax-scalar.c.o 2024-06-26T05:39:27.4911370Z [34/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4-minmax-scalar.c.o 2024-06-26T05:39:27.5048100Z [35/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x2-minmax-scalar.c.o 2024-06-26T05:39:27.5108450Z [36/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:27.5163820Z [37/5905] 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 2024-06-26T05:39:27.5482370Z [38/5905] 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 2024-06-26T05:39:27.5489460Z [39/5905] 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 2024-06-26T05:39:27.5530200Z [40/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4-minmax-scalar.c.o 2024-06-26T05:39:27.5718890Z [41/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:27.5921890Z [42/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:27.6010660Z [43/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:27.6109430Z [44/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:27.6227990Z [45/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:27.6448980Z [46/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:27.6621350Z [47/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:27.6791490Z [48/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:27.6795440Z [49/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:27.6807390Z [50/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:27.7035000Z [51/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:27.7193000Z [52/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:27.7385560Z [53/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:27.7494670Z [54/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:27.7500120Z [55/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:27.7653190Z [56/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:27.7925940Z [57/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:27.8121890Z [58/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:27.8168480Z [59/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:27.8352620Z [60/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:27.8650160Z [61/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:27.8673620Z [62/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:27.8720240Z [63/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:27.8727820Z [64/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:27.8924210Z [65/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:27.8940490Z [66/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:27.9205300Z [67/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:27.9495750Z [68/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-rndnu-scalar.c.o 2024-06-26T05:39:27.9505650Z [69/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:27.9554470Z [70/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:27.9740810Z [71/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:27.9898370Z [72/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-rndnu-scalar.c.o 2024-06-26T05:39:28.0039850Z [73/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:28.0275220Z [74/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:28.0311020Z [75/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:28.0477470Z [76/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:28.0694980Z [77/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-rndnu-scalar.c.o 2024-06-26T05:39:28.0900210Z [78/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:28.0905240Z [79/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:28.0911550Z [80/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:28.1132030Z [81/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:28.1136950Z [82/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:28.1309820Z [83/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:28.1363130Z [84/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:28.1366680Z [85/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:28.1656550Z [86/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:28.1896110Z [87/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:28.2236710Z [88/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u1.c.o 2024-06-26T05:39:28.2240430Z [89/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-fmagic-c4.c.o 2024-06-26T05:39:28.2396580Z [90/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u2.c.o 2024-06-26T05:39:28.2404700Z [91/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u3.c.o 2024-06-26T05:39:28.2440050Z [92/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expm1minus-scalar-rr2-p5.c.o 2024-06-26T05:39:28.2623070Z [93/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expm1minus-scalar-rr2-lut16-p4.c.o 2024-06-26T05:39:28.2626150Z [94/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expm1minus-scalar-rr2-p6.c.o 2024-06-26T05:39:28.2654210Z [95/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expminus-scalar-rr2-lut64-p2.c.o 2024-06-26T05:39:28.2861980Z [96/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u4.c.o 2024-06-26T05:39:28.3060670Z [97/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-f16-cvt-scalar-bitcast.c.o 2024-06-26T05:39:28.3334660Z [98/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expminus-scalar-rr2-p5.c.o 2024-06-26T05:39:28.3524810Z [99/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expminus-scalar-rr2-lut2048-p1.c.o 2024-06-26T05:39:28.3665260Z [100/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundd-scalar-addsub.c.o 2024-06-26T05:39:28.3737840Z [101/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundne-scalar-nearbyint.c.o 2024-06-26T05:39:28.3783980Z [102/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundd-scalar-floor.c.o 2024-06-26T05:39:28.3839040Z [103/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundne-scalar-rint.c.o 2024-06-26T05:39:28.4013470Z [104/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundne-scalar-addsub.c.o 2024-06-26T05:39:28.4020830Z [105/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundu-scalar-addsub.c.o 2024-06-26T05:39:28.4052920Z [106/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundd-scalar-cvt.c.o 2024-06-26T05:39:28.4239640Z [107/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-f16-cvt-scalar-fabsf.c.o 2024-06-26T05:39:28.4261800Z [108/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundu-scalar-ceil.c.o 2024-06-26T05:39:28.4640630Z [109/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundz-scalar-addsub.c.o 2024-06-26T05:39:28.4734540Z [110/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundu-scalar-cvt.c.o 2024-06-26T05:39:28.4901480Z [111/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-scalar-rr2-lut64-p2-div.c.o 2024-06-26T05:39:28.4971150Z [112/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundz-scalar-cvt.c.o 2024-06-26T05:39:28.5133510Z [113/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundz-scalar-trunc.c.o 2024-06-26T05:39:28.5146500Z [114/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-scalar-rr2-lut2048-p1-div.c.o 2024-06-26T05:39:28.5333580Z [115/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut4-p4h2ts-rcp.c.o 2024-06-26T05:39:28.5357910Z [116/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut4-p4h3ps-div.c.o 2024-06-26T05:39:28.5504580Z [117/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-scalar-rr2-p5-div.c.o 2024-06-26T05:39:28.5569630Z [118/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut4-p4h2ts-div.c.o 2024-06-26T05:39:28.5695190Z [119/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut8-p3h1ts-div.c.o 2024-06-26T05:39:28.6117500Z [120/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut4-p4h3ts-div.c.o 2024-06-26T05:39:28.6132250Z [121/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut8-p4h2ts-rcp.c.o 2024-06-26T05:39:28.6275370Z [122/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut8-p4h2ts-div.c.o 2024-06-26T05:39:28.6325870Z [123/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut8-p4h3ps-div.c.o 2024-06-26T05:39:28.6354400Z [124/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut8-p4h3ps-rcp.c.o 2024-06-26T05:39:28.6494750Z [125/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut8-p4h3ts-div.c.o 2024-06-26T05:39:28.6642340Z [126/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut16-p4h2ts-div.c.o 2024-06-26T05:39:28.6847940Z [127/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut8-p4h3ts-rcp.c.o 2024-06-26T05:39:28.6970170Z [128/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut16-p3h1ts-div.c.o 2024-06-26T05:39:28.6984650Z [129/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut16-p4h2ts-rcp.c.o 2024-06-26T05:39:28.7179520Z [130/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut16-p4h3ps-div.c.o 2024-06-26T05:39:28.7326580Z [131/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut32-p3h1ts-div.c.o 2024-06-26T05:39:28.7348810Z [132/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut64-p3h1ts-div.c.o 2024-06-26T05:39:28.7768460Z [133/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-p6h5ps-div.c.o 2024-06-26T05:39:28.7774670Z [134/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-p6h4ts-div.c.o 2024-06-26T05:39:28.7776540Z [135/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-p6h5ps-rcp.c.o 2024-06-26T05:39:28.8035120Z [136/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-p6h5ts-div.c.o 2024-06-26T05:39:28.8046380Z [137/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-lut16-p4h3ts-div.c.o 2024-06-26T05:39:28.8126210Z [138/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr1-p6h5ts-rcp.c.o 2024-06-26T05:39:28.8135340Z [139/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-lut4-p4h2ts-div.c.o 2024-06-26T05:39:28.8426540Z [140/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-lut4-p4h3ps-div.c.o 2024-06-26T05:39:28.8931570Z [141/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-lut8-p3h1ts-div.c.o 2024-06-26T05:39:28.8961110Z [142/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-lut4-p4h3ts-div.c.o 2024-06-26T05:39:28.9017100Z [143/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-lut8-p4h2ts-div.c.o 2024-06-26T05:39:28.9120950Z [144/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-lut8-p4h3ts-div.c.o 2024-06-26T05:39:28.9145220Z [145/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-lut8-p4h3ps-div.c.o 2024-06-26T05:39:28.9314920Z [146/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-lut8-p4h3ps-rcp.c.o 2024-06-26T05:39:28.9478450Z [147/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-lut16-p3h1ts-div.c.o 2024-06-26T05:39:28.9526810Z [148/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-lut8-p4h3ts-rcp.c.o 2024-06-26T05:39:28.9733620Z [149/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-lut16-p4h2ts-div.c.o 2024-06-26T05:39:28.9775270Z [150/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-lut8-p4h2ts-rcp.c.o 2024-06-26T05:39:28.9965340Z [151/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-lut16-p4h3ts-div.c.o 2024-06-26T05:39:29.0066030Z [152/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-lut32-p3h1ts-div.c.o 2024-06-26T05:39:29.0176360Z [153/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-lut16-p4h3ps-div.c.o 2024-06-26T05:39:29.0199850Z [154/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-p6h4ts-div.c.o 2024-06-26T05:39:29.0355690Z [155/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-lut64-p3h1ts-div.c.o 2024-06-26T05:39:29.0675540Z [156/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-p6h5ts-div.c.o 2024-06-26T05:39:29.0778890Z [157/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1minus-rr2-p6h5ps-div.c.o 2024-06-26T05:39:29.0830060Z [158/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr1-lut4-p4h2ts-div.c.o 2024-06-26T05:39:29.0842020Z [159/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr1-lut4-p4h3ps-div.c.o 2024-06-26T05:39:29.1018100Z [160/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr1-lut8-p3h1ts-div.c.o 2024-06-26T05:39:29.1132960Z [161/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr1-lut8-p4h3ts-div.c.o 2024-06-26T05:39:29.1153400Z [162/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr1-lut8-p4h2ts-div.c.o 2024-06-26T05:39:29.1356730Z [163/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr1-lut8-p4h3ps-div.c.o 2024-06-26T05:39:29.1369760Z [164/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr1-lut16-p3h1ts-div.c.o 2024-06-26T05:39:29.1596910Z [165/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr1-lut4-p4h3ts-div.c.o 2024-06-26T05:39:29.1811390Z [166/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr1-lut16-p4h3ps-div.c.o 2024-06-26T05:39:29.2110550Z [167/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr1-lut16-p4h2ts-div.c.o 2024-06-26T05:39:29.2136620Z [168/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr1-lut16-p4h3ts-div.c.o 2024-06-26T05:39:29.2180820Z [169/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr1-lut32-p3h1ts-div.c.o 2024-06-26T05:39:29.2308330Z [170/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr1-p6h4ts-div.c.o 2024-06-26T05:39:29.2365300Z [171/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr1-p6h5ps-div.c.o 2024-06-26T05:39:29.2523090Z [172/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr1-lut64-p3h1ts-div.c.o 2024-06-26T05:39:29.2548100Z [173/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr1-p6h5ts-div.c.o 2024-06-26T05:39:29.2632690Z [174/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr2-lut4-p4h3ts-div.c.o 2024-06-26T05:39:29.2882490Z [175/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr2-lut4-p4h2ts-div.c.o 2024-06-26T05:39:29.2918230Z [176/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr2-lut4-p4h3ps-div.c.o 2024-06-26T05:39:29.3333450Z [177/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr2-lut16-p3h1ts-div.c.o 2024-06-26T05:39:29.3366060Z [178/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr2-lut8-p4h3ps-div.c.o 2024-06-26T05:39:29.3520400Z [179/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr2-lut8-p4h3ts-div.c.o 2024-06-26T05:39:29.3556500Z [180/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr2-lut8-p3h1ts-div.c.o 2024-06-26T05:39:29.3580130Z [181/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr2-lut8-p4h2ts-div.c.o 2024-06-26T05:39:29.3647410Z [182/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr2-lut16-p4h2ts-div.c.o 2024-06-26T05:39:29.3776850Z [183/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u2.c.o 2024-06-26T05:39:29.3966220Z [184/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vhswish/gen/qs8-vhswish-scalar-u1.c.o 2024-06-26T05:39:29.4003020Z [185/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u1.c.o 2024-06-26T05:39:29.4212680Z [186/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u4.c.o 2024-06-26T05:39:29.4467140Z [187/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u2.c.o 2024-06-26T05:39:29.4478130Z [188/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vhswish/gen/qs8-vhswish-scalar-u2.c.o 2024-06-26T05:39:29.4779740Z [189/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u1.c.o 2024-06-26T05:39:29.4896990Z [190/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u4.c.o 2024-06-26T05:39:29.4920440Z [191/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vhswish/gen/qs8-vhswish-scalar-u4.c.o 2024-06-26T05:39:29.5066180Z [192/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u4.c.o 2024-06-26T05:39:29.5079520Z [193/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u2.c.o 2024-06-26T05:39:29.5264570Z [194/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u1.c.o 2024-06-26T05:39:29.5319490Z [195/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u2.c.o 2024-06-26T05:39:29.5523960Z [196/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u1.c.o 2024-06-26T05:39:29.5628490Z [197/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u4.c.o 2024-06-26T05:39:29.5860220Z [198/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u1.c.o 2024-06-26T05:39:29.5935120Z [199/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u2.c.o 2024-06-26T05:39:29.6245760Z [200/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o 2024-06-26T05:39:29.6311660Z [201/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u4.c.o 2024-06-26T05:39:29.6434530Z [202/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs16-qs8-vcvt/gen/qs16-qs8-vcvt-scalar-u1.c.o 2024-06-26T05:39:29.6447620Z [203/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs16-qs8-vcvt/gen/qs16-qs8-vcvt-scalar-u2.c.o 2024-06-26T05:39:29.6512380Z [204/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs16-qs8-vcvt/gen/qs16-qs8-vcvt-scalar-u4.c.o 2024-06-26T05:39:29.6677480Z [205/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o 2024-06-26T05:39:29.6781070Z [206/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:29.7074970Z [207/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:29.7184130Z [208/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:29.7314630Z [209/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:29.7639290Z [210/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:29.7648230Z [211/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:29.7864910Z [212/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:29.8036300Z [213/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:29.8058750Z [214/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:29.8278540Z [215/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:29.8496870Z [216/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:29.8516680Z [217/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:29.8735030Z [218/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:29.9080580Z [219/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:29.9230560Z [220/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:29.9239180Z [221/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:29.9449710Z [222/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:29.9556350Z [223/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:29.9590570Z [224/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:29.9751750Z [225/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:29.9794530Z [226/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:29.9804400Z [227/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:30.0363360Z [228/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:30.0634050Z [229/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:30.0938920Z [230/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:30.1012490Z [231/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:30.1062190Z [232/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:30.1073600Z [233/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:30.1189380Z [234/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-rndnu-scalar.c.o 2024-06-26T05:39:30.1263220Z [235/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:30.1305760Z [236/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:30.1522910Z [237/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:30.1972380Z [238/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:30.2074610Z [239/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:30.2359870Z [240/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:30.2395710Z [241/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-rndnu-scalar.c.o 2024-06-26T05:39:30.2479730Z [242/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:30.2495230Z [243/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:30.2579290Z [244/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:30.2666090Z [245/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:30.2713840Z [246/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-rndnu-scalar.c.o 2024-06-26T05:39:30.3024540Z [247/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:30.3236280Z [248/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:30.3246040Z [249/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:30.3518960Z [250/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:30.3598550Z [251/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:30.3712740Z [252/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c2.c.o 2024-06-26T05:39:30.3818010Z [253/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u2.c.o 2024-06-26T05:39:30.3819430Z [254/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u1.c.o 2024-06-26T05:39:30.3927680Z [255/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:30.4170970Z [256/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:30.4369340Z [257/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u3.c.o 2024-06-26T05:39:30.4431630Z [258/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c1.c.o 2024-06-26T05:39:30.4530410Z [259/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u4.c.o 2024-06-26T05:39:30.4645820Z [260/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c4.c.o 2024-06-26T05:39:30.4859590Z [261/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c2.c.o 2024-06-26T05:39:30.5060020Z [262/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c1.c.o 2024-06-26T05:39:30.5106860Z [263/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c4.c.o 2024-06-26T05:39:30.5146880Z [264/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c1.c.o 2024-06-26T05:39:30.5174640Z [265/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c2.c.o 2024-06-26T05:39:30.5393880Z [266/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c4.c.o 2024-06-26T05:39:30.5531160Z [267/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c4.c.o 2024-06-26T05:39:30.5633580Z [268/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c2.c.o 2024-06-26T05:39:30.5740480Z [269/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c1.c.o 2024-06-26T05:39:30.5744970Z [270/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c1.c.o 2024-06-26T05:39:30.6279570Z [271/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c4.c.o 2024-06-26T05:39:30.6281470Z [272/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c1.c.o 2024-06-26T05:39:30.6534050Z [273/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c2.c.o 2024-06-26T05:39:30.6685060Z [274/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-fmagic-c2.c.o 2024-06-26T05:39:30.6705190Z [275/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-fmagic-c4.c.o 2024-06-26T05:39:30.6751110Z [276/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-fmagic-c1.c.o 2024-06-26T05:39:30.6891650Z [277/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c4.c.o 2024-06-26T05:39:30.6924190Z [278/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-imagic-c1.c.o 2024-06-26T05:39:30.6926060Z [279/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c2.c.o 2024-06-26T05:39:30.6998690Z [280/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-imagic-c2.c.o 2024-06-26T05:39:30.7217160Z [281/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-lrintf-c1.c.o 2024-06-26T05:39:30.7667340Z [282/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-lrintf-c2.c.o 2024-06-26T05:39:30.7997790Z [283/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-imagic-c4.c.o 2024-06-26T05:39:30.8078270Z [284/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:30.8081830Z [285/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:30.8170500Z [286/5905] 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 2024-06-26T05:39:30.8266850Z [287/5905] 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 2024-06-26T05:39:30.8302310Z [288/5905] 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 2024-06-26T05:39:30.8343450Z [289/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:30.8489270Z [290/5905] 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 2024-06-26T05:39:30.8491250Z [291/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-lrintf-c4.c.o 2024-06-26T05:39:30.8777830Z [292/5905] 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 2024-06-26T05:39:30.9329120Z [293/5905] 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 2024-06-26T05:39:30.9500720Z [294/5905] 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 2024-06-26T05:39:30.9512020Z [295/5905] 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 2024-06-26T05:39:30.9635860Z [296/5905] 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 2024-06-26T05:39:30.9696470Z [297/5905] 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 2024-06-26T05:39:30.9746370Z [298/5905] 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 2024-06-26T05:39:30.9855190Z [299/5905] 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 2024-06-26T05:39:30.9880220Z [300/5905] 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 2024-06-26T05:39:31.0132660Z [301/5905] 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 2024-06-26T05:39:31.0245910Z [302/5905] 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 2024-06-26T05:39:31.0685260Z [303/5905] 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 2024-06-26T05:39:31.0816690Z [304/5905] 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 2024-06-26T05:39:31.1156740Z [305/5905] 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 2024-06-26T05:39:31.1160500Z [306/5905] 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 2024-06-26T05:39:31.1224800Z [307/5905] 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 2024-06-26T05:39:31.1337990Z [308/5905] 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 2024-06-26T05:39:31.1423320Z [309/5905] 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 2024-06-26T05:39:31.1507420Z [310/5905] 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 2024-06-26T05:39:31.1587180Z [311/5905] 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 2024-06-26T05:39:31.1935060Z [312/5905] 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 2024-06-26T05:39:31.2188650Z [313/5905] 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 2024-06-26T05:39:31.2532410Z [314/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:31.2581420Z [315/5905] 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 2024-06-26T05:39:31.2799620Z [316/5905] 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 2024-06-26T05:39:31.2876790Z [317/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:31.2885020Z [318/5905] 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 2024-06-26T05:39:31.3081650Z [319/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:31.3086340Z [320/5905] 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 2024-06-26T05:39:31.3091510Z [321/5905] 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 2024-06-26T05:39:31.3315900Z [322/5905] 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 2024-06-26T05:39:31.3717320Z [323/5905] 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 2024-06-26T05:39:31.3919240Z [324/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:31.4254450Z [325/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:31.4260820Z [326/5905] 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 2024-06-26T05:39:31.4310710Z [327/5905] 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 2024-06-26T05:39:31.4593930Z [328/5905] 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 2024-06-26T05:39:31.4797880Z [329/5905] 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 2024-06-26T05:39:31.4801770Z [330/5905] 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 2024-06-26T05:39:31.5019140Z [331/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:31.5073960Z [332/5905] 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 2024-06-26T05:39:31.5264660Z [333/5905] 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 2024-06-26T05:39:31.5435250Z [334/5905] 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 2024-06-26T05:39:31.5609540Z [335/5905] 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 2024-06-26T05:39:31.5666490Z [336/5905] 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 2024-06-26T05:39:31.6114240Z [337/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:31.6124330Z [338/5905] 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 2024-06-26T05:39:31.6137830Z [339/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:31.6153080Z [340/5905] 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 2024-06-26T05:39:31.6430840Z [341/5905] 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 2024-06-26T05:39:31.6500160Z [342/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:31.6885760Z [343/5905] 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 2024-06-26T05:39:31.7130150Z [344/5905] 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 2024-06-26T05:39:31.7166710Z [345/5905] 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 2024-06-26T05:39:31.7276520Z [346/5905] 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 2024-06-26T05:39:31.7459630Z [347/5905] 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 2024-06-26T05:39:31.7622370Z [348/5905] 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 2024-06-26T05:39:31.7644650Z [349/5905] 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 2024-06-26T05:39:31.7663170Z [350/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:31.7895570Z [351/5905] 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 2024-06-26T05:39:31.8330250Z [352/5905] 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 2024-06-26T05:39:31.8575140Z [353/5905] 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 2024-06-26T05:39:31.8633010Z [354/5905] 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 2024-06-26T05:39:31.8634950Z [355/5905] 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 2024-06-26T05:39:31.8884320Z [356/5905] 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 2024-06-26T05:39:31.9107370Z [357/5905] 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 2024-06-26T05:39:31.9161230Z [358/5905] 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 2024-06-26T05:39:31.9235140Z [359/5905] 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 2024-06-26T05:39:31.9528530Z [360/5905] 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 2024-06-26T05:39:31.9534440Z [361/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:32.0025870Z [362/5905] 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 2024-06-26T05:39:32.0281540Z [363/5905] 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 2024-06-26T05:39:32.0284810Z [364/5905] 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 2024-06-26T05:39:32.0290220Z [365/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:32.0295530Z [366/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:32.0527160Z [367/5905] 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 2024-06-26T05:39:32.0805650Z [368/5905] 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 2024-06-26T05:39:32.1081510Z [369/5905] 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 2024-06-26T05:39:32.1200960Z [370/5905] 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 2024-06-26T05:39:32.1289910Z [371/5905] 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 2024-06-26T05:39:32.1460720Z [372/5905] 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 2024-06-26T05:39:32.1620180Z [373/5905] 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 2024-06-26T05:39:32.1623450Z [374/5905] 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 2024-06-26T05:39:32.1630970Z [375/5905] 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 2024-06-26T05:39:32.1909330Z [376/5905] 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 2024-06-26T05:39:32.2337860Z [377/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:32.2515800Z [378/5905] 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 2024-06-26T05:39:32.2599170Z [379/5905] 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 2024-06-26T05:39:32.2603720Z [380/5905] 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 2024-06-26T05:39:32.2705460Z [381/5905] 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 2024-06-26T05:39:32.2720050Z [382/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-gemmlowp-scalar.c.o 2024-06-26T05:39:32.2725760Z [383/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-fp32-scalar-fmagic.c.o 2024-06-26T05:39:32.2974650Z [384/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-fp32-scalar-lrintf.c.o 2024-06-26T05:39:32.2978850Z [385/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-scalar-signed64.c.o 2024-06-26T05:39:32.3182420Z [386/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-scalar-unsigned32.c.o 2024-06-26T05:39:32.3519480Z [387/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-scalar-unsigned64.c.o 2024-06-26T05:39:32.3686300Z [388/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u4.c.o 2024-06-26T05:39:32.3703800Z [389/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u1.c.o 2024-06-26T05:39:32.3883400Z [390/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndnu-scalar.c.o 2024-06-26T05:39:32.3901790Z [391/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u4.c.o 2024-06-26T05:39:32.3936660Z [392/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u1.c.o 2024-06-26T05:39:32.4136970Z [393/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-fmagic-c1.c.o 2024-06-26T05:39:32.4140060Z [394/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u2.c.o 2024-06-26T05:39:32.4153650Z [395/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u2.c.o 2024-06-26T05:39:32.4369320Z [396/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-fmagic-c2.c.o 2024-06-26T05:39:32.4779400Z [397/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u1.c.o 2024-06-26T05:39:32.4914810Z [398/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u2.c.o 2024-06-26T05:39:32.4958810Z [399/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u2.c.o 2024-06-26T05:39:32.5194430Z [400/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u4.c.o 2024-06-26T05:39:32.5197330Z [401/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2024-06-26T05:39:32.5200220Z [402/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u1.c.o 2024-06-26T05:39:32.5459730Z [403/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u2.c.o 2024-06-26T05:39:32.5462950Z [404/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vhswish/gen/qu8-vhswish-scalar-u2.c.o 2024-06-26T05:39:32.5664730Z [405/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vhswish/gen/qu8-vhswish-scalar-u4.c.o 2024-06-26T05:39:32.5680350Z [406/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vhswish/gen/qu8-vhswish-scalar-u1.c.o 2024-06-26T05:39:32.6335440Z [407/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u1.c.o 2024-06-26T05:39:32.6340440Z [408/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u4.c.o 2024-06-26T05:39:32.6346640Z [409/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u1.c.o 2024-06-26T05:39:32.6534030Z [410/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u1.c.o 2024-06-26T05:39:32.6650760Z [411/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u1.c.o 2024-06-26T05:39:32.6689430Z [412/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u4.c.o 2024-06-26T05:39:32.6694560Z [413/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u2.c.o 2024-06-26T05:39:32.6915180Z [414/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u2.c.o 2024-06-26T05:39:32.6922620Z [415/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u2.c.o 2024-06-26T05:39:32.7544560Z [416/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u4.c.o 2024-06-26T05:39:32.7612240Z [417/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o 2024-06-26T05:39:32.7695710Z [418/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-vclamp/s8-vclamp-scalar-u4.c.o 2024-06-26T05:39:32.7897200Z [419/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o 2024-06-26T05:39:32.8002790Z [420/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u4.c.o 2024-06-26T05:39:32.8006060Z [421/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c2.c.o 2024-06-26T05:39:32.8008800Z [422/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c4.c.o 2024-06-26T05:39:32.8010280Z [423/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-scalar-x1.c.o 2024-06-26T05:39:32.8018330Z [424/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-scalar-u2.c.o 2024-06-26T05:39:32.8207990Z [425/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-scalar-x2.c.o 2024-06-26T05:39:32.8574270Z [426/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-scalar-x4.c.o 2024-06-26T05:39:32.8797410Z [427/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-scalar-x3.c.o 2024-06-26T05:39:32.8870010Z [428/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-scalar-u1.c.o 2024-06-26T05:39:32.9036130Z [429/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-scalar-u4.c.o 2024-06-26T05:39:32.9084660Z [430/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o 2024-06-26T05:39:32.9099120Z [431/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o 2024-06-26T05:39:32.9116630Z [432/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-scalar-u3.c.o 2024-06-26T05:39:32.9120140Z [433/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c2.c.o 2024-06-26T05:39:32.9362930Z [434/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2024-06-26T05:39:32.9952180Z [435/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c4.c.o 2024-06-26T05:39:32.9963680Z [436/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-rmax/u8-rmax-scalar-u2.c.o 2024-06-26T05:39:32.9983340Z [437/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2024-06-26T05:39:33.0033450Z [438/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-filterbank-accumulate/gen/u32-filterbank-accumulate-scalar-x1.c.o 2024-06-26T05:39:33.0186850Z [439/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-vlog/gen/u32-vlog-scalar-x3.c.o 2024-06-26T05:39:33.0337270Z [440/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-vlog/gen/u32-vlog-scalar-x4.c.o 2024-06-26T05:39:33.0400640Z [441/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-vlog/gen/u32-vlog-scalar-x1.c.o 2024-06-26T05:39:33.0413540Z [442/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-filterbank-subtract/u32-filterbank-subtract-scalar-x2.c.o 2024-06-26T05:39:33.0456350Z [443/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u2.c.o 2024-06-26T05:39:33.0488280Z [444/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-vlog/gen/u32-vlog-scalar-x2.c.o 2024-06-26T05:39:33.1078550Z [445/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-imagic-c2.c.o 2024-06-26T05:39:33.1135140Z [446/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-imagic-c4.c.o 2024-06-26T05:39:33.1345160Z [447/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-imagic-c1.c.o 2024-06-26T05:39:33.1569270Z [448/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neon-acc2.c.o 2024-06-26T05:39:33.1770740Z [449/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-lrintf-c1.c.o 2024-06-26T05:39:33.1858790Z [450/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:33.1968400Z [451/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-lrintf-c2.c.o 2024-06-26T05:39:33.2082850Z [452/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-lrintf-c4.c.o 2024-06-26T05:39:33.2087790Z [453/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:33.2129060Z [454/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:33.2559620Z [455/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:33.2669470Z [456/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-rndnu-scalar.c.o 2024-06-26T05:39:33.2835330Z [457/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:33.3161390Z [458/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:33.3303050Z [459/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:33.3347600Z [460/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:33.3385340Z [461/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-rndnu-scalar.c.o 2024-06-26T05:39:33.3405270Z [462/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-rndnu-scalar.c.o 2024-06-26T05:39:33.3617080Z [463/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:33.3660350Z [464/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:33.3951860Z [465/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:33.4410910Z [466/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:33.4853550Z [467/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:33.4856270Z [468/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:33.4997340Z [469/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:33.5138030Z [470/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:33.5141380Z [471/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-rndnu-scalar.c.o 2024-06-26T05:39:33.5213990Z [472/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:33.5311150Z [473/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:33.5363940Z [474/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-rndnu-scalar.c.o 2024-06-26T05:39:33.5549260Z [475/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-rndnu-scalar.c.o 2024-06-26T05:39:33.5729060Z [476/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:33.6541290Z [477/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-rndnu-scalar.c.o 2024-06-26T05:39:33.6637890Z [478/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:33.6648130Z [479/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:33.6672110Z [480/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:33.6683960Z [481/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-rndnu-scalar.c.o 2024-06-26T05:39:33.6707620Z [482/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:33.6943280Z [483/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:33.6962630Z [484/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:33.7162600Z [485/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:33.7424780Z [486/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:33.8085120Z [487/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-rndnu-scalar.c.o 2024-06-26T05:39:33.8110750Z [488/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-rndnu-scalar.c.o 2024-06-26T05:39:33.8117350Z [489/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:33.8188460Z [490/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:33.8301580Z [491/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:33.8451490Z [492/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:33.8473680Z [493/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:33.8489200Z [494/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:33.8727590Z [495/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-rndnu-scalar.c.o 2024-06-26T05:39:33.8752200Z [496/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:33.9623710Z [497/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:33.9734640Z [498/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-rndnu-scalar.c.o 2024-06-26T05:39:33.9770900Z [499/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:33.9909960Z [500/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-rndnu-scalar.c.o 2024-06-26T05:39:33.9956550Z [501/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:34.0055800Z [502/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:34.0397540Z [503/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:34.0464120Z [504/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:34.0593480Z [505/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:34.0714120Z [506/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:34.0965580Z [507/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:34.1134970Z [508/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:34.1150710Z [509/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-rndnu-scalar.c.o 2024-06-26T05:39:34.1265590Z [510/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-rndnu-scalar.c.o 2024-06-26T05:39:34.1289120Z [511/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o 2024-06-26T05:39:34.1365260Z [512/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:34.1902230Z [513/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-fp32-scalar-fmagic.c.o 2024-06-26T05:39:34.1927570Z [514/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-rndnu-scalar.c.o 2024-06-26T05:39:34.2159280Z [515/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-fp32-scalar-lrintf.c.o 2024-06-26T05:39:34.2275270Z [516/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o 2024-06-26T05:39:34.2376070Z [517/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-scalar-signed64.c.o 2024-06-26T05:39:34.2481360Z [518/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-gemmlowp-scalar.c.o 2024-06-26T05:39:34.2584340Z [519/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-scalar-unsigned64.c.o 2024-06-26T05:39:34.2588310Z [520/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.o 2024-06-26T05:39:34.2612890Z [521/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u1.c.o 2024-06-26T05:39:34.2946990Z [522/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-scalar-unsigned32.c.o 2024-06-26T05:39:34.3125070Z [523/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u64-u32-vsqrtshift/u64-u32-vsqrtshift-scalar-cvtu32-sqrt-cvtu32f64-u1.c.o 2024-06-26T05:39:34.3184740Z [524/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u2.c.o 2024-06-26T05:39:34.3408560Z [525/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u1.c.o 2024-06-26T05:39:34.3431100Z [526/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-scalar-int-u4.c.o 2024-06-26T05:39:34.3659270Z [527/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x4-gemm-goi-scalar-float-u4.c.o 2024-06-26T05:39:34.3681580Z [528/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x4-gemm-goi-scalar-int-u4.c.o 2024-06-26T05:39:34.3742020Z [529/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x3-gemm-goi-scalar-int-u4.c.o 2024-06-26T05:39:34.3933660Z [530/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u4.c.o 2024-06-26T05:39:34.3944920Z [531/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x3-gemm-goi-scalar-float-u4.c.o 2024-06-26T05:39:34.3979340Z [532/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-scalar-float-u4.c.o 2024-06-26T05:39:34.4261050Z [533/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-scalar-int-u4.c.o 2024-06-26T05:39:34.4441460Z [534/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-scalar-int-u4.c.o 2024-06-26T05:39:34.4749730Z [535/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-scalar-float-u4.c.o 2024-06-26T05:39:34.4852710Z [536/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-2x-scalar.c.o 2024-06-26T05:39:34.4954140Z [537/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-3x-scalar.c.o 2024-06-26T05:39:34.5046950Z [538/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-4x-scalar.c.o 2024-06-26T05:39:34.5079950Z [539/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-int.c.o 2024-06-26T05:39:34.5119130Z [540/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-int.c.o 2024-06-26T05:39:34.5121270Z [541/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-float.c.o 2024-06-26T05:39:34.5356390Z [542/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-float.c.o 2024-06-26T05:39:34.5494640Z [543/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-float.c.o 2024-06-26T05:39:34.5911310Z [544/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-int.c.o 2024-06-26T05:39:34.5925200Z [545/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-float.c.o 2024-06-26T05:39:34.6129080Z [546/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-float.c.o 2024-06-26T05:39:34.6156290Z [547/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-int.c.o 2024-06-26T05:39:34.6308950Z [548/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-float.c.o 2024-06-26T05:39:34.6496850Z [549/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-int.c.o 2024-06-26T05:39:34.6699980Z [550/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-float.c.o 2024-06-26T05:39:34.6813960Z [551/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o 2024-06-26T05:39:34.6824670Z [552/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-float.c.o 2024-06-26T05:39:34.6849000Z [553/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-int.c.o 2024-06-26T05:39:34.6857040Z [554/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-int.c.o 2024-06-26T05:39:34.7051700Z [555/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-unpool/x32-unpool-scalar.c.o 2024-06-26T05:39:34.7227670Z [556/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c1s1r-gemm-scalar-float.c.o 2024-06-26T05:39:34.7244900Z [557/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c1s1r-gemm-scalar-int.c.o 2024-06-26T05:39:34.7481680Z [558/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c2s1r-gemm-scalar-float.c.o 2024-06-26T05:39:34.7780990Z [559/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c1s1r-gemm-scalar-int.c.o 2024-06-26T05:39:34.8033340Z [560/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c4s1r-gemm-scalar-float.c.o 2024-06-26T05:39:34.8070380Z [561/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c2s1r-gemm-scalar-int.c.o 2024-06-26T05:39:34.8113550Z [562/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c1s1r-gemm-scalar-float.c.o 2024-06-26T05:39:34.8169670Z [563/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c4s1r-gemm-scalar-int.c.o 2024-06-26T05:39:34.8226890Z [564/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x3-scalar.c.o 2024-06-26T05:39:34.8321510Z [565/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-xm-scalar.c.o 2024-06-26T05:39:34.8429860Z [566/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x4-scalar.c.o 2024-06-26T05:39:34.8500550Z [567/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-float.c.o 2024-06-26T05:39:34.8713690Z [568/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x2-scalar.c.o 2024-06-26T05:39:34.9159150Z [569/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-float.c.o 2024-06-26T05:39:34.9358190Z [570/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-int.c.o 2024-06-26T05:39:34.9489080Z [571/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-int.c.o 2024-06-26T05:39:34.9537440Z [572/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-float.c.o 2024-06-26T05:39:34.9545080Z [573/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-float.c.o 2024-06-26T05:39:34.9756980Z [574/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-int.c.o 2024-06-26T05:39:34.9759630Z [575/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-float.c.o 2024-06-26T05:39:34.9879590Z [576/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o 2024-06-26T05:39:34.9884160Z [577/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o 2024-06-26T05:39:34.9885930Z [578/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-int.c.o 2024-06-26T05:39:35.0409830Z [579/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-fill/xx-fill-scalar-u16.c.o 2024-06-26T05:39:35.0730140Z [580/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u16.c.o 2024-06-26T05:39:35.0757940Z [581/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u8.c.o 2024-06-26T05:39:35.0882540Z [582/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x2-gemm-goi-scalar-int-u4.c.o 2024-06-26T05:39:35.0897680Z [583/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr2-lut16-p4h3ts-div.c.o 2024-06-26T05:39:35.1041410Z [584/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u4.c.o 2024-06-26T05:39:35.1047640Z [585/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-int-u4.c.o 2024-06-26T05:39:35.1060070Z [586/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x2-gemm-goi-scalar-int-u2.c.o 2024-06-26T05:39:35.1252360Z [587/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-int-u2.c.o 2024-06-26T05:39:35.1631470Z [588/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-int-u4.c.o 2024-06-26T05:39:35.1684990Z [589/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-int-u2.c.o 2024-06-26T05:39:35.1908060Z [590/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-int-u2.c.o 2024-06-26T05:39:35.2105970Z [591/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-int-u2.c.o 2024-06-26T05:39:35.2110040Z [592/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-int-u4.c.o 2024-06-26T05:39:35.2211840Z [593/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-int-u4.c.o 2024-06-26T05:39:35.2312210Z [594/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x2-scalar-int.c.o 2024-06-26T05:39:35.2356140Z [595/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x4-scalar-int.c.o 2024-06-26T05:39:35.2403340Z [596/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x2-scalar-int.c.o 2024-06-26T05:39:35.2454470Z [597/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x1-scalar-int.c.o 2024-06-26T05:39:35.3077510Z [598/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x1-scalar-int.c.o 2024-06-26T05:39:35.3177780Z [599/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o 2024-06-26T05:39:35.3281610Z [600/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x2-scalar-int.c.o 2024-06-26T05:39:35.3382510Z [601/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x2-scalar.c.o 2024-06-26T05:39:35.3485820Z [602/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x4-scalar-int.c.o 2024-06-26T05:39:35.3500850Z [603/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x4-scalar.c.o 2024-06-26T05:39:35.3507810Z [604/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-scalar-int-u4.c.o 2024-06-26T05:39:35.3513340Z [605/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x3-scalar.c.o 2024-06-26T05:39:35.3589740Z [606/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-scalar-int-u4.c.o 2024-06-26T05:39:35.3765340Z [607/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-xm-scalar.c.o 2024-06-26T05:39:35.4418730Z [608/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x4-scalar-int.c.o 2024-06-26T05:39:35.4630810Z [609/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x2-scalar-int.c.o 2024-06-26T05:39:35.4632810Z [610/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x2-scalar-int.c.o 2024-06-26T05:39:35.4776910Z [611/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o 2024-06-26T05:39:35.4813640Z [612/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x2-scalar-int.c.o 2024-06-26T05:39:35.4932270Z [613/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o 2024-06-26T05:39:35.4934010Z [614/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x1-scalar-int.c.o 2024-06-26T05:39:35.4945820Z [615/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x1-scalar-int.c.o 2024-06-26T05:39:35.5001660Z [616/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-scalar-int.c.o 2024-06-26T05:39:35.5025840Z [617/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-1x4-scalar.c.o 2024-06-26T05:39:35.5389060Z [618/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x1-scalar.c.o 2024-06-26T05:39:35.5855200Z [619/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x2-scalar.c.o 2024-06-26T05:39:35.5921600Z [620/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x4-scalar.c.o 2024-06-26T05:39:35.5937900Z [621/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x2-scalar.c.o 2024-06-26T05:39:35.6168450Z [622/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c1s1r-gemm-scalar-float.c.o 2024-06-26T05:39:35.6176380Z [623/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c2s1r-gemm-scalar-float.c.o 2024-06-26T05:39:35.6356730Z [624/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x4-scalar.c.o 2024-06-26T05:39:35.6361100Z [625/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c2s1r-gemm-scalar-int.c.o 2024-06-26T05:39:35.6547030Z [626/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x1-scalar.c.o 2024-06-26T05:39:35.6711900Z [627/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c1s1r-gemm-scalar-int.c.o 2024-06-26T05:39:35.6892740Z [628/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c4s1r-gemm-scalar-int.c.o 2024-06-26T05:39:35.6896840Z [629/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c1s1r-gemm-scalar-float.c.o 2024-06-26T05:39:35.6955270Z [630/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c4s1r-gemm-scalar-float.c.o 2024-06-26T05:39:35.6964480Z [631/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c1s1r-gemm-scalar-int.c.o 2024-06-26T05:39:35.7256950Z [632/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-pad/xx-pad-p4-scalar-u16.c.o 2024-06-26T05:39:35.7602860Z [633/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr2-p6h4ts-div.c.o 2024-06-26T05:39:35.7883890Z [634/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr2-lut64-p3h1ts-div.c.o 2024-06-26T05:39:35.7902780Z [635/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-scalar-float-u4.c.o 2024-06-26T05:39:35.7937030Z [636/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr2-p6h5ps-div.c.o 2024-06-26T05:39:35.7980600Z [637/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr2-p6h5ts-div.c.o 2024-06-26T05:39:35.8296320Z [638/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/cs16-bfly4-neon-x1.c.o 2024-06-26T05:39:35.8449390Z [639/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/cs16-bfly4-samples1-neon.c.o 2024-06-26T05:39:35.8496510Z [640/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/cs16-bfly4-neon-x4.c.o 2024-06-26T05:39:35.9197120Z [641/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/cs16-bfly4-samples4-neon.c.o 2024-06-26T05:39:35.9401610Z [642/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-fftr/cs16-fftr-neon-x4.c.o 2024-06-26T05:39:35.9502460Z [643/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-neon-mlal-ld128-x4.c.o 2024-06-26T05:39:35.9507370Z [644/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-neon-mlal-ld128-x8.c.o 2024-06-26T05:39:35.9531400Z [645/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-neon-mlal-ld128-x16.c.o 2024-06-26T05:39:35.9598840Z [646/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-neon-mlal-ld128-x12.c.o 2024-06-26T05:39:35.9846410Z [647/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u16.c.o 2024-06-26T05:39:36.0022880Z [648/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u24.c.o 2024-06-26T05:39:36.0088350Z [649/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u8.c.o 2024-06-26T05:39:36.0380090Z [650/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u32.c.o 2024-06-26T05:39:36.0837700Z [651/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u8.c.o 2024-06-26T05:39:36.0924600Z [652/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u16.c.o 2024-06-26T05:39:36.0949150Z [653/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u32.c.o 2024-06-26T05:39:36.1066080Z [654/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u24.c.o 2024-06-26T05:39:36.1206540Z [655/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-4x-neon-c4.c.o 2024-06-26T05:39:36.1620910Z [656/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-9x-neon-c4.c.o 2024-06-26T05:39:36.1938330Z [657/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-neon-c4.c.o 2024-06-26T05:39:36.2061890Z [658/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-neon-2x2.c.o 2024-06-26T05:39:36.2148750Z [659/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-avgpool/f32-avgpool-9x-minmax-neon-c4.c.o 2024-06-26T05:39:36.2176380Z [660/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-neon-c4.c.o 2024-06-26T05:39:36.2372190Z [661/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-neon-2x1.c.o 2024-06-26T05:39:36.2590830Z [662/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-neon-2x2.c.o 2024-06-26T05:39:36.2753980Z [663/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-neon-2x1.c.o 2024-06-26T05:39:36.3069760Z [664/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-neon-2x1.c.o 2024-06-26T05:39:36.3172430Z [665/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-neon-2x2.c.o 2024-06-26T05:39:36.3598030Z [666/5905] 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 2024-06-26T05:39:36.3779260Z [667/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-neon-2x1.c.o 2024-06-26T05:39:36.3802270Z [668/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-neon-2x2.c.o 2024-06-26T05:39:36.3821130Z [669/5905] 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 2024-06-26T05:39:36.3841900Z [670/5905] 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 2024-06-26T05:39:36.4314700Z [671/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-neon-2x2.c.o 2024-06-26T05:39:36.4362190Z [672/5905] 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 2024-06-26T05:39:36.4660490Z [673/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-2x4.c.o 2024-06-26T05:39:36.4840720Z [674/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-1x4.c.o 2024-06-26T05:39:36.4968620Z [675/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-3x4.c.o 2024-06-26T05:39:36.5416590Z [676/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-4x4.c.o 2024-06-26T05:39:36.5538180Z [677/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-6x4.c.o 2024-06-26T05:39:36.5550600Z [678/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-5x4.c.o 2024-06-26T05:39:36.5570090Z [679/5905] 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 2024-06-26T05:39:36.5857650Z [680/5905] 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 2024-06-26T05:39:36.5978450Z [681/5905] 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 2024-06-26T05:39:36.6174630Z [682/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-1x4.c.o 2024-06-26T05:39:36.6603490Z [683/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-2x4.c.o 2024-06-26T05:39:36.6614070Z [684/5905] 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 2024-06-26T05:39:36.6777920Z [685/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-3x4.c.o 2024-06-26T05:39:36.7426950Z [686/5905] 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 2024-06-26T05:39:36.7462320Z [687/5905] 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 2024-06-26T05:39:36.7542810Z [688/5905] 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 2024-06-26T05:39:36.7653470Z [689/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-4x4.c.o 2024-06-26T05:39:36.7666630Z [690/5905] 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 2024-06-26T05:39:36.7720420Z [691/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4.c.o 2024-06-26T05:39:36.8633570Z [692/5905] 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 2024-06-26T05:39:36.8858750Z [693/5905] 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 2024-06-26T05:39:36.8866060Z [694/5905] 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 2024-06-26T05:39:36.8987820Z [695/5905] 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 2024-06-26T05:39:36.9104110Z [696/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-3x4.c.o 2024-06-26T05:39:36.9156190Z [697/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-2x4.c.o 2024-06-26T05:39:36.9172050Z [698/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-4x4.c.o 2024-06-26T05:39:36.9217000Z [699/5905] 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 2024-06-26T05:39:36.9520590Z [700/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-5x4.c.o 2024-06-26T05:39:37.0388150Z [701/5905] 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 2024-06-26T05:39:37.0526730Z [702/5905] 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 2024-06-26T05:39:37.0686710Z [703/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-2x4.c.o 2024-06-26T05:39:37.0722550Z [704/5905] 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 2024-06-26T05:39:37.0756110Z [705/5905] 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 2024-06-26T05:39:37.0798560Z [706/5905] 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 2024-06-26T05:39:37.0921270Z [707/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4.c.o 2024-06-26T05:39:37.0933420Z [708/5905] 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 2024-06-26T05:39:37.1054880Z [709/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-3x4.c.o 2024-06-26T05:39:37.2074280Z [710/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neon-acc2.c.o 2024-06-26T05:39:37.2187010Z [711/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-fma-expm1minus-rr1-lut8-p4h3ts-div-u1.c.o 2024-06-26T05:39:37.2191710Z [712/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon-acc2.c.o 2024-06-26T05:39:37.2330100Z [713/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-fma-expm1minus-rr1-lut8-p4h3ts-div-u2.c.o 2024-06-26T05:39:37.2369200Z [714/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon.c.o 2024-06-26T05:39:37.2575550Z [715/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neon.c.o 2024-06-26T05:39:37.2768130Z [716/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x16-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:37.2850340Z [717/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-fma-expm1minus-rr1-p6h5ts-div-u1.c.o 2024-06-26T05:39:37.2992910Z [718/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-fma-expm1minus-rr1-lut8-p4h3ts-div-u4.c.o 2024-06-26T05:39:37.3236440Z [719/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut4-p4h2ts-div.c.o 2024-06-26T05:39:37.3244100Z [720/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-fma-expm1minus-rr1-p6h5ts-div-u2.c.o 2024-06-26T05:39:37.3304870Z [721/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-fma-expm1minus-rr1-p6h5ts-div-u4.c.o 2024-06-26T05:39:37.3569810Z [722/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut4-p4h2ts-rcp.c.o 2024-06-26T05:39:37.3635200Z [723/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut4-p4h3ps-div.c.o 2024-06-26T05:39:37.3693610Z [724/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut4-p4h3ps-rcp.c.o 2024-06-26T05:39:37.4023390Z [725/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut8-p3h1ts-div.c.o 2024-06-26T05:39:37.4046650Z [726/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut4-p4h3ts-rcp.c.o 2024-06-26T05:39:37.4207550Z [727/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-transposev/xx-transposev-1x1-scalar-memcpy.c.o 2024-06-26T05:39:37.4461110Z [728/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut8-p4h3ps-div.c.o 2024-06-26T05:39:37.4466200Z [729/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut8-p4h2ts-rcp.c.o 2024-06-26T05:39:37.4652220Z [730/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut8-p4h3ts-div.c.o 2024-06-26T05:39:37.4684110Z [731/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut8-p4h3ts-rcp.c.o 2024-06-26T05:39:37.4690180Z [732/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut8-p4h2ts-div.c.o 2024-06-26T05:39:37.4726130Z [733/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut8-p4h3ps-rcp.c.o 2024-06-26T05:39:37.4828740Z [734/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut4-p4h3ts-div.c.o 2024-06-26T05:39:37.5294920Z [735/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut16-p3h1ts-div.c.o 2024-06-26T05:39:37.5474700Z [736/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut16-p4h2ts-rcp.c.o 2024-06-26T05:39:37.5571680Z [737/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut16-p4h3ps-div.c.o 2024-06-26T05:39:37.5685640Z [738/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut16-p4h3ts-div.c.o 2024-06-26T05:39:37.5917700Z [739/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut16-p4h2ts-div.c.o 2024-06-26T05:39:37.5921270Z [740/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut64-p3h1ts-div.c.o 2024-06-26T05:39:37.5998850Z [741/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-lut32-p3h1ts-div.c.o 2024-06-26T05:39:37.6126740Z [742/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-p6h5ps-rcp.c.o 2024-06-26T05:39:37.6158390Z [743/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-p6h5ps-div.c.o 2024-06-26T05:39:37.6315940Z [744/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-p6h4ts-div.c.o 2024-06-26T05:39:37.6617610Z [745/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-p6h5ts-rcp.c.o 2024-06-26T05:39:37.6698680Z [746/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr1-p6h5ts-div.c.o 2024-06-26T05:39:37.6937110Z [747/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-lut4-p4h2ts-div.c.o 2024-06-26T05:39:37.6941650Z [748/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-lut4-p4h3ps-div.c.o 2024-06-26T05:39:37.7171970Z [749/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-lut4-p4h3ts-div.c.o 2024-06-26T05:39:37.7350880Z [750/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-lut8-p4h2ts-div.c.o 2024-06-26T05:39:37.7377060Z [751/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-lut8-p4h3ps-div.c.o 2024-06-26T05:39:37.7615870Z [752/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-lut8-p4h2ts-rcp.c.o 2024-06-26T05:39:37.7681340Z [753/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-lut8-p3h1ts-div.c.o 2024-06-26T05:39:37.7776440Z [754/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-lut8-p4h3ts-div.c.o 2024-06-26T05:39:37.7811870Z [755/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-lut16-p4h2ts-div.c.o 2024-06-26T05:39:37.7992660Z [756/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-lut16-p4h3ps-div.c.o 2024-06-26T05:39:37.8004910Z [757/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-lut16-p3h1ts-div.c.o 2024-06-26T05:39:37.8294510Z [758/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-lut16-p4h3ts-div.c.o 2024-06-26T05:39:37.8516540Z [759/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-lut32-p3h1ts-div.c.o 2024-06-26T05:39:37.8925420Z [760/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-p6h4ts-div.c.o 2024-06-26T05:39:37.8927570Z [761/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-lut64-p3h1ts-div.c.o 2024-06-26T05:39:37.8929340Z [762/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-p6h5ps-div.c.o 2024-06-26T05:39:37.9152440Z [763/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1minus-rr2-p6h5ts-div.c.o 2024-06-26T05:39:37.9155060Z [764/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr1-lut8-p3h1ts-div.c.o 2024-06-26T05:39:37.9195480Z [765/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr1-lut4-p4h3ps-div.c.o 2024-06-26T05:39:37.9387090Z [766/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr1-lut4-p4h2ts-div.c.o 2024-06-26T05:39:37.9426670Z [767/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr1-lut8-p4h2ts-div.c.o 2024-06-26T05:39:37.9644340Z [768/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr1-lut8-p4h3ps-div.c.o 2024-06-26T05:39:37.9731930Z [769/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr1-lut4-p4h3ts-div.c.o 2024-06-26T05:39:38.0032230Z [770/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr1-lut16-p4h2ts-div.c.o 2024-06-26T05:39:38.0241600Z [771/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr1-lut16-p3h1ts-div.c.o 2024-06-26T05:39:38.0341370Z [772/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr1-lut32-p3h1ts-div.c.o 2024-06-26T05:39:38.0532250Z [773/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr1-lut16-p4h3ts-div.c.o 2024-06-26T05:39:38.0538900Z [774/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr1-lut16-p4h3ps-div.c.o 2024-06-26T05:39:38.0594180Z [775/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr1-lut8-p4h3ts-div.c.o 2024-06-26T05:39:38.0740640Z [776/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr1-lut64-p3h1ts-div.c.o 2024-06-26T05:39:38.0897900Z [777/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr1-p6h5ts-div.c.o 2024-06-26T05:39:38.0923670Z [778/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr1-p6h4ts-div.c.o 2024-06-26T05:39:38.0950680Z [779/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr1-p6h5ps-div.c.o 2024-06-26T05:39:38.1265710Z [780/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr2-lut4-p4h2ts-div.c.o 2024-06-26T05:39:38.1953630Z [781/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr2-lut8-p4h2ts-div.c.o 2024-06-26T05:39:38.1955550Z [782/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr2-lut4-p4h3ps-div.c.o 2024-06-26T05:39:38.2199450Z [783/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr2-lut16-p4h3ps-div.c.o 2024-06-26T05:39:38.2255930Z [784/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr2-lut8-p3h1ts-div.c.o 2024-06-26T05:39:38.2261570Z [785/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr2-lut4-p4h3ts-div.c.o 2024-06-26T05:39:38.2323220Z [786/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr2-lut8-p4h3ps-div.c.o 2024-06-26T05:39:38.2442900Z [787/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr2-lut16-p3h1ts-div.c.o 2024-06-26T05:39:38.2515060Z [788/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr2-lut8-p4h3ts-div.c.o 2024-06-26T05:39:38.2550540Z [789/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr2-lut16-p4h2ts-div.c.o 2024-06-26T05:39:38.2832920Z [790/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-fma-expm1plus-rr2-lut32-p3h1ts-div.c.o 2024-06-26T05:39:38.3650130Z [791/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:38.3677450Z [792/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neon.c.o 2024-06-26T05:39:38.4075290Z [793/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:38.4157170Z [794/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:38.4194410Z [795/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:38.4262010Z [796/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:38.4268510Z [797/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x2-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:38.4411090Z [798/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-dup-ld64.c.o 2024-06-26T05:39:38.4889950Z [799/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-dup-ld128.c.o 2024-06-26T05:39:38.5117980Z [800/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neon.c.o 2024-06-26T05:39:38.5424460Z [801/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x16-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:38.5714600Z [802/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8s4-minmax-neon.c.o 2024-06-26T05:39:38.6091080Z [803/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-dup-ld128.c.o 2024-06-26T05:39:38.6172430Z [804/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-dup-ld64.c.o 2024-06-26T05:39:38.6378390Z [805/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-dup-ld64.c.o 2024-06-26T05:39:38.6391270Z [806/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:38.6540500Z [807/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8s4-minmax-neon.c.o 2024-06-26T05:39:38.6591460Z [808/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:38.6750080Z [809/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:38.6907440Z [810/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:38.7310250Z [811/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8s4-minmax-neon.c.o 2024-06-26T05:39:38.7612880Z [812/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:38.7975430Z [813/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-dup-ld128.c.o 2024-06-26T05:39:38.8004250Z [814/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:38.8198930Z [815/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-dup-ld64.c.o 2024-06-26T05:39:38.8221770Z [816/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:38.8284510Z [817/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8s4-minmax-neon.c.o 2024-06-26T05:39:38.8515060Z [818/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p8.c.o 2024-06-26T05:39:38.8664690Z [819/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-8x8s4-minmax-neon.c.o 2024-06-26T05:39:38.8753010Z [820/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p4.c.o 2024-06-26T05:39:38.8904450Z [821/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p16.c.o 2024-06-26T05:39:38.9151550Z [822/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c4.c.o 2024-06-26T05:39:38.9605880Z [823/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:38.9693840Z [824/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c8.c.o 2024-06-26T05:39:38.9964170Z [825/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:38.9968170Z [826/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-dup-ld64.c.o 2024-06-26T05:39:39.0315700Z [827/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neon.c.o 2024-06-26T05:39:39.0473200Z [828/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:39.0732330Z [829/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x16-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:39.0853100Z [830/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:39.0955310Z [831/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:39.1055870Z [832/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:39.1437590Z [833/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-dup-ld128.c.o 2024-06-26T05:39:39.1911180Z [834/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neon.c.o 2024-06-26T05:39:39.1972120Z [835/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:39.2023880Z [836/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-dup-ld64.c.o 2024-06-26T05:39:39.2266480Z [837/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:39.2270570Z [838/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:39.2357510Z [839/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:39.2474820Z [840/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x2-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:39.2587170Z [841/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-dup-ld64.c.o 2024-06-26T05:39:39.2655640Z [842/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-dup-ld128.c.o 2024-06-26T05:39:39.3043230Z [843/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:39.3666950Z [844/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:39.3776650Z [845/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neon.c.o 2024-06-26T05:39:39.3884720Z [846/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:39:39.3984360Z [847/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neon.c.o 2024-06-26T05:39:39.4068450Z [848/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neon-acc2.c.o 2024-06-26T05:39:39.4238620Z [849/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neon.c.o 2024-06-26T05:39:39.4662680Z [850/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon-acc2.c.o 2024-06-26T05:39:39.4889510Z [851/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon.c.o 2024-06-26T05:39:39.4897550Z [852/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neon-acc2.c.o 2024-06-26T05:39:39.4926740Z [853/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neon.c.o 2024-06-26T05:39:39.5709090Z [854/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neon-acc2.c.o 2024-06-26T05:39:39.5830040Z [855/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neon-acc2.c.o 2024-06-26T05:39:39.5975310Z [856/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neon.c.o 2024-06-26T05:39:39.6047310Z [857/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neon-acc2.c.o 2024-06-26T05:39:39.6112010Z [858/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neon.c.o 2024-06-26T05:39:39.6148750Z [859/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neon.c.o 2024-06-26T05:39:39.6163840Z [860/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neon-acc2.c.o 2024-06-26T05:39:39.6404520Z [861/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon-acc2.c.o 2024-06-26T05:39:39.6586740Z [862/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neon.c.o 2024-06-26T05:39:39.7057620Z [863/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon.c.o 2024-06-26T05:39:39.7826210Z [864/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neon-acc2.c.o 2024-06-26T05:39:39.7835150Z [865/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neon-acc2.c.o 2024-06-26T05:39:39.7864040Z [866/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neon.c.o 2024-06-26T05:39:39.8030640Z [867/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neon.c.o 2024-06-26T05:39:39.8233150Z [868/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neon.c.o 2024-06-26T05:39:39.8254930Z [869/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neon-acc2.c.o 2024-06-26T05:39:39.8362610Z [870/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon.c.o 2024-06-26T05:39:39.8635390Z [871/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neon.c.o 2024-06-26T05:39:39.8701620Z [872/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon-acc2.c.o 2024-06-26T05:39:39.8925120Z [873/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neon-acc2.c.o 2024-06-26T05:39:39.9370280Z [874/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon-acc2.c.o 2024-06-26T05:39:39.9446510Z [875/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon.c.o 2024-06-26T05:39:39.9464790Z [876/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neon-acc2.c.o 2024-06-26T05:39:39.9615940Z [877/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neon.c.o 2024-06-26T05:39:40.0134240Z [878/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u16.c.o 2024-06-26T05:39:40.0150480Z [879/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool/f32-gavgpool-7x-minmax-neon-c4.c.o 2024-06-26T05:39:40.0360080Z [880/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u32.c.o 2024-06-26T05:39:40.0441510Z [881/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool-cw/f32-gavgpool-cw-neon-u4.c.o 2024-06-26T05:39:40.0511380Z [882/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u8.c.o 2024-06-26T05:39:40.0975130Z [883/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u24.c.o 2024-06-26T05:39:40.1141850Z [884/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:40.1387100Z [885/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:40.1405350Z [886/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool/f32-gavgpool-7p7x-minmax-neon-c4.c.o 2024-06-26T05:39:40.1602360Z [887/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-dup-ld64.c.o 2024-06-26T05:39:40.1821760Z [888/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x16-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:40.2054180Z [889/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neon.c.o 2024-06-26T05:39:40.2310270Z [890/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:40.2410820Z [891/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:40.2487490Z [892/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:40.3300620Z [893/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u12-acc3.c.o 2024-06-26T05:39:40.3422320Z [894/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-dup-ld128.c.o 2024-06-26T05:39:40.3426530Z [895/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld128.c.o 2024-06-26T05:39:40.3435690Z [896/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:40.3465660Z [897/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-dup-ld64.c.o 2024-06-26T05:39:40.3487210Z [898/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8s4-minmax-neon.c.o 2024-06-26T05:39:40.3664500Z [899/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u8-acc2.c.o 2024-06-26T05:39:40.3748750Z [900/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u16-acc2.c.o 2024-06-26T05:39:40.3894700Z [901/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u16-acc4.c.o 2024-06-26T05:39:40.3925230Z [902/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u4.c.o 2024-06-26T05:39:40.5037910Z [903/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u8-acc2.c.o 2024-06-26T05:39:40.5071060Z [904/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc2.c.o 2024-06-26T05:39:40.5104250Z [905/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u12-acc3.c.o 2024-06-26T05:39:40.5286150Z [906/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc2.c.o 2024-06-26T05:39:40.5291620Z [907/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u4.c.o 2024-06-26T05:39:40.5473190Z [908/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc4.c.o 2024-06-26T05:39:40.5507520Z [909/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc4.c.o 2024-06-26T05:39:40.5513880Z [910/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u12-acc3.c.o 2024-06-26T05:39:40.5634680Z [911/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon-pipelined.c.o 2024-06-26T05:39:40.5896490Z [912/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon-x2.c.o 2024-06-26T05:39:40.6784010Z [913/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon-x2.c.o 2024-06-26T05:39:40.6891810Z [914/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon-x2.c.o 2024-06-26T05:39:40.6902120Z [915/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon.c.o 2024-06-26T05:39:40.6915720Z [916/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon-pipelined.c.o 2024-06-26T05:39:40.6925140Z [917/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon.c.o 2024-06-26T05:39:40.6977950Z [918/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon-pipelined.c.o 2024-06-26T05:39:40.7200490Z [919/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon.c.o 2024-06-26T05:39:40.7342390Z [920/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x1-minmax-neon.c.o 2024-06-26T05:39:40.7385830Z [921/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon-x2.c.o 2024-06-26T05:39:40.7883690Z [922/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon-pipelined.c.o 2024-06-26T05:39:40.8322710Z [923/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon.c.o 2024-06-26T05:39:40.8562650Z [924/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-neon-u4.c.o 2024-06-26T05:39:40.8586150Z [925/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-neon-u8.c.o 2024-06-26T05:39:40.8606730Z [926/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-neon-u8.c.o 2024-06-26T05:39:40.8833710Z [927/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-neon-u8.c.o 2024-06-26T05:39:40.9144720Z [928/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-neon-u4.c.o 2024-06-26T05:39:40.9357230Z [929/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-neon-u4.c.o 2024-06-26T05:39:40.9372200Z [930/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u4.c.o 2024-06-26T05:39:40.9563050Z [931/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u8.c.o 2024-06-26T05:39:40.9586800Z [932/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-neon-u4.c.o 2024-06-26T05:39:41.0029080Z [933/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-neon-u8.c.o 2024-06-26T05:39:41.0238460Z [934/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-neon-u4.c.o 2024-06-26T05:39:41.0295720Z [935/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-neon-u8.c.o 2024-06-26T05:39:41.0455250Z [936/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-neon-u4.c.o 2024-06-26T05:39:41.0549040Z [937/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-neon-u8.c.o 2024-06-26T05:39:41.1157840Z [938/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-neon-u4.c.o 2024-06-26T05:39:41.1267770Z [939/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-neon-u8.c.o 2024-06-26T05:39:41.1367370Z [940/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-neon-u4.c.o 2024-06-26T05:39:41.1527200Z [941/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u4.c.o 2024-06-26T05:39:41.1530350Z [942/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u8.c.o 2024-06-26T05:39:41.1548370Z [943/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-neon-u8.c.o 2024-06-26T05:39:41.1664380Z [944/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-neon-c4.c.o 2024-06-26T05:39:41.2009450Z [945/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-neon-c4.c.o 2024-06-26T05:39:41.2331060Z [946/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-neon-prfm.c.o 2024-06-26T05:39:41.2402350Z [947/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-neon-c4.c.o 2024-06-26T05:39:41.2605380Z [948/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-neon.c.o 2024-06-26T05:39:41.3086700Z [949/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-neon.c.o 2024-06-26T05:39:41.3146450Z [950/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-neon-1x4.c.o 2024-06-26T05:39:41.3305510Z [951/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-neon-prfm.c.o 2024-06-26T05:39:41.3319190Z [952/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-neon-prfm.c.o 2024-06-26T05:39:41.3384030Z [953/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-neon.c.o 2024-06-26T05:39:41.3573340Z [954/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-neon-1x8.c.o 2024-06-26T05:39:41.3586250Z [955/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-neon-1x16.c.o 2024-06-26T05:39:41.3655890Z [956/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-neon-2x4.c.o 2024-06-26T05:39:41.3782870Z [957/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-neon-2x8.c.o 2024-06-26T05:39:41.4645610Z [958/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-neon-2x16.c.o 2024-06-26T05:39:41.4746920Z [959/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-neon-4x4.c.o 2024-06-26T05:39:41.4923490Z [960/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-neon-4x16.c.o 2024-06-26T05:39:41.5041700Z [961/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:41.5078320Z [962/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-neon-4x8.c.o 2024-06-26T05:39:41.5417190Z [963/5905] 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 2024-06-26T05:39:41.5515050Z [964/5905] 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 2024-06-26T05:39:41.5651190Z [965/5905] 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 2024-06-26T05:39:41.5669750Z [966/5905] 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 2024-06-26T05:39:41.5742100Z [967/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:41.6659050Z [968/5905] 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 2024-06-26T05:39:41.6764070Z [969/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:41.7068000Z [970/5905] 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 2024-06-26T05:39:41.7272710Z [971/5905] 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 2024-06-26T05:39:41.7276470Z [972/5905] 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 2024-06-26T05:39:41.7416820Z [973/5905] 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 2024-06-26T05:39:41.7462060Z [974/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-neon-lane-ld64.c.o 2024-06-26T05:39:41.7587850Z [975/5905] 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 2024-06-26T05:39:41.7600720Z [976/5905] 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 2024-06-26T05:39:41.7798510Z [977/5905] 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 2024-06-26T05:39:41.8699350Z [978/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u8.c.o 2024-06-26T05:39:41.8899660Z [979/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u16.c.o 2024-06-26T05:39:41.8903000Z [980/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u24.c.o 2024-06-26T05:39:41.9035850Z [981/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u32.c.o 2024-06-26T05:39:41.9116880Z [982/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u16.c.o 2024-06-26T05:39:41.9202300Z [983/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u8.c.o 2024-06-26T05:39:41.9311070Z [984/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u8-acc2.c.o 2024-06-26T05:39:41.9314850Z [985/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u32.c.o 2024-06-26T05:39:41.9395690Z [986/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u24.c.o 2024-06-26T05:39:41.9729490Z [987/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u4.c.o 2024-06-26T05:39:42.0539710Z [988/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u12-acc2.c.o 2024-06-26T05:39:42.0561170Z [989/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u12-acc3.c.o 2024-06-26T05:39:42.0714490Z [990/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u8.c.o 2024-06-26T05:39:42.0742390Z [991/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u16-acc2.c.o 2024-06-26T05:39:42.0908650Z [992/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u20-acc2.c.o 2024-06-26T05:39:42.0914170Z [993/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u12.c.o 2024-06-26T05:39:42.0929360Z [994/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u16.c.o 2024-06-26T05:39:42.1149830Z [995/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u20.c.o 2024-06-26T05:39:42.1153380Z [996/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u16-acc4.c.o 2024-06-26T05:39:42.1388850Z [997/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u20-acc5.c.o 2024-06-26T05:39:42.2087180Z [998/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u4.c.o 2024-06-26T05:39:42.2288400Z [999/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u12-acc2.c.o 2024-06-26T05:39:42.2391950Z [1000/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u8-acc2.c.o 2024-06-26T05:39:42.2456800Z [1001/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16-acc2.c.o 2024-06-26T05:39:42.2531650Z [1002/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u12-acc3.c.o 2024-06-26T05:39:42.2644250Z [1003/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u12.c.o 2024-06-26T05:39:42.2726840Z [1004/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16-acc4.c.o 2024-06-26T05:39:42.2836680Z [1005/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u8.c.o 2024-06-26T05:39:42.2931160Z [1006/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16.c.o 2024-06-26T05:39:42.3171830Z [1007/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u20-acc2.c.o 2024-06-26T05:39:42.3698080Z [1008/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u20.c.o 2024-06-26T05:39:42.3877030Z [1009/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u20-acc5.c.o 2024-06-26T05:39:42.4251180Z [1010/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc2.c.o 2024-06-26T05:39:42.4256640Z [1011/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u8-acc2.c.o 2024-06-26T05:39:42.4280620Z [1012/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u4.c.o 2024-06-26T05:39:42.4352250Z [1013/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u12-acc3.c.o 2024-06-26T05:39:42.4591950Z [1014/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u8-acc2.c.o 2024-06-26T05:39:42.4596240Z [1015/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-neon-u4.c.o 2024-06-26T05:39:42.4659220Z [1016/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc4.c.o 2024-06-26T05:39:42.5265320Z [1017/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u4.c.o 2024-06-26T05:39:42.5325540Z [1018/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-neon-u4.c.o 2024-06-26T05:39:42.5562800Z [1019/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-neon-u8.c.o 2024-06-26T05:39:42.5909700Z [1020/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-neon-u32.c.o 2024-06-26T05:39:42.5953390Z [1021/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-neon-u16.c.o 2024-06-26T05:39:42.5996960Z [1022/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-neon-u8.c.o 2024-06-26T05:39:42.6004380Z [1023/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-neon-u24.c.o 2024-06-26T05:39:42.6226290Z [1024/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-f32-cvt-neon-int32.c.o 2024-06-26T05:39:42.6240780Z [1025/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-f32-cvt-neon-int16.c.o 2024-06-26T05:39:42.6904630Z [1026/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expm1minus-neon-rr2-lut16-p3.c.o 2024-06-26T05:39:42.7036320Z [1027/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-f16-cvt-neon.c.o 2024-06-26T05:39:42.7132710Z [1028/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expm1minus-neon-rr2-p6.c.o 2024-06-26T05:39:42.7182760Z [1029/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-qs8-cvt-neon.c.o 2024-06-26T05:39:42.7509680Z [1030/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundu-neon-addsub.c.o 2024-06-26T05:39:42.7671570Z [1031/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-qu8-cvt-neon.c.o 2024-06-26T05:39:42.7678460Z [1032/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundd-neon-addsub.c.o 2024-06-26T05:39:42.7687220Z [1033/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundd-neon-cvt.c.o 2024-06-26T05:39:42.7853840Z [1034/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundne-neon-addsub.c.o 2024-06-26T05:39:42.8059050Z [1035/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundu-neon-cvt.c.o 2024-06-26T05:39:42.8651720Z [1036/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundz-neon-addsub.c.o 2024-06-26T05:39:42.8854080Z [1037/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neon-rr2-lut2048-p1-nr2recps.c.o 2024-06-26T05:39:42.8923610Z [1038/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neon-rr2-lut64-p2-nr2recps.c.o 2024-06-26T05:39:42.8925350Z [1039/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundz-neon-cvt.c.o 2024-06-26T05:39:42.9148820Z [1040/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neon-rr2-p5-nr2recps.c.o 2024-06-26T05:39:42.9427990Z [1041/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sqrt-neon-nr2rsqrts.c.o 2024-06-26T05:39:42.9652940Z [1042/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neon-expm1minus-rr2-lut8-p4h2ts-nr2recps.c.o 2024-06-26T05:39:42.9727810Z [1043/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sqrt-neon-nr1rsqrts.c.o 2024-06-26T05:39:42.9998310Z [1044/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neon-expm1minus-rr1-p6h5ts-nr2recps.c.o 2024-06-26T05:39:43.0077070Z [1045/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sqrt-neon-nr3rsqrts.c.o 2024-06-26T05:39:43.0631320Z [1046/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neon-expm1minus-rr2-lut8-p4h3ps-nr2recps.c.o 2024-06-26T05:39:43.0635200Z [1047/5905] 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 2024-06-26T05:39:43.0764670Z [1048/5905] 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 2024-06-26T05:39:43.0906300Z [1049/5905] 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.c.o 2024-06-26T05:39:43.0924830Z [1050/5905] 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 2024-06-26T05:39:43.1224480Z [1051/5905] 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 2024-06-26T05:39:43.1591360Z [1052/5905] 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 2024-06-26T05:39:43.1835130Z [1053/5905] 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 2024-06-26T05:39:43.2034790Z [1054/5905] 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 2024-06-26T05:39:43.2152480Z [1055/5905] 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 2024-06-26T05:39:43.2451800Z [1056/5905] 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.c.o 2024-06-26T05:39:43.2695910Z [1057/5905] 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 2024-06-26T05:39:43.3013690Z [1058/5905] 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 2024-06-26T05:39:43.3076570Z [1059/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c2s4-minmax-neon-mlal.c.o 2024-06-26T05:39:43.3097970Z [1060/5905] 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 2024-06-26T05:39:43.3318880Z [1061/5905] 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 2024-06-26T05:39:43.3396700Z [1062/5905] 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 2024-06-26T05:39:43.3965370Z [1063/5905] 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 2024-06-26T05:39:43.4217590Z [1064/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8c2s4-minmax-neon-mlal.c.o 2024-06-26T05:39:43.4453830Z [1065/5905] 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 2024-06-26T05:39:43.4502290Z [1066/5905] 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 2024-06-26T05:39:43.4568020Z [1067/5905] 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 2024-06-26T05:39:43.4644410Z [1068/5905] 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 2024-06-26T05:39:43.4706460Z [1069/5905] 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 2024-06-26T05:39:43.4876080Z [1070/5905] 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 2024-06-26T05:39:43.5416110Z [1071/5905] 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 2024-06-26T05:39:43.5729460Z [1072/5905] 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 2024-06-26T05:39:43.6136780Z [1073/5905] 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 2024-06-26T05:39:43.6175490Z [1074/5905] 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 2024-06-26T05:39:43.6349830Z [1075/5905] 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 2024-06-26T05:39:43.6352870Z [1076/5905] 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 2024-06-26T05:39:43.6403620Z [1077/5905] 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 2024-06-26T05:39:43.6433720Z [1078/5905] 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 2024-06-26T05:39:43.6657020Z [1079/5905] 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 2024-06-26T05:39:43.6805330Z [1080/5905] 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 2024-06-26T05:39:43.7608350Z [1081/5905] 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 2024-06-26T05:39:43.7799740Z [1082/5905] 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 2024-06-26T05:39:43.7836800Z [1083/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c2s4-minmax-neon-mlal.c.o 2024-06-26T05:39:43.7860120Z [1084/5905] 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 2024-06-26T05:39:43.8213420Z [1085/5905] 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 2024-06-26T05:39:43.8558060Z [1086/5905] 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 2024-06-26T05:39:43.8599680Z [1087/5905] 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 2024-06-26T05:39:43.8761950Z [1088/5905] 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 2024-06-26T05:39:43.8887500Z [1089/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8c2s4-minmax-neon-mlal.c.o 2024-06-26T05:39:43.8892370Z [1090/5905] 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 2024-06-26T05:39:43.9577460Z [1091/5905] 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 2024-06-26T05:39:43.9634940Z [1092/5905] 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 2024-06-26T05:39:43.9640380Z [1093/5905] 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 2024-06-26T05:39:43.9962070Z [1094/5905] 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 2024-06-26T05:39:44.0095950Z [1095/5905] 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 2024-06-26T05:39:44.0489750Z [1096/5905] 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 2024-06-26T05:39:44.0586610Z [1097/5905] 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 2024-06-26T05:39:44.0594490Z [1098/5905] 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 2024-06-26T05:39:44.0809340Z [1099/5905] 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 2024-06-26T05:39:44.0956390Z [1100/5905] 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 2024-06-26T05:39:44.1444950Z [1101/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:39:44.1732430Z [1102/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2024-06-26T05:39:44.1837510Z [1103/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:39:44.1962310Z [1104/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:39:44.2244510Z [1105/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2024-06-26T05:39:44.2433190Z [1106/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mla8-ld128.c.o 2024-06-26T05:39:44.2557870Z [1107/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul8-ld128.c.o 2024-06-26T05:39:44.2663810Z [1108/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2024-06-26T05:39:44.2686120Z [1109/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:39:44.3030980Z [1110/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2024-06-26T05:39:44.3685330Z [1111/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:39:44.3935790Z [1112/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:39:44.3959930Z [1113/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2024-06-26T05:39:44.3968260Z [1114/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:39:44.4156210Z [1115/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:39:44.4198480Z [1116/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2024-06-26T05:39:44.4403960Z [1117/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:39:44.5532530Z [1118/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2024-06-26T05:39:44.5535460Z [1119/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mla8-ld128.c.o 2024-06-26T05:39:44.5913530Z [1120/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2024-06-26T05:39:44.5924660Z [1121/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:39:44.5980180Z [1122/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:39:44.6104420Z [1123/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul8-ld128.c.o 2024-06-26T05:39:44.6191930Z [1124/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:39:44.6379860Z [1125/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:39:44.6425990Z [1126/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2024-06-26T05:39:44.6535900Z [1127/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2024-06-26T05:39:44.7203290Z [1128/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:39:44.7448430Z [1129/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mla8-ld128.c.o 2024-06-26T05:39:44.7655860Z [1130/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:39:44.7661840Z [1131/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2024-06-26T05:39:44.7766200Z [1132/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u4.c.o 2024-06-26T05:39:44.7917120Z [1133/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u8.c.o 2024-06-26T05:39:44.8216400Z [1134/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2024-06-26T05:39:44.8355720Z [1135/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-neon-u4.c.o 2024-06-26T05:39:44.8814060Z [1136/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-neon-u8.c.o 2024-06-26T05:39:44.8916970Z [1137/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u8.c.o 2024-06-26T05:39:44.9532510Z [1138/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-neon-u4.c.o 2024-06-26T05:39:44.9742230Z [1139/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-neon-u8.c.o 2024-06-26T05:39:44.9745270Z [1140/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u16.c.o 2024-06-26T05:39:44.9781520Z [1141/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u4.c.o 2024-06-26T05:39:44.9855120Z [1142/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u4.c.o 2024-06-26T05:39:45.0072440Z [1143/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u8.c.o 2024-06-26T05:39:45.0103320Z [1144/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u12.c.o 2024-06-26T05:39:45.0574580Z [1145/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u16.c.o 2024-06-26T05:39:45.0666500Z [1146/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u8.c.o 2024-06-26T05:39:45.0791170Z [1147/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u4.c.o 2024-06-26T05:39:45.1032350Z [1148/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u12.c.o 2024-06-26T05:39:45.1507330Z [1149/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u16.c.o 2024-06-26T05:39:45.1704580Z [1150/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u24.c.o 2024-06-26T05:39:45.1735700Z [1151/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u4.c.o 2024-06-26T05:39:45.1843590Z [1152/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u12.c.o 2024-06-26T05:39:45.1965360Z [1153/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u8.c.o 2024-06-26T05:39:45.2136310Z [1154/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u20.c.o 2024-06-26T05:39:45.2561710Z [1155/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u8.c.o 2024-06-26T05:39:45.2773730Z [1156/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u24.c.o 2024-06-26T05:39:45.2788040Z [1157/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u20.c.o 2024-06-26T05:39:45.2869920Z [1158/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u16.c.o 2024-06-26T05:39:45.3163980Z [1159/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u4.c.o 2024-06-26T05:39:45.3401150Z [1160/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u4.c.o 2024-06-26T05:39:45.3657860Z [1161/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u16.c.o 2024-06-26T05:39:45.3860260Z [1162/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-neon-2x.c.o 2024-06-26T05:39:45.3926920Z [1163/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u8.c.o 2024-06-26T05:39:45.4027510Z [1164/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-neon-u4.c.o 2024-06-26T05:39:45.4029580Z [1165/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neon-2x.c.o 2024-06-26T05:39:45.4922250Z [1166/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neon-u8.c.o 2024-06-26T05:39:45.4950020Z [1167/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-neon-u8.c.o 2024-06-26T05:39:45.5091760Z [1168/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neon-u4.c.o 2024-06-26T05:39:45.5135640Z [1169/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neon-u4.c.o 2024-06-26T05:39:45.5176980Z [1170/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neon-u8.c.o 2024-06-26T05:39:45.5328420Z [1171/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neon-u8.c.o 2024-06-26T05:39:45.5392520Z [1172/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neon-u4.c.o 2024-06-26T05:39:45.5422970Z [1173/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neon-u4.c.o 2024-06-26T05:39:45.6185190Z [1174/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u4.c.o 2024-06-26T05:39:45.6250930Z [1175/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neon-u8.c.o 2024-06-26T05:39:45.6789480Z [1176/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u20.c.o 2024-06-26T05:39:45.6821330Z [1177/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u8.c.o 2024-06-26T05:39:45.6920530Z [1178/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u8.c.o 2024-06-26T05:39:45.7003100Z [1179/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u12.c.o 2024-06-26T05:39:45.7016440Z [1180/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u16.c.o 2024-06-26T05:39:45.7026870Z [1181/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u4.c.o 2024-06-26T05:39:45.7405220Z [1182/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u12.c.o 2024-06-26T05:39:45.7964190Z [1183/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u20.c.o 2024-06-26T05:39:45.7995940Z [1184/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u24.c.o 2024-06-26T05:39:45.8040300Z [1185/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u16.c.o 2024-06-26T05:39:45.8505330Z [1186/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u24.c.o 2024-06-26T05:39:45.8753270Z [1187/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u4.c.o 2024-06-26T05:39:45.8828980Z [1188/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u12.c.o 2024-06-26T05:39:45.8842150Z [1189/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u20.c.o 2024-06-26T05:39:45.8854780Z [1190/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u8.c.o 2024-06-26T05:39:45.9473870Z [1191/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u16.c.o 2024-06-26T05:39:45.9591340Z [1192/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u24.c.o 2024-06-26T05:39:45.9767590Z [1193/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neon-expm1minus-rr1-p6h5ts-nr2recps-u4.c.o 2024-06-26T05:39:45.9809350Z [1194/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neon-expm1minus-rr1-p6h5ts-nr2recps-u12.c.o 2024-06-26T05:39:46.0155140Z [1195/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neon-expm1minus-rr1-p6h5ts-nr2recps-u16.c.o 2024-06-26T05:39:46.0321500Z [1196/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neon-expm1minus-rr1-p6h5ts-nr2recps-u8.c.o 2024-06-26T05:39:46.0475490Z [1197/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-neon-u4.c.o 2024-06-26T05:39:46.0478700Z [1198/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul8-ld128.c.o 2024-06-26T05:39:46.0681250Z [1199/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-neon-u8.c.o 2024-06-26T05:39:46.0910460Z [1200/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-neon-u8.c.o 2024-06-26T05:39:46.4624130Z [1201/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/statusor.cc.o 2024-06-26T05:39:46.4690750Z [1202/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/common.cc.o 2024-06-26T05:39:46.4735910Z [1203/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/strutil.cc.o 2024-06-26T05:39:46.4814970Z /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] 2024-06-26T05:39:46.4922120Z sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), 2024-06-26T05:39:46.4923640Z ^ 2024-06-26T05:39:46.4925600Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h:180:1: note: 'sprintf' has been explicitly marked deprecated here 2024-06-26T05:39:46.4929820Z __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.") 2024-06-26T05:39:46.4931170Z ^ 2024-06-26T05:39:46.4932090Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:218:48: note: expanded from macro '__deprecated_msg' 2024-06-26T05:39:46.4933080Z #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) 2024-06-26T05:39:46.4935020Z ^ 2024-06-26T05:39:46.4935820Z 1 warning generated. 2024-06-26T05:39:46.4937340Z [1204/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/repeated_field.cc.o 2024-06-26T05:39:46.4956800Z [1205/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/status.cc.o 2024-06-26T05:39:46.5101020Z [1206/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/bytestream.cc.o 2024-06-26T05:39:46.5678710Z [1207/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/parse_context.cc.o 2024-06-26T05:39:46.6133480Z [1208/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/int128.cc.o 2024-06-26T05:39:46.6649130Z [1209/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringprintf.cc.o 2024-06-26T05:39:46.6945450Z [1210/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringpiece.cc.o 2024-06-26T05:39:46.8090180Z [1211/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o 2024-06-26T05:39:46.8311330Z [1212/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/time.cc.o 2024-06-26T05:39:46.9104240Z [1213/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.cc.o 2024-06-26T05:39:46.9244800Z [1214/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/api.pb.cc.o 2024-06-26T05:39:46.9329160Z [1215/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.pb.cc.o 2024-06-26T05:39:47.0226150Z [1216/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/importer.cc.o 2024-06-26T05:39:47.0326690Z [1217/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format_lite.cc.o 2024-06-26T05:39:47.1028820Z [1218/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.pb.cc.o 2024-06-26T05:39:47.1521330Z [1219/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/parser.cc.o 2024-06-26T05:39:47.1755320Z [1220/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor_database.cc.o 2024-06-26T05:39:47.2365820Z [1221/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.cc.o 2024-06-26T05:39:47.2397450Z [1222/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/dynamic_message.cc.o 2024-06-26T05:39:47.2620650Z [1223/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/gzip_stream.cc.o 2024-06-26T05:39:47.3268060Z [1224/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/empty.pb.cc.o 2024-06-26T05:39:47.3664300Z [1225/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/field_mask.pb.cc.o 2024-06-26T05:39:47.3753030Z [1226/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/duration.pb.cc.o 2024-06-26T05:39:47.3993390Z [1227/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set_heavy.cc.o 2024-06-26T05:39:47.4470000Z [1228/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_reflection.cc.o 2024-06-26T05:39:47.4571730Z [1229/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven.cc.o 2024-06-26T05:39:47.4782930Z [1230/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/tokenizer.cc.o 2024-06-26T05:39:47.5640260Z [1231/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/printer.cc.o 2024-06-26T05:39:47.5898990Z [1232/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/map_field.cc.o 2024-06-26T05:39:47.6320160Z [1233/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message.cc.o 2024-06-26T05:39:47.7160680Z [1234/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/service.cc.o 2024-06-26T05:39:47.7408010Z [1235/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/reflection_ops.cc.o 2024-06-26T05:39:47.7523640Z [1236/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/source_context.pb.cc.o 2024-06-26T05:39:47.8312410Z [1237/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/substitute.cc.o 2024-06-26T05:39:47.9166340Z [1238/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/timestamp.pb.cc.o 2024-06-26T05:39:47.9225900Z [1239/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/text_format.cc.o 2024-06-26T05:39:47.9469540Z [1240/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/type.pb.cc.o 2024-06-26T05:39:47.9550290Z [1241/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/struct.pb.cc.o 2024-06-26T05:39:47.9561670Z [1242/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_comparator.cc.o 2024-06-26T05:39:47.9859940Z [1243/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/unknown_field_set.cc.o 2024-06-26T05:39:48.1080760Z [1244/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/delimited_message_util.cc.o 2024-06-26T05:39:48.1511540Z [1245/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/default_value_objectwriter.cc.o 2024-06-26T05:39:48.1900100Z [1246/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_mask_util.cc.o 2024-06-26T05:39:48.2750260Z [1247/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/error_listener.cc.o 2024-06-26T05:39:48.2807130Z [1248/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_stream_parser.cc.o 2024-06-26T05:39:48.2839320Z [1249/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/datapiece.cc.o 2024-06-26T05:39:48.2854580Z [1250/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_escaping.cc.o 2024-06-26T05:39:48.3200670Z [1251/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/field_mask_utility.cc.o 2024-06-26T05:39:48.3836650Z [1252/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_objectwriter.cc.o 2024-06-26T05:39:48.4326470Z [1253/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/object_writer.cc.o 2024-06-26T05:39:48.4410020Z [1254/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconvolution.c.o 2024-06-26T05:39:48.4724850Z [1255/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/proto_writer.cc.o 2024-06-26T05:39:48.5925590Z [1256/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectsource.cc.o 2024-06-26T05:39:48.6143860Z [1257/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectwriter.cc.o 2024-06-26T05:39:48.6458950Z [1258/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/any_lite.cc.o 2024-06-26T05:39:48.6478030Z [1259/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info.cc.o 2024-06-26T05:39:48.6959550Z [1260/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field_lite.cc.o 2024-06-26T05:39:48.7618540Z [1261/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/arena.cc.o 2024-06-26T05:39:48.8033260Z [1262/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/io_win32.cc.o 2024-06-26T05:39:48.8353210Z [1263/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_enum_util.cc.o 2024-06-26T05:39:48.8367110Z [1264/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/extension_set.cc.o 2024-06-26T05:39:48.8691720Z [1265/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_util.cc.o 2024-06-26T05:39:48.8950430Z [1266/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o 2024-06-26T05:39:48.9048170Z [1267/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o 2024-06-26T05:39:48.9374030Z [1268/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/implicit_weak_message.cc.o 2024-06-26T05:39:49.0004950Z [1269/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/coded_stream.cc.o 2024-06-26T05:39:49.0668020Z [1270/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o 2024-06-26T05:39:49.0899740Z [1271/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/strtod.cc.o 2024-06-26T05:39:49.1994140Z [1272/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o 2024-06-26T05:39:49.2022120Z [1273/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/strutil.cc.o 2024-06-26T05:39:49.2028480Z /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] 2024-06-26T05:39:49.2032670Z sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), 2024-06-26T05:39:49.2033520Z ^ 2024-06-26T05:39:49.2035310Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h:180:1: note: 'sprintf' has been explicitly marked deprecated here 2024-06-26T05:39:49.2038660Z __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.") 2024-06-26T05:39:49.2040960Z ^ 2024-06-26T05:39:49.2042590Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:218:48: note: expanded from macro '__deprecated_msg' 2024-06-26T05:39:49.2045000Z #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) 2024-06-26T05:39:49.2046140Z ^ 2024-06-26T05:39:49.2046910Z 1 warning generated. 2024-06-26T05:39:49.2269120Z [1274/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/repeated_field.cc.o 2024-06-26T05:39:49.2308810Z [1275/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/message_lite.cc.o 2024-06-26T05:39:49.2351800Z [1276/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/parse_context.cc.o 2024-06-26T05:39:49.2365510Z [1277/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/bytestream.cc.o 2024-06-26T05:39:49.2670890Z [1278/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/common.cc.o 2024-06-26T05:39:49.2998630Z [1279/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/int128.cc.o 2024-06-26T05:39:49.4264060Z [1280/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/statusor.cc.o 2024-06-26T05:39:49.4296340Z [1281/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/status.cc.o 2024-06-26T05:39:49.4915850Z [1282/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringpiece.cc.o 2024-06-26T05:39:49.5859410Z [1283/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringprintf.cc.o 2024-06-26T05:39:49.5912970Z [1284/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o 2024-06-26T05:39:49.6199420Z [1285/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/time.cc.o 2024-06-26T05:39:49.6255880Z [1286/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any_lite.cc.o 2024-06-26T05:39:49.6488610Z [1287/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/wire_format_lite.cc.o 2024-06-26T05:39:49.6781750Z [1288/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/arena.cc.o 2024-06-26T05:39:49.7322230Z [1289/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set.cc.o 2024-06-26T05:39:49.7461450Z [1290/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/io_win32.cc.o 2024-06-26T05:39:49.8162710Z [1291/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_util.cc.o 2024-06-26T05:39:49.8383990Z [1292/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_enum_util.cc.o 2024-06-26T05:39:49.8893160Z [1293/5905] Linking CXX static library lib/libprotobuf-lite.a 2024-06-26T05:39:49.8915120Z [1294/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/strtod.cc.o 2024-06-26T05:39:49.9214290Z [1295/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o 2024-06-26T05:39:49.9251980Z [1296/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/implicit_weak_message.cc.o 2024-06-26T05:39:49.9449700Z [1297/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/coded_stream.cc.o 2024-06-26T05:39:50.0122310Z [1298/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o 2024-06-26T05:39:50.0549980Z [1299/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/well_known_types_embed.cc.o 2024-06-26T05:39:50.0898800Z [1300/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o 2024-06-26T05:39:50.0989010Z [1301/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o 2024-06-26T05:39:50.1941340Z [1302/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message_lite.cc.o 2024-06-26T05:39:50.2284470Z [1303/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info_test_helper.cc.o 2024-06-26T05:39:50.3182150Z [1304/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_field.cc.o 2024-06-26T05:39:50.3457000Z [1305/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc.o 2024-06-26T05:39:50.3529680Z [1306/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum.cc.o 2024-06-26T05:39:50.3678270Z [1307/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_extension.cc.o 2024-06-26T05:39:50.4032530Z [1308/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_file.cc.o 2024-06-26T05:39:50.4826390Z [1309/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_generator.cc.o 2024-06-26T05:39:50.5196660Z [1310/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc.o 2024-06-26T05:39:50.5954220Z [1311/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message.cc.o 2024-06-26T05:39:50.6137160Z [1312/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc.o 2024-06-26T05:39:50.7063290Z [1313/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc.o 2024-06-26T05:39:50.7375400Z [1314/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc.o 2024-06-26T05:39:50.7805960Z [1315/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.cc.o 2024-06-26T05:39:50.7966490Z [1316/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc.o 2024-06-26T05:39:50.8286810Z [1317/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/php/php_generator.cc.o 2024-06-26T05:39:50.8351690Z [1318/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.pb.cc.o 2024-06-26T05:39:50.8557090Z [1319/5905] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2024-06-26T05:39:50.8812250Z [1320/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/ruby/ruby_generator.cc.o 2024-06-26T05:39:50.9097720Z [1321/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/subprocess.cc.o 2024-06-26T05:39:50.9162500Z [1322/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/python/python_generator.cc.o 2024-06-26T05:39:50.9681390Z [1323/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/zip_writer.cc.o 2024-06-26T05:39:50.9685610Z [1324/5905] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2024-06-26T05:39:50.9746140Z [1325/5905] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2024-06-26T05:39:50.9906690Z [1326/5905] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2024-06-26T05:39:50.9966460Z [1327/5905] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/gcd.c.o 2024-06-26T05:39:50.9979670Z [1328/5905] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2024-06-26T05:39:51.0160240Z [1329/5905] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2024-06-26T05:39:51.0397500Z [1330/5905] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/uarch.c.o 2024-06-26T05:39:51.0578280Z [1331/5905] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2024-06-26T05:39:51.0812630Z [1332/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/protoc.dir/__/src/google/protobuf/compiler/main.cc.o 2024-06-26T05:39:51.0887710Z [1333/5905] Linking C static library lib/libpthreadpool.a 2024-06-26T05:39:51.1093940Z [1334/5905] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2024-06-26T05:39:51.1100270Z [1335/5905] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/cache.c.o 2024-06-26T05:39:51.1312850Z [1336/5905] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2024-06-26T05:39:51.1352090Z [1337/5905] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/mach/init.c.o 2024-06-26T05:39:51.1570140Z [1338/5905] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2024-06-26T05:39:51.1615910Z [1339/5905] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2024-06-26T05:39:51.1860410Z [1340/5905] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/mach/topology.c.o 2024-06-26T05:39:51.2225270Z [1341/5905] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/mach/topology.c.o 2024-06-26T05:39:51.2276010Z [1342/5905] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/cache.c.o 2024-06-26T05:39:51.2295530Z [1343/5905] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/mach/init.c.o 2024-06-26T05:39:51.2377080Z [1344/5905] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/uarch.c.o 2024-06-26T05:39:51.2514400Z [1345/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/init.c.o 2024-06-26T05:39:51.2521630Z [1346/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/average-pooling.c.o 2024-06-26T05:39:51.2740680Z [1347/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/add.c.o 2024-06-26T05:39:51.2747660Z [1348/5905] Linking C static library lib/libcpuinfo.a 2024-06-26T05:39:51.2820260Z [1349/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/channel-shuffle.c.o 2024-06-26T05:39:51.3021970Z [1350/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/clamp.c.o 2024-06-26T05:39:51.3428230Z [1351/5905] Linking C static library lib/libcpuinfo_internals.a 2024-06-26T05:39:51.4026860Z [1352/5905] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-prepack.cc.o 2024-06-26T05:39:51.4128430Z [1353/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/convolution.c.o 2024-06-26T05:39:51.6328690Z [1354/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/time_util.cc.o 2024-06-26T05:39:51.6484360Z [1355/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wrappers.pb.cc.o 2024-06-26T05:39:51.6506980Z [1356/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/json_util.cc.o 2024-06-26T05:39:51.6522470Z [1357/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format.cc.o 2024-06-26T05:39:51.6777370Z [1358/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/utility.cc.o 2024-06-26T05:39:51.6881680Z [1359/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/type_resolver_util.cc.o 2024-06-26T05:39:51.6993320Z [1360/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/message_differencer.cc.o 2024-06-26T05:39:51.7498640Z [1361/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/code_generator.cc.o 2024-06-26T05:39:51.9723970Z [1362/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/command_line_interface.cc.o 2024-06-26T05:39:51.9976220Z [1363/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum.cc.o 2024-06-26T05:39:52.0143050Z [1364/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_field.cc.o 2024-06-26T05:39:52.0299210Z [1365/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum_field.cc.o 2024-06-26T05:39:52.0585620Z [1366/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_generator.cc.o 2024-06-26T05:39:52.0657000Z [1367/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_file.cc.o 2024-06-26T05:39:52.0788960Z [1368/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_extension.cc.o 2024-06-26T05:39:52.0826980Z [1369/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_helpers.cc.o 2024-06-26T05:39:52.0981330Z [1370/5905] Linking CXX static library lib/libprotobuf.a 2024-06-26T05:39:52.2611760Z [1371/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_map_field.cc.o 2024-06-26T05:39:52.3541470Z [1372/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message.cc.o 2024-06-26T05:39:52.3705850Z [1373/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc.o 2024-06-26T05:39:52.3928700Z [1374/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message_field.cc.o 2024-06-26T05:39:52.4688970Z [1375/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_service.cc.o 2024-06-26T05:39:52.4708200Z [1376/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o 2024-06-26T05:39:52.4822810Z [1377/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc.o 2024-06-26T05:39:52.5040500Z [1378/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum.cc.o 2024-06-26T05:39:52.5283460Z [1379/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_string_field.cc.o 2024-06-26T05:39:52.6108670Z [1380/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o 2024-06-26T05:39:52.6739000Z [1381/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o 2024-06-26T05:39:52.7435330Z [1382/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o 2024-06-26T05:39:52.7617430Z [1383/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_generator.cc.o 2024-06-26T05:39:52.8148840Z [1384/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o 2024-06-26T05:39:52.8917120Z [1385/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message.cc.o 2024-06-26T05:39:52.8994230Z [1386/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o 2024-06-26T05:39:52.9552950Z [1387/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o 2024-06-26T05:39:52.9961920Z [1388/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o 2024-06-26T05:39:52.9965610Z [1389/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o 2024-06-26T05:39:53.0632280Z [1390/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o 2024-06-26T05:39:53.1042240Z [1391/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o 2024-06-26T05:39:53.1351150Z [1392/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o 2024-06-26T05:39:53.2008320Z [1393/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_context.cc.o 2024-06-26T05:39:53.2548740Z [1394/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_doc_comment.cc.o 2024-06-26T05:39:53.2861600Z [1395/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o 2024-06-26T05:39:53.2902920Z [1396/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum.cc.o 2024-06-26T05:39:53.3652090Z [1397/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field.cc.o 2024-06-26T05:39:53.3762970Z [1398/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field_lite.cc.o 2024-06-26T05:39:53.4279940Z [1399/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension.cc.o 2024-06-26T05:39:53.4575550Z [1400/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_lite.cc.o 2024-06-26T05:39:53.5456680Z [1401/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_field.cc.o 2024-06-26T05:39:53.5737440Z [1402/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension_lite.cc.o 2024-06-26T05:39:53.6855060Z [1403/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_file.cc.o 2024-06-26T05:39:53.6974580Z [1404/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_helpers.cc.o 2024-06-26T05:39:53.6977700Z [1405/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator_factory.cc.o 2024-06-26T05:39:53.7322760Z [1406/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator.cc.o 2024-06-26T05:39:53.7558100Z [1407/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field_lite.cc.o 2024-06-26T05:39:53.7579340Z [1408/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field.cc.o 2024-06-26T05:39:53.7997000Z [1409/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message.cc.o 2024-06-26T05:39:53.8327460Z [1410/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder.cc.o 2024-06-26T05:39:53.9599880Z [1411/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder_lite.cc.o 2024-06-26T05:39:53.9779270Z [1412/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field.cc.o 2024-06-26T05:39:54.1072890Z [1413/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_lite.cc.o 2024-06-26T05:39:54.1246700Z [1414/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field_lite.cc.o 2024-06-26T05:39:54.1390030Z [1415/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field_lite.cc.o 2024-06-26T05:39:54.1407790Z [1416/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_name_resolver.cc.o 2024-06-26T05:39:54.1471300Z [1417/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_service.cc.o 2024-06-26T05:39:54.1864560Z [1418/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field.cc.o 2024-06-26T05:39:54.1961830Z [1419/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-scalar.c.o 2024-06-26T05:39:54.2215950Z [1420/5905] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-dq-aarch64-neon.S.o 2024-06-26T05:39:54.2275330Z [1421/5905] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x4-packA-aarch64-neon.S.o 2024-06-26T05:39:54.2543830Z [1422/5905] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x8c1x4-dq-packedA-aarch64-neon.S.o 2024-06-26T05:39:54.2552540Z [1423/5905] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x8c8x1-dq-packedA-aarch64-neon.S.o 2024-06-26T05:39:54.2660080Z [1424/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field.cc.o 2024-06-26T05:39:54.2935000Z [1425/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_shared_code_generator.cc.o 2024-06-26T05:39:54.2997820Z [1426/5905] Building C object confu-deps/clog/CMakeFiles/clog.dir/src/clog.c.o 2024-06-26T05:39:54.3380390Z [1427/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/init.c.o 2024-06-26T05:39:54.3607300Z [1428/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/pooling-output.c.o 2024-06-26T05:39:54.3885430Z [1429/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/softmax-output.c.o 2024-06-26T05:39:54.3892750Z [1430/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-inference.c.o 2024-06-26T05:39:54.3957380Z [1431/5905] Linking C static library lib/libclog.a 2024-06-26T05:39:54.4157890Z [1432/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-output.c.o 2024-06-26T05:39:54.4215800Z [1433/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-output.c.o 2024-06-26T05:39:54.4411490Z [1434/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-inference.c.o 2024-06-26T05:39:54.4701570Z [1435/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-input-gradient.c.o 2024-06-26T05:39:54.4964400Z [1436/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-kernel-gradient.c.o 2024-06-26T05:39:54.4991640Z [1437/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-input-gradient.c.o 2024-06-26T05:39:54.5239170Z [1438/5905] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/js_generator.cc.o 2024-06-26T05:39:54.5521800Z [1439/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-output.c.o 2024-06-26T05:39:54.5687700Z [1440/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/2d-winograd-8x8-3x3.c.o 2024-06-26T05:39:54.5719790Z [1441/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/h4gemm.c.o 2024-06-26T05:39:54.5777360Z [1442/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/2d-winograd-8x8-3x3-fp16.c.o 2024-06-26T05:39:54.5818470Z [1443/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/2d-fourier-8x8.c.o 2024-06-26T05:39:54.6410320Z [1444/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4gemm.c.o 2024-06-26T05:39:54.6577710Z [1445/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/2d-fourier-16x16.c.o 2024-06-26T05:39:54.6760640Z [1446/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm-conjb.c.o 2024-06-26T05:39:54.6840730Z [1447/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm-conjb.c.o 2024-06-26T05:39:54.7290610Z [1448/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/relu.c.o 2024-06-26T05:39:54.7323030Z [1449/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/conv1x1.c.o 2024-06-26T05:39:54.7417730Z [1450/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/softmax.c.o 2024-06-26T05:39:54.7690360Z [1451/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/sdotxf.c.o 2024-06-26T05:39:54.7859940Z [1452/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/sgemm.c.o 2024-06-26T05:39:54.8023000Z [1453/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm.c.o 2024-06-26T05:39:54.8297070Z [1454/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/blas/shdotxf.c.o 2024-06-26T05:39:54.8439080Z [1455/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-output.c.o 2024-06-26T05:39:54.8441410Z [1456/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm.c.o 2024-06-26T05:39:54.8686410Z [1457/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm-conjb-transc.c.o 2024-06-26T05:39:54.8735820Z [1458/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-kernel.c.o 2024-06-26T05:39:54.8953050Z [1459/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-input-gradient.c.o 2024-06-26T05:39:54.8996250Z [1460/5905] Linking CXX static library lib/libprotoc.a 2024-06-26T05:39:54.9265960Z [1461/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm-conjb-transc.c.o 2024-06-26T05:39:54.9576150Z [1462/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected-sparse.c.o 2024-06-26T05:39:54.9634040Z [1463/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/fully-connected-output.c.o 2024-06-26T05:39:54.9688280Z [1464/5905] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-prepack.cc.o 2024-06-26T05:39:54.9758590Z [1465/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected.c.o 2024-06-26T05:39:54.9865460Z [1466/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/global-average-pooling.c.o 2024-06-26T05:39:55.0055310Z [1467/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardswish.c.o 2024-06-26T05:39:55.0347540Z [1468/5905] Linking C static library lib/libnnpack.a 2024-06-26T05:39:55.0369990Z [1469/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/leaky-relu.c.o 2024-06-26T05:39:55.0505660Z [1470/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardsigmoid.c.o 2024-06-26T05:39:55.0860340Z [1471/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/max-pooling.c.o 2024-06-26T05:39:55.1008480Z [1472/5905] Linking CXX executable bin/protoc-3.13.0.0 2024-06-26T05:39:55.1205250Z [1473/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/softargmax.c.o 2024-06-26T05:39:55.1252320Z [1474/5905] Creating executable symlink bin/protoc 2024-06-26T05:39:55.1275220Z [1475/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/tanh.c.o 2024-06-26T05:39:55.1326740Z [1476/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-delete.c.o 2024-06-26T05:39:55.1476610Z [1477/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sigmoid.c.o 2024-06-26T05:39:55.2289730Z [1478/5905] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-run.cc.o 2024-06-26T05:39:55.2378900Z [1479/5905] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-unpack.cc.o 2024-06-26T05:39:55.2536210Z [1480/5905] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-dynamic-run.cc.o 2024-06-26T05:39:55.2697120Z [1481/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8lut32norm/scalar.c.o 2024-06-26T05:39:55.2724740Z [1482/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-run.c.o 2024-06-26T05:39:55.2933180Z [1483/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8lut/scalar.c.o 2024-06-26T05:39:55.3000540Z [1484/5905] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconv-run.cc.o 2024-06-26T05:39:55.3012900Z [1485/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/indirection.c.o 2024-06-26T05:39:55.3014320Z [1486/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-psimd.c.o 2024-06-26T05:39:55.3369040Z [1487/5905] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-run.cc.o 2024-06-26T05:39:55.3813490Z [1488/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/mp8x9p8q-neon.c.o 2024-06-26T05:39:55.3999070Z [1489/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8x9-neon.c.o 2024-06-26T05:39:55.4383890Z [1490/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/4x8-neon.c.o 2024-06-26T05:39:55.4396060Z [1491/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8xm-neon.c.o 2024-06-26T05:39:55.4516550Z [1492/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/8x8-neon.c.o 2024-06-26T05:39:55.4632820Z [1493/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x27-neon.c.o 2024-06-26T05:39:55.4715040Z [1494/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-neon.c.o 2024-06-26T05:39:55.4849860Z [1495/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-neon.c.o 2024-06-26T05:39:55.4884970Z [1496/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-neon-per-channel.c.o 2024-06-26T05:39:55.5281680Z [1497/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/mp8x7p7q-neon.c.o 2024-06-26T05:39:55.5593560Z [1498/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8x7-neon.c.o 2024-06-26T05:39:55.5674100Z [1499/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-neon-per-channel.c.o 2024-06-26T05:39:55.6209370Z [1500/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8xm-neon.c.o 2024-06-26T05:39:55.6310830Z [1501/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8c2-xzp-neon.c.o 2024-06-26T05:39:55.6366680Z [1502/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x-sumrows-neon.c.o 2024-06-26T05:39:55.6420900Z [1503/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/6x4-neon.c.o 2024-06-26T05:39:55.6491930Z [1504/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8-dq-neon.c.o 2024-06-26T05:39:55.6652650Z [1505/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8-neon.c.o 2024-06-26T05:39:55.6788500Z [1506/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-neon.c.o 2024-06-26T05:39:55.7014500Z [1507/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8vadd/neon.c.o 2024-06-26T05:39:55.7143580Z [1508/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-neon.c.o 2024-06-26T05:39:55.7698520Z [1509/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/5x8-neon.c.o 2024-06-26T05:39:55.7758870Z [1510/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8clamp/neon.c.o 2024-06-26T05:39:55.8093440Z [1511/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x3-neon.c.o 2024-06-26T05:39:55.8241780Z [1512/5905] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/8x8-aarch64-neon.S.o 2024-06-26T05:39:55.8361740Z [1513/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x4-neon.c.o 2024-06-26T05:39:55.8388230Z [1514/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8rmax/neon.c.o 2024-06-26T05:39:55.8589650Z [1515/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x2-neon.c.o 2024-06-26T05:39:55.8593120Z [1516/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/xm-neon.c.o 2024-06-26T05:39:55.8597060Z [1517/5905] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-aarch64-neon.S.o 2024-06-26T05:39:55.8657630Z [1518/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/16x9p8q-neon.c.o 2024-06-26T05:39:55.8667260Z [1519/5905] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/sub16-neon.c.o 2024-06-26T05:39:55.9006020Z [1520/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-4x-scalar-c1.c.o 2024-06-26T05:39:55.9452060Z [1521/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2024-06-26T05:39:55.9465310Z [1522/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2024-06-26T05:39:55.9732800Z [1523/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o 2024-06-26T05:39:55.9790890Z [1524/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o 2024-06-26T05:39:55.9893870Z [1525/5905] Linking CXX static library lib/libpytorch_qnnpack.a 2024-06-26T05:39:56.0053470Z [1526/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.o 2024-06-26T05:39:56.0071790Z [1527/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o 2024-06-26T05:39:56.0160160Z [1528/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.o 2024-06-26T05:39:56.0290840Z [1529/5905] 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 2024-06-26T05:39:56.0368140Z [1530/5905] 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 2024-06-26T05:39:56.0948780Z [1531/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1.c.o 2024-06-26T05:39:56.0971780Z [1532/5905] 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 2024-06-26T05:39:56.1399620Z [1533/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-3x1.c.o 2024-06-26T05:39:56.1422730Z [1534/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1.c.o 2024-06-26T05:39:56.1425080Z [1535/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.o 2024-06-26T05:39:56.1581850Z [1536/5905] 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 2024-06-26T05:39:56.1694700Z [1537/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-5x1.c.o 2024-06-26T05:39:56.1897370Z [1538/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.o 2024-06-26T05:39:56.1996760Z [1539/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-6x1.c.o 2024-06-26T05:39:56.2156410Z [1540/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.o 2024-06-26T05:39:56.2483710Z [1541/5905] 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 2024-06-26T05:39:56.2491530Z [1542/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1.c.o 2024-06-26T05:39:56.2696960Z [1543/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.o 2024-06-26T05:39:56.2879160Z [1544/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1.c.o 2024-06-26T05:39:56.3004790Z [1545/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-3x1.c.o 2024-06-26T05:39:56.3158260Z [1546/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-4x1.c.o 2024-06-26T05:39:56.3240650Z [1547/5905] 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 2024-06-26T05:39:56.3268430Z [1548/5905] 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 2024-06-26T05:39:56.3387960Z [1549/5905] 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 2024-06-26T05:39:56.3690170Z [1550/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.o 2024-06-26T05:39:56.3897770Z [1551/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1.c.o 2024-06-26T05:39:56.4147980Z [1552/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.o 2024-06-26T05:39:56.4227200Z [1553/5905] 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 2024-06-26T05:39:56.4339230Z [1554/5905] 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 2024-06-26T05:39:56.4356260Z [1555/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1.c.o 2024-06-26T05:39:56.4564830Z [1556/5905] 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 2024-06-26T05:39:56.4578350Z [1557/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1.c.o 2024-06-26T05:39:56.4618700Z [1558/5905] 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 2024-06-26T05:39:56.4904410Z [1559/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.o 2024-06-26T05:39:56.5001020Z [1560/5905] 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 2024-06-26T05:39:56.5315870Z [1561/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1.c.o 2024-06-26T05:39:56.5554440Z [1562/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc2.c.o 2024-06-26T05:39:56.5625750Z [1563/5905] 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 2024-06-26T05:39:56.5731980Z [1564/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1.c.o 2024-06-26T05:39:56.5816510Z [1565/5905] 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 2024-06-26T05:39:56.5939860Z [1566/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-minmax-scalar-acc2.c.o 2024-06-26T05:39:56.5981130Z [1567/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1.c.o 2024-06-26T05:39:56.6029420Z [1568/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.o 2024-06-26T05:39:56.6270130Z [1569/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.o 2024-06-26T05:39:56.6763210Z [1570/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.o 2024-06-26T05:39:56.6802880Z [1571/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-scalar.c.o 2024-06-26T05:39:56.7000060Z [1572/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.o 2024-06-26T05:39:56.7170600Z [1573/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-scalar.c.o 2024-06-26T05:39:56.7298420Z [1574/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar.c.o 2024-06-26T05:39:56.7331120Z [1575/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.o 2024-06-26T05:39:56.7349860Z [1576/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.o 2024-06-26T05:39:56.7609010Z [1577/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2024-06-26T05:39:56.7698150Z [1578/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3f3m3l1c1s1r-scalar.c.o 2024-06-26T05:39:56.7931970Z [1579/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o 2024-06-26T05:39:56.8007710Z [1580/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar.c.o 2024-06-26T05:39:56.8111590Z [1581/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar-acc2.c.o 2024-06-26T05:39:56.8195440Z [1582/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar.c.o 2024-06-26T05:39:56.8458240Z [1583/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar-acc2.c.o 2024-06-26T05:39:56.8699990Z [1584/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar.c.o 2024-06-26T05:39:56.8929690Z [1585/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar.c.o 2024-06-26T05:39:56.9020710Z [1586/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o 2024-06-26T05:39:56.9422470Z [1587/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar-acc2.c.o 2024-06-26T05:39:56.9428710Z [1588/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar-acc2.c.o 2024-06-26T05:39:56.9525200Z [1589/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar.c.o 2024-06-26T05:39:56.9628910Z [1590/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar.c.o 2024-06-26T05:39:56.9653870Z [1591/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.o 2024-06-26T05:39:56.9660790Z [1592/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o 2024-06-26T05:39:56.9672200Z [1593/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar.c.o 2024-06-26T05:39:56.9967070Z [1594/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-minmax-scalar-acc2.c.o 2024-06-26T05:39:57.0295410Z [1595/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc4.c.o 2024-06-26T05:39:57.0513340Z [1596/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.o 2024-06-26T05:39:57.0771430Z [1597/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/gen/cs16-bfly4-scalar-x2.c.o 2024-06-26T05:39:57.0835000Z [1598/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/softmax-output.c.o 2024-06-26T05:39:57.0837780Z [1599/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/cs16-bfly4-samples1-scalar.c.o 2024-06-26T05:39:57.1042460Z [1600/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/cs16-bfly4-samples4-scalar.c.o 2024-06-26T05:39:57.1063050Z [1601/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/max-pooling-output.c.o 2024-06-26T05:39:57.1074660Z [1602/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-output.c.o 2024-06-26T05:39:57.1221980Z [1603/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/gen/cs16-bfly4-scalar-x1.c.o 2024-06-26T05:39:57.1328220Z [1604/5905] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-input-gradient.c.o 2024-06-26T05:39:57.1883630Z [1605/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-fftr/gen/cs16-fftr-scalar-x2.c.o 2024-06-26T05:39:57.2065730Z [1606/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-scalar-x1.c.o 2024-06-26T05:39:57.2067540Z [1607/5905] Linking C static library lib/libnnpack_reference_layers.a 2024-06-26T05:39:57.2108710Z [1608/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-fftr/gen/cs16-fftr-scalar-x1.c.o 2024-06-26T05:39:57.2155900Z [1609/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-fftr/gen/cs16-fftr-scalar-x4.c.o 2024-06-26T05:39:57.2261790Z [1610/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-scalar-x3.c.o 2024-06-26T05:39:57.2267270Z [1611/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-scalar-x4.c.o 2024-06-26T05:39:57.2274020Z [1612/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-scalar-x2.c.o 2024-06-26T05:39:57.2366990Z [1613/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/gen/cs16-bfly4-scalar-x4.c.o 2024-06-26T05:39:57.2383680Z [1614/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u1.c.o 2024-06-26T05:39:57.3510190Z [1615/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u2.c.o 2024-06-26T05:39:57.3525630Z [1616/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u4.c.o 2024-06-26T05:39:57.3699950Z [1617/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u2.c.o 2024-06-26T05:39:57.3703200Z [1618/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u3.c.o 2024-06-26T05:39:57.3712970Z [1619/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u2.c.o 2024-06-26T05:39:57.3729080Z [1620/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u4.c.o 2024-06-26T05:39:57.3783300Z [1621/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u1.c.o 2024-06-26T05:39:57.3936820Z [1622/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u3.c.o 2024-06-26T05:39:57.4013960Z [1623/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u1.c.o 2024-06-26T05:39:57.4066750Z [1624/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u3.c.o 2024-06-26T05:39:57.4758220Z [1625/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u4.c.o 2024-06-26T05:39:57.4964290Z [1626/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u2-acc2.c.o 2024-06-26T05:39:57.5089470Z [1627/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u1.c.o 2024-06-26T05:39:57.5092350Z [1628/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u3-acc3.c.o 2024-06-26T05:39:57.5097210Z [1629/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u4-acc2.c.o 2024-06-26T05:39:57.5147440Z [1630/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u4-acc4.c.o 2024-06-26T05:39:57.5158090Z [1631/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u1.c.o 2024-06-26T05:39:57.5394260Z [1632/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u3-acc3.c.o 2024-06-26T05:39:57.5397900Z [1633/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u2-acc2.c.o 2024-06-26T05:39:57.5850720Z [1634/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u4-acc2.c.o 2024-06-26T05:39:57.6146930Z [1635/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u3-acc3.c.o 2024-06-26T05:39:57.6306050Z [1636/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u4-acc4.c.o 2024-06-26T05:39:57.6363520Z [1637/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u2-acc2.c.o 2024-06-26T05:39:57.6367170Z [1638/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u4-acc2.c.o 2024-06-26T05:39:57.6379450Z [1639/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u4-acc4.c.o 2024-06-26T05:39:57.6608260Z [1640/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u1.c.o 2024-06-26T05:39:57.6691150Z [1641/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-2x4-minmax-scalar.c.o 2024-06-26T05:39:57.6839000Z [1642/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x4-minmax-scalar.c.o 2024-06-26T05:39:57.7034910Z [1643/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p1.c.o 2024-06-26T05:39:57.7438930Z [1644/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p2.c.o 2024-06-26T05:39:57.7562020Z [1645/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o 2024-06-26T05:39:57.7692530Z [1646/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c1.c.o 2024-06-26T05:39:57.7698580Z [1647/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c4.c.o 2024-06-26T05:39:57.7703900Z [1648/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o 2024-06-26T05:39:57.7920640Z [1649/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o 2024-06-26T05:39:57.8066620Z [1650/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o 2024-06-26T05:39:57.8123030Z [1651/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o 2024-06-26T05:39:57.8315850Z [1652/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2024-06-26T05:39:57.8330100Z [1653/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o 2024-06-26T05:39:57.8603130Z [1654/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2024-06-26T05:39:57.8903010Z [1655/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o 2024-06-26T05:39:57.8914830Z [1656/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-relu-scalar.c.o 2024-06-26T05:39:57.9167170Z [1657/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2024-06-26T05:39:57.9235950Z [1658/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2024-06-26T05:39:57.9341760Z [1659/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o 2024-06-26T05:39:57.9471680Z [1660/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o 2024-06-26T05:39:57.9538310Z [1661/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o 2024-06-26T05:39:57.9554750Z [1662/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o 2024-06-26T05:39:57.9777880Z [1663/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o 2024-06-26T05:39:58.0018120Z [1664/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-scalar-2x4.c.o 2024-06-26T05:39:58.0329980Z [1665/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x4-minmax-scalar.c.o 2024-06-26T05:39:58.0434310Z [1666/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-2x4-minmax-scalar.c.o 2024-06-26T05:39:58.0467200Z [1667/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-3x3-minmax-scalar.c.o 2024-06-26T05:39:58.0568660Z [1668/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x2-minmax-scalar.c.o 2024-06-26T05:39:58.0783960Z [1669/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x4-minmax-scalar.c.o 2024-06-26T05:39:58.0923940Z [1670/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-2x4-minmax-scalar.c.o 2024-06-26T05:39:58.0984540Z [1671/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x2-minmax-scalar.c.o 2024-06-26T05:39:58.1241870Z [1672/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-scalar-2x1.c.o 2024-06-26T05:39:58.1348430Z [1673/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2024-06-26T05:39:58.1457080Z [1674/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-minmax-scalar.c.o 2024-06-26T05:39:58.1954380Z [1675/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-scalar.c.o 2024-06-26T05:39:58.2024940Z [1676/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-relu-scalar.c.o 2024-06-26T05:39:58.2067860Z [1677/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-minmax-scalar.c.o 2024-06-26T05:39:58.2283450Z [1678/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-scalar.c.o 2024-06-26T05:39:58.2287290Z [1679/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-relu-scalar.c.o 2024-06-26T05:39:58.2302400Z [1680/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-scalar.c.o 2024-06-26T05:39:58.2585260Z [1681/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-minmax-scalar.c.o 2024-06-26T05:39:58.2656150Z [1682/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-scalar.c.o 2024-06-26T05:39:58.2789670Z [1683/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-relu-scalar.c.o 2024-06-26T05:39:58.2993600Z [1684/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-relu-scalar.c.o 2024-06-26T05:39:58.3236870Z [1685/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-1x1-minmax-scalar.c.o 2024-06-26T05:39:58.3375710Z [1686/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-2x1-minmax-scalar.c.o 2024-06-26T05:39:58.3542400Z [1687/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-scalar.c.o 2024-06-26T05:39:58.3555790Z [1688/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-4x1-minmax-scalar.c.o 2024-06-26T05:39:58.3791070Z [1689/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-minmax-scalar-acc2.c.o 2024-06-26T05:39:58.3896130Z [1690/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.o 2024-06-26T05:39:58.3989630Z [1691/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.o 2024-06-26T05:39:58.4351460Z [1692/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-scalar.c.o 2024-06-26T05:39:58.4588890Z [1693/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.o 2024-06-26T05:39:58.4611890Z [1694/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-scalar.c.o 2024-06-26T05:39:58.4684870Z [1695/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-minmax-scalar-acc2.c.o 2024-06-26T05:39:58.4829110Z [1696/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o 2024-06-26T05:39:58.4928560Z [1697/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.o 2024-06-26T05:39:58.5203990Z [1698/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar.c.o 2024-06-26T05:39:58.5228530Z [1699/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar.c.o 2024-06-26T05:39:58.5261300Z [1700/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o 2024-06-26T05:39:58.5512180Z [1701/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar.c.o 2024-06-26T05:39:58.5583180Z [1702/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar-acc2.c.o 2024-06-26T05:39:58.5914920Z [1703/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar-acc2.c.o 2024-06-26T05:39:58.6035290Z [1704/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar.c.o 2024-06-26T05:39:58.6117410Z [1705/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o 2024-06-26T05:39:58.6159530Z [1706/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar.c.o 2024-06-26T05:39:58.6627390Z [1707/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o 2024-06-26T05:39:58.6781260Z [1708/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar.c.o 2024-06-26T05:39:58.6930730Z [1709/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar-acc2.c.o 2024-06-26T05:39:58.6946610Z [1710/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar.c.o 2024-06-26T05:39:58.6956000Z [1711/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar-acc2.c.o 2024-06-26T05:39:58.7136050Z [1712/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar.c.o 2024-06-26T05:39:58.7148950Z [1713/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u2.c.o 2024-06-26T05:39:58.7188810Z [1714/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u1.c.o 2024-06-26T05:39:58.7414840Z [1715/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u3.c.o 2024-06-26T05:39:58.7456850Z [1716/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u4.c.o 2024-06-26T05:39:58.7905310Z [1717/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u1.c.o 2024-06-26T05:39:58.8288450Z [1718/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u2.c.o 2024-06-26T05:39:58.8347030Z [1719/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u4.c.o 2024-06-26T05:39:58.8353680Z [1720/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u3.c.o 2024-06-26T05:39:58.8451330Z [1721/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool-cw/f32-gavgpool-cw-scalar-u1.c.o 2024-06-26T05:39:58.8653230Z [1722/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool/f32-gavgpool-7x-minmax-scalar-c1.c.o 2024-06-26T05:39:58.8708710Z [1723/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o 2024-06-26T05:39:58.8722570Z [1724/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o 2024-06-26T05:39:58.8836010Z [1725/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o 2024-06-26T05:39:58.9011800Z [1726/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool/f32-gavgpool-7p7x-minmax-scalar-c1.c.o 2024-06-26T05:39:58.9107900Z [1727/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o 2024-06-26T05:39:58.9908470Z [1728/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o 2024-06-26T05:39:58.9914690Z [1729/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o 2024-06-26T05:39:59.0166160Z [1730/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o 2024-06-26T05:39:59.0197520Z [1731/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-relu-scalar.c.o 2024-06-26T05:39:59.0216690Z [1732/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u2-acc2.c.o 2024-06-26T05:39:59.0249000Z [1733/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x4-minmax-scalar.c.o 2024-06-26T05:39:59.0375490Z [1734/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o 2024-06-26T05:39:59.0482570Z [1735/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o 2024-06-26T05:39:59.0744100Z [1736/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o 2024-06-26T05:39:59.1199770Z [1737/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u3-acc3.c.o 2024-06-26T05:39:59.1203760Z [1738/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc2.c.o 2024-06-26T05:39:59.1237770Z [1739/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o 2024-06-26T05:39:59.1445280Z [1740/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2024-06-26T05:39:59.1490450Z [1741/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar.c.o 2024-06-26T05:39:59.1561520Z [1742/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar.c.o 2024-06-26T05:39:59.1668880Z [1743/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar-pipelined.c.o 2024-06-26T05:39:59.1803540Z [1744/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar.c.o 2024-06-26T05:39:59.1920830Z [1745/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar-pipelined.c.o 2024-06-26T05:39:59.2023230Z [1746/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar-pipelined.c.o 2024-06-26T05:39:59.2568000Z [1747/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar-pipelined.c.o 2024-06-26T05:39:59.2701630Z [1748/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o 2024-06-26T05:39:59.2723000Z [1749/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-scalar-u2.c.o 2024-06-26T05:39:59.2899530Z [1750/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-scalar-u1.c.o 2024-06-26T05:39:59.2903300Z [1751/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o 2024-06-26T05:39:59.3066950Z [1752/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-relu-scalar-u1.c.o 2024-06-26T05:39:59.3072830Z [1753/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u2.c.o 2024-06-26T05:39:59.3081320Z [1754/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-scalar-u4.c.o 2024-06-26T05:39:59.3160980Z [1755/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o 2024-06-26T05:39:59.3801420Z [1756/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-relu-scalar-u8.c.o 2024-06-26T05:39:59.3814780Z [1757/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-relu-scalar-u4.c.o 2024-06-26T05:39:59.4031230Z [1758/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u4.c.o 2024-06-26T05:39:59.4155860Z [1759/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-scalar-u8.c.o 2024-06-26T05:39:59.4267560Z [1760/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-scalar-u4.c.o 2024-06-26T05:39:59.4278770Z [1761/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-scalar-u2.c.o 2024-06-26T05:39:59.4281990Z [1762/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u1.c.o 2024-06-26T05:39:59.4472340Z [1763/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-scalar-u1.c.o 2024-06-26T05:39:59.4512480Z [1764/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u8.c.o 2024-06-26T05:39:59.4788870Z [1765/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-relu-scalar-u2.c.o 2024-06-26T05:39:59.5204890Z [1766/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u2.c.o 2024-06-26T05:39:59.5362420Z [1767/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-relu-scalar-u1.c.o 2024-06-26T05:39:59.5443770Z [1768/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-relu-scalar-u2.c.o 2024-06-26T05:39:59.5480180Z [1769/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-relu-scalar-u4.c.o 2024-06-26T05:39:59.5482540Z [1770/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-relu-scalar-u8.c.o 2024-06-26T05:39:59.5829770Z [1771/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-scalar-u1.c.o 2024-06-26T05:39:59.5832600Z [1772/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u1.c.o 2024-06-26T05:39:59.5918720Z [1773/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-scalar-u8.c.o 2024-06-26T05:39:59.6056560Z [1774/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u8.c.o 2024-06-26T05:39:59.6287540Z [1775/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u4.c.o 2024-06-26T05:39:59.6587090Z [1776/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-scalar-u8.c.o 2024-06-26T05:39:59.6687620Z [1777/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-relu-scalar-u2.c.o 2024-06-26T05:39:59.6789610Z [1778/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-relu-scalar-u1.c.o 2024-06-26T05:39:59.6944760Z [1779/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-scalar-u2.c.o 2024-06-26T05:39:59.6953670Z [1780/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-relu-scalar-u1.c.o 2024-06-26T05:39:59.7223340Z [1781/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x1-minmax-scalar.c.o 2024-06-26T05:39:59.7284590Z [1782/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x4-minmax-scalar.c.o 2024-06-26T05:39:59.7441210Z [1783/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-scalar-u4.c.o 2024-06-26T05:39:59.7537190Z [1784/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x2-minmax-scalar.c.o 2024-06-26T05:39:59.7740010Z [1785/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u1.c.o 2024-06-26T05:39:59.7759450Z [1786/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u3.c.o 2024-06-26T05:39:59.7834160Z [1787/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u4.c.o 2024-06-26T05:39:59.8065450Z [1788/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u2.c.o 2024-06-26T05:39:59.8134970Z [1789/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u2.c.o 2024-06-26T05:39:59.8194560Z [1790/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u1.c.o 2024-06-26T05:39:59.8515500Z [1791/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u3.c.o 2024-06-26T05:39:59.8719610Z [1792/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2024-06-26T05:39:59.8884210Z [1793/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u2.c.o 2024-06-26T05:39:59.8928060Z [1794/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u1.c.o 2024-06-26T05:39:59.8988230Z [1795/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u1.c.o 2024-06-26T05:39:59.9197390Z [1796/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2024-06-26T05:39:59.9225950Z [1797/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u2.c.o 2024-06-26T05:39:59.9254410Z [1798/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u4.c.o 2024-06-26T05:39:59.9437280Z [1799/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u3.c.o 2024-06-26T05:39:59.9620980Z [1800/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u1.c.o 2024-06-26T05:39:59.9695090Z [1801/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u3.c.o 2024-06-26T05:39:59.9938190Z [1802/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u2.c.o 2024-06-26T05:40:00.0152620Z [1803/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u3.c.o 2024-06-26T05:40:00.0330190Z [1804/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u1.c.o 2024-06-26T05:40:00.0409580Z [1805/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2024-06-26T05:40:00.0485620Z [1806/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u2.c.o 2024-06-26T05:40:00.0507910Z [1807/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u3.c.o 2024-06-26T05:40:00.0747250Z [1808/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u1.c.o 2024-06-26T05:40:00.0753160Z [1809/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2024-06-26T05:40:00.1016880Z [1810/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u2-acc2.c.o 2024-06-26T05:40:00.1023550Z [1811/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u2.c.o 2024-06-26T05:40:00.1348740Z [1812/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u4-acc4.c.o 2024-06-26T05:40:00.1431060Z [1813/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u4.c.o 2024-06-26T05:40:00.1666240Z [1814/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u1.c.o 2024-06-26T05:40:00.1711710Z [1815/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u4-acc2.c.o 2024-06-26T05:40:00.1917560Z [1816/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u2.c.o 2024-06-26T05:40:00.2008340Z [1817/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4.c.o 2024-06-26T05:40:00.2094640Z [1818/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u2-acc2.c.o 2024-06-26T05:40:00.2181770Z [1819/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc4.c.o 2024-06-26T05:40:00.2284510Z [1820/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u1.c.o 2024-06-26T05:40:00.2503650Z [1821/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u2-acc2.c.o 2024-06-26T05:40:00.2577720Z [1822/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.o 2024-06-26T05:40:00.2682740Z [1823/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u3-acc3.c.o 2024-06-26T05:40:00.2796880Z [1824/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc2.c.o 2024-06-26T05:40:00.3201710Z [1825/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u2-acc2.c.o 2024-06-26T05:40:00.3209610Z [1826/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u1.c.o 2024-06-26T05:40:00.3215230Z [1827/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u3-acc3.c.o 2024-06-26T05:40:00.3219440Z [1828/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u3-acc3.c.o 2024-06-26T05:40:00.3527770Z [1829/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc4.c.o 2024-06-26T05:40:00.3551100Z [1830/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc2.c.o 2024-06-26T05:40:00.3766740Z [1831/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc2.c.o 2024-06-26T05:40:00.3918640Z [1832/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc4.c.o 2024-06-26T05:40:00.3970260Z [1833/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u2-acc2.c.o 2024-06-26T05:40:00.4102240Z [1834/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u1.c.o 2024-06-26T05:40:00.4628820Z [1835/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u1.c.o 2024-06-26T05:40:00.4635900Z [1836/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u2.c.o 2024-06-26T05:40:00.4659350Z [1837/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-relu-scalar-u8.c.o 2024-06-26T05:40:00.4729650Z [1838/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-relu-scalar-u4.c.o 2024-06-26T05:40:00.4898530Z [1839/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-relu-scalar-u2.c.o 2024-06-26T05:40:00.4972960Z [1840/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u1.c.o 2024-06-26T05:40:00.4980300Z [1841/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u1.c.o 2024-06-26T05:40:00.5311850Z [1842/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u4.c.o 2024-06-26T05:40:00.5339280Z [1843/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u8.c.o 2024-06-26T05:40:00.5613710Z [1844/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-scalar-u1.c.o 2024-06-26T05:40:00.6043170Z [1845/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-scalar-u2.c.o 2024-06-26T05:40:00.6046060Z [1846/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-relu-scalar-u1.c.o 2024-06-26T05:40:00.6111190Z [1847/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-relu-scalar-u2.c.o 2024-06-26T05:40:00.6137420Z [1848/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-scalar-u8.c.o 2024-06-26T05:40:00.6373020Z [1849/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-relu-scalar-u4.c.o 2024-06-26T05:40:00.6388310Z [1850/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-relu-scalar-u8.c.o 2024-06-26T05:40:00.6430770Z [1851/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-scalar-u4.c.o 2024-06-26T05:40:00.6623410Z [1852/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u1.c.o 2024-06-26T05:40:00.6714820Z [1853/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u2.c.o 2024-06-26T05:40:00.6846180Z [1854/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u4.c.o 2024-06-26T05:40:00.7389570Z [1855/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-scalar-u2.c.o 2024-06-26T05:40:00.7415410Z [1856/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-scalar-u1.c.o 2024-06-26T05:40:00.7432410Z [1857/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-scalar-u4.c.o 2024-06-26T05:40:00.7647670Z [1858/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u8.c.o 2024-06-26T05:40:00.7657900Z [1859/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-scalar-u8.c.o 2024-06-26T05:40:00.7663350Z [1860/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-relu-scalar-u1.c.o 2024-06-26T05:40:00.7765290Z [1861/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-relu-scalar-u2.c.o 2024-06-26T05:40:00.7953420Z [1862/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u1.c.o 2024-06-26T05:40:00.8149350Z [1863/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-relu-scalar-u8.c.o 2024-06-26T05:40:00.8283820Z [1864/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-relu-scalar-u4.c.o 2024-06-26T05:40:00.8827490Z [1865/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u2.c.o 2024-06-26T05:40:00.8882400Z [1866/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u1.c.o 2024-06-26T05:40:00.8953460Z [1867/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u8.c.o 2024-06-26T05:40:00.9006950Z [1868/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u2.c.o 2024-06-26T05:40:00.9030200Z [1869/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-scalar-u2.c.o 2024-06-26T05:40:00.9135190Z [1870/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u4.c.o 2024-06-26T05:40:00.9143060Z [1871/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u4.c.o 2024-06-26T05:40:00.9364810Z [1872/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u8.c.o 2024-06-26T05:40:00.9439820Z [1873/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u1.c.o 2024-06-26T05:40:00.9574470Z [1874/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u2.c.o 2024-06-26T05:40:01.0080650Z [1875/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u4.c.o 2024-06-26T05:40:01.0235370Z [1876/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u8.c.o 2024-06-26T05:40:01.0257420Z [1877/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-scalar-u4.c.o 2024-06-26T05:40:01.0425680Z [1878/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-scalar-2x.c.o 2024-06-26T05:40:01.0430700Z [1879/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-scalar-u1.c.o 2024-06-26T05:40:01.0500050Z [1880/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-scalar-u8.c.o 2024-06-26T05:40:01.0662980Z [1881/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u2.c.o 2024-06-26T05:40:01.0705520Z [1882/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u1.c.o 2024-06-26T05:40:01.0718130Z [1883/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-relu-scalar-u4.c.o 2024-06-26T05:40:01.0955700Z [1884/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-relu-scalar-u8.c.o 2024-06-26T05:40:01.1357140Z [1885/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u4.c.o 2024-06-26T05:40:01.1557140Z [1886/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u8.c.o 2024-06-26T05:40:01.1723110Z [1887/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-scalar-u4.c.o 2024-06-26T05:40:01.1755360Z [1888/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-scalar-u2.c.o 2024-06-26T05:40:01.1864110Z [1889/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-scalar-u8.c.o 2024-06-26T05:40:01.1922080Z [1890/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-relu-scalar-u1.c.o 2024-06-26T05:40:01.1931750Z [1891/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-scalar-u1.c.o 2024-06-26T05:40:01.2082650Z [1892/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-relu-scalar-u2.c.o 2024-06-26T05:40:01.2146820Z [1893/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-relu-scalar-u4.c.o 2024-06-26T05:40:01.2323350Z [1894/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u2.c.o 2024-06-26T05:40:01.2662570Z [1895/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-relu-scalar-u8.c.o 2024-06-26T05:40:01.2927990Z [1896/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u1.c.o 2024-06-26T05:40:01.2946500Z [1897/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u4.c.o 2024-06-26T05:40:01.3166610Z [1898/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u8.c.o 2024-06-26T05:40:01.3176050Z [1899/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u1.c.o 2024-06-26T05:40:01.3413100Z [1900/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u4.c.o 2024-06-26T05:40:01.3471690Z [1901/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u8.c.o 2024-06-26T05:40:01.3483060Z [1902/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u2.c.o 2024-06-26T05:40:01.3539930Z [1903/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u2.c.o 2024-06-26T05:40:01.3685130Z [1904/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u1.c.o 2024-06-26T05:40:01.3811000Z [1905/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u4.c.o 2024-06-26T05:40:01.4205860Z [1906/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u1.c.o 2024-06-26T05:40:01.4583110Z [1907/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u4.c.o 2024-06-26T05:40:01.4827230Z [1908/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u1.c.o 2024-06-26T05:40:01.4877650Z [1909/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u8.c.o 2024-06-26T05:40:01.4885730Z [1910/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2024-06-26T05:40:01.4942870Z [1911/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u8.c.o 2024-06-26T05:40:01.4982700Z [1912/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u4.c.o 2024-06-26T05:40:01.4985600Z [1913/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-scalar-u1.c.o 2024-06-26T05:40:01.5079590Z [1914/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u2.c.o 2024-06-26T05:40:01.5278350Z [1915/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u2.c.o 2024-06-26T05:40:01.5320090Z [1916/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-scalar-u2.c.o 2024-06-26T05:40:01.5843910Z [1917/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-scalar-u4.c.o 2024-06-26T05:40:01.6315760Z [1918/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-relu-scalar-u4.c.o 2024-06-26T05:40:01.6319830Z [1919/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-scalar-u8.c.o 2024-06-26T05:40:01.6461910Z [1920/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-relu-scalar-u2.c.o 2024-06-26T05:40:01.6466190Z [1921/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u1.c.o 2024-06-26T05:40:01.6468970Z [1922/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u4.c.o 2024-06-26T05:40:01.6543020Z [1923/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-relu-scalar-u8.c.o 2024-06-26T05:40:01.6671620Z [1924/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-relu-scalar-u1.c.o 2024-06-26T05:40:01.6674580Z [1925/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u2.c.o 2024-06-26T05:40:01.6679800Z [1926/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u8.c.o 2024-06-26T05:40:01.6971520Z [1927/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-scalar-u1.c.o 2024-06-26T05:40:01.7553290Z [1928/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-scalar-u4.c.o 2024-06-26T05:40:01.7583340Z [1929/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-scalar-u2.c.o 2024-06-26T05:40:01.7877210Z [1930/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-relu-scalar-u1.c.o 2024-06-26T05:40:01.7890780Z [1931/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-scalar-u8.c.o 2024-06-26T05:40:01.7899360Z [1932/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u4.c.o 2024-06-26T05:40:01.7928230Z [1933/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u2.c.o 2024-06-26T05:40:01.8099290Z [1934/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u1.c.o 2024-06-26T05:40:01.8112780Z [1935/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u8.c.o 2024-06-26T05:40:01.8311480Z [1936/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u2.c.o 2024-06-26T05:40:01.8376030Z [1937/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u2.c.o 2024-06-26T05:40:01.9173260Z [1938/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u4.c.o 2024-06-26T05:40:01.9188780Z [1939/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u2.c.o 2024-06-26T05:40:01.9305590Z [1940/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u2.c.o 2024-06-26T05:40:01.9459940Z [1941/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u2.c.o 2024-06-26T05:40:01.9482360Z [1942/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u1.c.o 2024-06-26T05:40:01.9573000Z [1943/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u1.c.o 2024-06-26T05:40:01.9668870Z [1944/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u4.c.o 2024-06-26T05:40:01.9684970Z [1945/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u1.c.o 2024-06-26T05:40:01.9922380Z [1946/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u4.c.o 2024-06-26T05:40:01.9928360Z [1947/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u4.c.o 2024-06-26T05:40:02.0554190Z [1948/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u1.c.o 2024-06-26T05:40:02.0727720Z [1949/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u1.c.o 2024-06-26T05:40:02.0832810Z [1950/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u4.c.o 2024-06-26T05:40:02.1169570Z [1951/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-u1.c.o 2024-06-26T05:40:02.1173650Z [1952/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-u4.c.o 2024-06-26T05:40:02.1178580Z [1953/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u1.c.o 2024-06-26T05:40:02.1182360Z [1954/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u2.c.o 2024-06-26T05:40:02.1213490Z [1955/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-u2.c.o 2024-06-26T05:40:02.1237320Z [1956/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u2.c.o 2024-06-26T05:40:02.1385150Z [1957/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u4.c.o 2024-06-26T05:40:02.2244500Z [1958/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-scalar-expm1minus-rr1-lut8-p4h3ts-div-u2.c.o 2024-06-26T05:40:02.2462690Z [1959/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u4.c.o 2024-06-26T05:40:02.2469140Z [1960/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u1.c.o 2024-06-26T05:40:02.2668320Z [1961/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u4.c.o 2024-06-26T05:40:02.2673110Z [1962/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-scalar-expm1minus-rr1-p6h5ts-div-u4.c.o 2024-06-26T05:40:02.2754940Z [1963/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-scalar-expm1minus-rr1-lut8-p4h3ts-div-u1.c.o 2024-06-26T05:40:02.2988490Z [1964/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-scalar-expm1minus-rr1-p6h5ts-div-u1.c.o 2024-06-26T05:40:02.2996870Z [1965/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-scalar-expm1minus-rr1-p6h5ts-div-u2.c.o 2024-06-26T05:40:02.3304490Z [1966/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u2.c.o 2024-06-26T05:40:02.3336920Z [1967/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-scalar-expm1minus-rr1-lut8-p4h3ts-div-u4.c.o 2024-06-26T05:40:02.3593760Z [1968/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-scalar-u2.c.o 2024-06-26T05:40:02.3878980Z [1969/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-scalar-u1.c.o 2024-06-26T05:40:02.3902040Z [1970/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-scalar-u4.c.o 2024-06-26T05:40:02.4100760Z [1971/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-scalar-u2.c.o 2024-06-26T05:40:02.4314890Z [1972/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-scalar-u1.c.o 2024-06-26T05:40:02.4368320Z [1973/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-scalar-u4.c.o 2024-06-26T05:40:02.4374660Z [1974/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-scalar-u1.c.o 2024-06-26T05:40:02.4410560Z [1975/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-scalar-u2.c.o 2024-06-26T05:40:02.4695040Z [1976/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expm1minus-scalar-rr2-lut16-p3.c.o 2024-06-26T05:40:02.4759840Z [1977/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-scalar-u1.c.o 2024-06-26T05:40:02.4978370Z [1978/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-scalar-u4.c.o 2024-06-26T05:40:02.5061860Z [1979/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-scalar-u2.c.o 2024-06-26T05:40:02.5137750Z [1980/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-scalar-u3.c.o 2024-06-26T05:40:02.5477010Z [1981/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expm1minus-scalar-rr2-lut8-p4.c.o 2024-06-26T05:40:02.5522410Z [1982/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expm1minus-scalar-rr2-lut8-p3.c.o 2024-06-26T05:40:02.5690660Z [1983/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-scalar-u4.c.o 2024-06-26T05:40:02.5729080Z [1984/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expm1minus-scalar-rr2-lut4-p4.c.o 2024-06-26T05:40:02.5999430Z [1985/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr2-lut32-p3h1ts-div.c.o 2024-06-26T05:40:02.6041120Z [1986/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr2-lut16-p4h3ts-div.c.o 2024-06-26T05:40:02.6045830Z [1987/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-scalar-expm1plus-rr2-lut16-p4h3ps-div.c.o 2024-06-26T05:40:02.6278880Z [1988/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u2.c.o 2024-06-26T05:40:02.6295850Z [1989/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-relu-scalar-u2.c.o 2024-06-26T05:40:02.6401180Z [1990/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-relu-scalar-u4.c.o 2024-06-26T05:40:02.6816570Z [1991/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u1.c.o 2024-06-26T05:40:02.6874060Z [1992/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-relu-scalar-u8.c.o 2024-06-26T05:40:02.7089910Z [1993/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u4.c.o 2024-06-26T05:40:02.7117830Z [1994/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u8.c.o 2024-06-26T05:40:02.7273430Z [1995/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-scalar-u4.c.o 2024-06-26T05:40:02.7427160Z [1996/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-scalar-u1.c.o 2024-06-26T05:40:02.7430910Z [1997/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-scalar-u8.c.o 2024-06-26T05:40:02.7481520Z [1998/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u2.c.o 2024-06-26T05:40:02.7686360Z [1999/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-relu-scalar-u1.c.o 2024-06-26T05:40:02.7717030Z [2000/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-scalar-u2.c.o 2024-06-26T05:40:02.8236620Z [2001/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-relu-scalar-u4.c.o 2024-06-26T05:40:02.8436370Z [2002/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u1.c.o 2024-06-26T05:40:02.8439820Z [2003/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-relu-scalar-u8.c.o 2024-06-26T05:40:02.8523250Z [2004/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u4.c.o 2024-06-26T05:40:02.8732590Z [2005/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u1.c.o 2024-06-26T05:40:02.8852160Z [2006/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u8.c.o 2024-06-26T05:40:02.8905640Z [2007/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u1.c.o 2024-06-26T05:40:02.8954100Z [2008/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-relu-scalar-u2.c.o 2024-06-26T05:40:02.9136380Z [2009/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u2.c.o 2024-06-26T05:40:02.9145570Z [2010/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u4.c.o 2024-06-26T05:40:02.9643800Z [2011/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u2.c.o 2024-06-26T05:40:02.9719480Z [2012/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u1.c.o 2024-06-26T05:40:02.9845080Z [2013/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2024-06-26T05:40:02.9967590Z [2014/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u8.c.o 2024-06-26T05:40:03.0104120Z [2015/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u2.c.o 2024-06-26T05:40:03.0122040Z [2016/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u3.c.o 2024-06-26T05:40:03.0210330Z [2017/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u4.c.o 2024-06-26T05:40:03.0495870Z [2018/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u6.c.o 2024-06-26T05:40:03.0719640Z [2019/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u5.c.o 2024-06-26T05:40:03.0994310Z [2020/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u3.c.o 2024-06-26T05:40:03.0997100Z [2021/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u2.c.o 2024-06-26T05:40:03.1218610Z [2022/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u2.c.o 2024-06-26T05:40:03.1262320Z [2023/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u1.c.o 2024-06-26T05:40:03.1382030Z [2024/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u4.c.o 2024-06-26T05:40:03.1558870Z [2025/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u6.c.o 2024-06-26T05:40:03.1652710Z [2026/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u5.c.o 2024-06-26T05:40:03.1880790Z [2027/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u1.c.o 2024-06-26T05:40:03.1936000Z [2028/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u4.c.o 2024-06-26T05:40:03.2148120Z [2029/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u2.c.o 2024-06-26T05:40:03.2346010Z [2030/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2024-06-26T05:40:03.2391340Z [2031/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c2-minmax-scalar-2x.c.o 2024-06-26T05:40:03.2570330Z [2032/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2024-06-26T05:40:03.2667390Z [2033/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u1.c.o 2024-06-26T05:40:03.2956270Z [2034/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u24.c.o 2024-06-26T05:40:03.3023440Z [2035/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u32.c.o 2024-06-26T05:40:03.3363890Z [2036/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u48.c.o 2024-06-26T05:40:03.3482730Z [2037/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u64.c.o 2024-06-26T05:40:03.3684330Z [2038/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u40.c.o 2024-06-26T05:40:03.3789610Z [2039/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u56.c.o 2024-06-26T05:40:03.4266510Z [2040/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u8.c.o 2024-06-26T05:40:03.4328740Z [2041/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u8.c.o 2024-06-26T05:40:03.4360230Z [2042/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u80.c.o 2024-06-26T05:40:03.4459800Z [2043/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u72.c.o 2024-06-26T05:40:03.4619540Z [2044/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u8.c.o 2024-06-26T05:40:03.4991830Z [2045/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u16.c.o 2024-06-26T05:40:03.5231820Z [2046/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-exp-neonfp16arith-rr2-p3.c.o 2024-06-26T05:40:03.5306780Z [2047/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u16.c.o 2024-06-26T05:40:03.5615280Z [2048/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u16.c.o 2024-06-26T05:40:03.5669570Z [2049/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-expm1minus-neonfp16arith-rr1-p3.c.o 2024-06-26T05:40:03.5858340Z [2050/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-expm1minus-neonfp16arith-rr2-p3.c.o 2024-06-26T05:40:03.5927200Z [2051/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-expminus-neonfp16arith-rr2-p2.c.o 2024-06-26T05:40:03.6066670Z [2052/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-expminus-neonfp16arith-rr1-p2.c.o 2024-06-26T05:40:03.6101840Z [2053/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-sigmoid-neonfp16arith-rr2-p2-nr1recps.c.o 2024-06-26T05:40:03.6181980Z [2054/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-expminus-neonfp16arith-rr1-p3.c.o 2024-06-26T05:40:03.6767020Z [2055/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-sigmoid-neonfp16arith-rr2-p2-recpe.c.o 2024-06-26T05:40:03.6818560Z [2056/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-sigmoid-neonfp16arith-rr2-p2-nr1fma.c.o 2024-06-26T05:40:03.7119290Z [2057/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-sigmoid-neonfp16arith-rr2-p3-nr1recps.c.o 2024-06-26T05:40:03.7298790Z [2058/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-sigmoid-neonfp16arith-rr2-p3-nr1fma.c.o 2024-06-26T05:40:03.7502310Z [2059/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-sqrt-neonfp16arith-nr1fma1adj.c.o 2024-06-26T05:40:03.7544850Z [2060/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-sigmoid-neonfp16arith-rr2-p3-recpe.c.o 2024-06-26T05:40:03.7588850Z [2061/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-sqrt-neonfp16arith-nr1fma.c.o 2024-06-26T05:40:03.7696420Z [2062/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-expminus-neonfp16arith-rr2-p3.c.o 2024-06-26T05:40:03.7710410Z [2063/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-sqrt-neonfp16arith-nr1rsqrts.c.o 2024-06-26T05:40:03.7934620Z [2064/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f16-tanh-neonfp16arith-expm1minus-rr1-p3h1ts-nr1fmaadj.c.o 2024-06-26T05:40:03.8854310Z [2065/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f16-tanh-neonfp16arith-expm1minus-rr1-p3h1ts-nr1fma.c.o 2024-06-26T05:40:03.8910730Z [2066/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f16-tanh-neonfp16arith-expm1minus-rr1-p3h1ts-nr1recps.c.o 2024-06-26T05:40:03.8968180Z [2067/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f16-tanh-neonfp16arith-expm1minus-rr1-p3h1ts-nr1recpsadj.c.o 2024-06-26T05:40:03.9018430Z [2068/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f16-tanh-neonfp16arith-expm1minus-rr1-p3h1ts-recpeadj.c.o 2024-06-26T05:40:03.9180730Z [2069/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f16-tanh-neonfp16arith-expm1minus-rr1-p3h1ts-recpe.c.o 2024-06-26T05:40:03.9193490Z [2070/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f16-tanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma.c.o 2024-06-26T05:40:03.9413630Z [2071/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f16-tanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recpsadj.c.o 2024-06-26T05:40:03.9432050Z [2072/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f16-tanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fmaadj.c.o 2024-06-26T05:40:03.9800210Z [2073/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f16-tanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps.c.o 2024-06-26T05:40:04.0008810Z [2074/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f16-tanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpe.c.o 2024-06-26T05:40:04.0699450Z [2075/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f16-tanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj.c.o 2024-06-26T05:40:04.0958240Z [2076/5905] 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 2024-06-26T05:40:04.0996120Z [2077/5905] 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 2024-06-26T05:40:04.1098940Z [2078/5905] 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 2024-06-26T05:40:04.1164020Z [2079/5905] 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 2024-06-26T05:40:04.1175770Z [2080/5905] 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 2024-06-26T05:40:04.1415310Z [2081/5905] 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.c.o 2024-06-26T05:40:04.1683770Z [2082/5905] 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 2024-06-26T05:40:04.2201390Z [2083/5905] 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 2024-06-26T05:40:04.2306180Z [2084/5905] 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 2024-06-26T05:40:04.2520590Z [2085/5905] 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.c.o 2024-06-26T05:40:04.2697220Z [2086/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-2x8c2s4-minmax-neonfp16arith.c.o 2024-06-26T05:40:04.2822310Z [2087/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u8.c.o 2024-06-26T05:40:04.2911630Z [2088/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c2s4-minmax-neonfp16arith-mlal.c.o 2024-06-26T05:40:04.2993870Z [2089/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-2x8c2s4-minmax-neonfp16arith-mlal.c.o 2024-06-26T05:40:04.3034260Z [2090/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u24.c.o 2024-06-26T05:40:04.3303050Z [2091/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u16.c.o 2024-06-26T05:40:04.3370450Z [2092/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c2s4-minmax-neonfp16arith.c.o 2024-06-26T05:40:04.3850070Z [2093/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u32.c.o 2024-06-26T05:40:04.4096750Z [2094/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-minmax-aarch64-neonfp16arith-u8.c.o 2024-06-26T05:40:04.4331660Z [2095/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-minmax-aarch64-neonfp16arith-u8.c.o 2024-06-26T05:40:04.4345950Z [2096/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-minmax-aarch64-neonfp16arith-u16.c.o 2024-06-26T05:40:04.4359520Z [2097/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-minmax-aarch64-neonfp16arith-u16.c.o 2024-06-26T05:40:04.4652950Z [2098/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-minmax-aarch64-neonfp16arith-u8.c.o 2024-06-26T05:40:04.4723830Z [2099/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-minmax-aarch64-neonfp16arith-u16.c.o 2024-06-26T05:40:04.4926940Z [2100/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u8.c.o 2024-06-26T05:40:04.5032260Z [2101/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u24.c.o 2024-06-26T05:40:04.5132120Z [2102/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u16.c.o 2024-06-26T05:40:04.5487300Z [2103/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u32.c.o 2024-06-26T05:40:04.5643280Z [2104/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u40.c.o 2024-06-26T05:40:04.6112930Z [2105/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u48.c.o 2024-06-26T05:40:04.6215400Z [2106/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u56.c.o 2024-06-26T05:40:04.6645290Z [2107/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u32.c.o 2024-06-26T05:40:04.6854330Z [2108/5905] 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 2024-06-26T05:40:04.6883620Z [2109/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u8.c.o 2024-06-26T05:40:04.6907250Z [2110/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u64.c.o 2024-06-26T05:40:04.7137290Z [2111/5905] 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 2024-06-26T05:40:04.7145820Z [2112/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u32.c.o 2024-06-26T05:40:04.7181670Z [2113/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u16.c.o 2024-06-26T05:40:04.7418800Z [2114/5905] 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 2024-06-26T05:40:04.7687030Z [2115/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u40.c.o 2024-06-26T05:40:04.8184890Z [2116/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u48.c.o 2024-06-26T05:40:04.8413940Z [2117/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u64.c.o 2024-06-26T05:40:04.8424990Z [2118/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-minmax-neonfp16arith-u16.c.o 2024-06-26T05:40:04.8447630Z [2119/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u56.c.o 2024-06-26T05:40:04.8567810Z [2120/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-minmax-neonfp16arith-u8.c.o 2024-06-26T05:40:04.8796920Z [2121/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-minmax-neonfp16arith-u16.c.o 2024-06-26T05:40:04.8822490Z [2122/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-minmax-neonfp16arith-u8.c.o 2024-06-26T05:40:04.9041990Z [2123/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u8.c.o 2024-06-26T05:40:04.9143580Z [2124/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-minmax-neonfp16arith-u16.c.o 2024-06-26T05:40:04.9147530Z [2125/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u16.c.o 2024-06-26T05:40:04.9857820Z [2126/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u8.c.o 2024-06-26T05:40:04.9950940Z [2127/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u16.c.o 2024-06-26T05:40:05.0188270Z [2128/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-minmax-neonfp16arith-u8.c.o 2024-06-26T05:40:05.0431550Z [2129/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-minmax-neonfp16arith-u8.c.o 2024-06-26T05:40:05.0727850Z [2130/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u16.c.o 2024-06-26T05:40:05.0809070Z [2131/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-minmax-neonfp16arith-u16.c.o 2024-06-26T05:40:05.0819460Z [2132/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u8.c.o 2024-06-26T05:40:05.0836110Z [2133/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u8.c.o 2024-06-26T05:40:05.0941930Z [2134/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u32.c.o 2024-06-26T05:40:05.1138570Z [2135/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-minmax-neonfp16arith-u16.c.o 2024-06-26T05:40:05.1550240Z [2136/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u8.c.o 2024-06-26T05:40:05.1808580Z [2137/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u16.c.o 2024-06-26T05:40:05.1814880Z [2138/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u8.c.o 2024-06-26T05:40:05.2110210Z [2139/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u16.c.o 2024-06-26T05:40:05.2528940Z [2140/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-neonfp16arith-2x.c.o 2024-06-26T05:40:05.2667210Z [2141/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u8.c.o 2024-06-26T05:40:05.2687440Z [2142/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u16.c.o 2024-06-26T05:40:05.2905120Z [2143/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c16-minmax-neonfp16arith-2x.c.o 2024-06-26T05:40:05.3002160Z [2144/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u16.c.o 2024-06-26T05:40:05.3017890Z [2145/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u8.c.o 2024-06-26T05:40:05.3235120Z [2146/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u8.c.o 2024-06-26T05:40:05.3985590Z [2147/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u16.c.o 2024-06-26T05:40:05.4075350Z [2148/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u16.c.o 2024-06-26T05:40:05.4082520Z [2149/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u8.c.o 2024-06-26T05:40:05.4192090Z [2150/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u8.c.o 2024-06-26T05:40:05.4216550Z [2151/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u16.c.o 2024-06-26T05:40:05.4361710Z [2152/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u16.c.o 2024-06-26T05:40:05.4537160Z [2153/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u16.c.o 2024-06-26T05:40:05.4984910Z [2154/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u8.c.o 2024-06-26T05:40:05.5040150Z [2155/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u32.c.o 2024-06-26T05:40:05.5179810Z [2156/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u24.c.o 2024-06-26T05:40:05.5898600Z [2157/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u40.c.o 2024-06-26T05:40:05.6056120Z [2158/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u48.c.o 2024-06-26T05:40:05.6387660Z [2159/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u16.c.o 2024-06-26T05:40:05.6405560Z [2160/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u64.c.o 2024-06-26T05:40:05.6422060Z [2161/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u24.c.o 2024-06-26T05:40:05.6430770Z [2162/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u56.c.o 2024-06-26T05:40:05.6633930Z [2163/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u32.c.o 2024-06-26T05:40:05.6688220Z [2164/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u48.c.o 2024-06-26T05:40:05.6690460Z [2165/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u8.c.o 2024-06-26T05:40:05.6892120Z [2166/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u40.c.o 2024-06-26T05:40:05.7558840Z [2167/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u64.c.o 2024-06-26T05:40:05.7584200Z [2168/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u56.c.o 2024-06-26T05:40:05.8139280Z [2169/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u16.c.o 2024-06-26T05:40:05.8155470Z [2170/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u24.c.o 2024-06-26T05:40:05.8298020Z [2171/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u32.c.o 2024-06-26T05:40:05.8337300Z [2172/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u32.c.o 2024-06-26T05:40:05.8370260Z [2173/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u40.c.o 2024-06-26T05:40:05.8659140Z [2174/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u8.c.o 2024-06-26T05:40:05.9166680Z [2175/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u48.c.o 2024-06-26T05:40:05.9191610Z [2176/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u16.c.o 2024-06-26T05:40:05.9456290Z [2177/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u64.c.o 2024-06-26T05:40:05.9473450Z [2178/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u72.c.o 2024-06-26T05:40:05.9532190Z [2179/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u56.c.o 2024-06-26T05:40:05.9817330Z [2180/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u8.c.o 2024-06-26T05:40:05.9995570Z [2181/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u80.c.o 2024-06-26T05:40:06.0000310Z [2182/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u16.c.o 2024-06-26T05:40:06.0326730Z [2183/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u24.c.o 2024-06-26T05:40:06.0487050Z [2184/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u8.c.o 2024-06-26T05:40:06.0667800Z [2185/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u40.c.o 2024-06-26T05:40:06.0753980Z [2186/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u32.c.o 2024-06-26T05:40:06.0874410Z [2187/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u56.c.o 2024-06-26T05:40:06.0995640Z [2188/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u64.c.o 2024-06-26T05:40:06.1219100Z [2189/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u48.c.o 2024-06-26T05:40:06.1430110Z [2190/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u72.c.o 2024-06-26T05:40:06.1776620Z [2191/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x16c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:06.1783850Z [2192/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x16c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:06.2213200Z [2193/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x32c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:06.2514290Z [2194/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x16c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:06.2559930Z [2195/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x16c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:06.2621240Z [2196/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x8c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:06.2667940Z [2197/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x32c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:06.3119750Z [2198/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x8c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:06.3348900Z [2199/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x16c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:06.3560220Z [2200/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x32c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:06.3667740Z [2201/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x8c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:06.3998970Z [2202/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:06.4039610Z [2203/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:06.4306540Z [2204/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-5x16c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:06.4376200Z [2205/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-6x8c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:06.4531700Z [2206/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-6x16c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:06.4815400Z [2207/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-5x8c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:06.5113670Z [2208/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-8x16c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:06.5137070Z [2209/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-8x8c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:06.5347340Z [2210/5905] 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 2024-06-26T05:40:06.5556980Z [2211/5905] 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 2024-06-26T05:40:06.5940300Z [2212/5905] 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 2024-06-26T05:40:06.6044770Z [2213/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:06.6051800Z [2214/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:06.6147150Z [2215/5905] 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 2024-06-26T05:40:06.6310250Z [2216/5905] 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 2024-06-26T05:40:06.6319630Z [2217/5905] 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 2024-06-26T05:40:06.6382470Z [2218/5905] 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 2024-06-26T05:40:06.6391610Z [2219/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:06.6522940Z [2220/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:06.6636320Z [2221/5905] 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 2024-06-26T05:40:06.7099920Z [2222/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:06.7229020Z [2223/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:06.7240090Z [2224/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:06.7469580Z [2225/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S.o 2024-06-26T05:40:06.7666600Z [2226/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S.o 2024-06-26T05:40:06.7669010Z [2227/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:06.7676410Z [2228/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:06.7719320Z [2229/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55r0.S.o 2024-06-26T05:40:06.7780800Z [2230/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:06.7937030Z [2231/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:06.8380810Z [2232/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:06.8511420Z [2233/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:06.8626150Z [2234/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:06.8671690Z [2235/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:06.8938930Z [2236/5905] 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 2024-06-26T05:40:06.8944130Z [2237/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:06.8949560Z [2238/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:06.8995860Z [2239/5905] 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 2024-06-26T05:40:06.9005970Z [2240/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:06.9051840Z [2241/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:06.9770750Z [2242/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:06.9883160Z [2243/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:06.9892110Z [2244/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S.o 2024-06-26T05:40:06.9904580Z [2245/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55r0.S.o 2024-06-26T05:40:07.0181490Z [2246/5905] 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 2024-06-26T05:40:07.0228300Z [2247/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:07.0235960Z [2248/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2024-06-26T05:40:07.0240440Z [2249/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S.o 2024-06-26T05:40:07.0244890Z [2250/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma.S.o 2024-06-26T05:40:07.0260190Z [2251/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:07.1013720Z [2252/5905] 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 2024-06-26T05:40:07.1239020Z [2253/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2024-06-26T05:40:07.1241750Z [2254/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:07.1277130Z [2255/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2024-06-26T05:40:07.1409630Z [2256/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2024-06-26T05:40:07.1549040Z [2257/5905] 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 2024-06-26T05:40:07.1575870Z [2258/5905] 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 2024-06-26T05:40:07.1580320Z [2259/5905] 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 2024-06-26T05:40:07.1615010Z [2260/5905] 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 2024-06-26T05:40:07.1617330Z [2261/5905] 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 2024-06-26T05:40:07.2320600Z [2262/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:07.2417040Z [2263/5905] 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 2024-06-26T05:40:07.2688170Z [2264/5905] 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 2024-06-26T05:40:07.2691490Z [2265/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2.S.o 2024-06-26T05:40:07.2693600Z [2266/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4.S.o 2024-06-26T05:40:07.2742720Z [2267/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x1-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:07.2849230Z [2268/5905] 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 2024-06-26T05:40:07.2879700Z [2269/5905] 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 2024-06-26T05:40:07.2957470Z [2270/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:07.3025870Z [2271/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x1-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:07.3476300Z [2272/5905] 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 2024-06-26T05:40:07.3719930Z [2273/5905] 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 2024-06-26T05:40:07.3965080Z [2274/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:07.3974620Z [2275/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:07.4065850Z [2276/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2024-06-26T05:40:07.4078360Z [2277/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:07.4094310Z [2278/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2024-06-26T05:40:07.4118740Z [2279/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2024-06-26T05:40:07.4149390Z [2280/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:07.4238230Z [2281/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2024-06-26T05:40:07.4619490Z [2282/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:07.4959730Z [2283/5905] 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 2024-06-26T05:40:07.5403330Z [2284/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2024-06-26T05:40:07.5412930Z [2285/5905] 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 2024-06-26T05:40:07.5422220Z [2286/5905] 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 2024-06-26T05:40:07.5431480Z [2287/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2024-06-26T05:40:07.5444060Z [2288/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:07.5486950Z [2289/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a73.S.o 2024-06-26T05:40:07.5507860Z [2290/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2024-06-26T05:40:07.5643620Z [2291/5905] 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 2024-06-26T05:40:07.6004160Z [2292/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:07.6119420Z [2293/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:07.6759250Z [2294/5905] 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 2024-06-26T05:40:07.6824220Z [2295/5905] 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 2024-06-26T05:40:07.6833600Z [2296/5905] 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 2024-06-26T05:40:07.6865330Z [2297/5905] 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 2024-06-26T05:40:07.6968680Z [2298/5905] 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 2024-06-26T05:40:07.7104070Z [2299/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:07.7113130Z [2300/5905] 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 2024-06-26T05:40:07.7143370Z [2301/5905] 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 2024-06-26T05:40:07.7231880Z [2302/5905] 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 2024-06-26T05:40:07.7260020Z [2303/5905] 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 2024-06-26T05:40:07.8093410Z [2304/5905] 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 2024-06-26T05:40:07.8154670Z [2305/5905] 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 2024-06-26T05:40:07.8220730Z [2306/5905] 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 2024-06-26T05:40:07.8223190Z [2307/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:07.8236260Z [2308/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:07.8804590Z [2309/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u80.c.o 2024-06-26T05:40:07.9052900Z [2310/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-sigmoid-aarch64-neonfp16arith-rr1-p3-div.c.o 2024-06-26T05:40:07.9071580Z [2311/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-sigmoid-aarch64-neonfp16arith-rr2-p2-div.c.o 2024-06-26T05:40:07.9175060Z [2312/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u72.c.o 2024-06-26T05:40:07.9199140Z [2313/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-sigmoid-aarch64-neonfp16arith-rr1-p2-div.c.o 2024-06-26T05:40:07.9759530Z [2314/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-sigmoid-aarch64-neonfp16arith-rr2-p3-div.c.o 2024-06-26T05:40:08.0057220Z [2315/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-sqrt-aarch64-neonfp16arith-sqrt.c.o 2024-06-26T05:40:08.0135710Z [2316/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f16-tanh-aarch64-neonfp16arith-expm1minus-rr1-p3h1ts-div.c.o 2024-06-26T05:40:08.0261140Z [2317/5905] 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 2024-06-26T05:40:08.0340310Z [2318/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f16-tanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div.c.o 2024-06-26T05:40:08.0691510Z [2319/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c4-minmax-neondot.c.o 2024-06-26T05:40:08.0950550Z [2320/5905] 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 2024-06-26T05:40:08.1077080Z [2321/5905] 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 2024-06-26T05:40:08.1181640Z [2322/5905] 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 2024-06-26T05:40:08.1565760Z [2323/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x16c4-minmax-neondot.c.o 2024-06-26T05:40:08.1651570Z [2324/5905] 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 2024-06-26T05:40:08.1949150Z [2325/5905] 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 2024-06-26T05:40:08.2000740Z [2326/5905] 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 2024-06-26T05:40:08.2211660Z [2327/5905] 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 2024-06-26T05:40:08.2220960Z [2328/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c4-minmax-neondot.c.o 2024-06-26T05:40:08.2543980Z [2329/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c4-minmax-neondot.c.o 2024-06-26T05:40:08.2831070Z [2330/5905] 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 2024-06-26T05:40:08.2858910Z [2331/5905] 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 2024-06-26T05:40:08.3093660Z [2332/5905] 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 2024-06-26T05:40:08.3503700Z [2333/5905] 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 2024-06-26T05:40:08.3754880Z [2334/5905] 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 2024-06-26T05:40:08.3760810Z [2335/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8c4-minmax-neondot.c.o 2024-06-26T05:40:08.3770740Z [2336/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c4-minmax-neondot.c.o 2024-06-26T05:40:08.3864540Z [2337/5905] 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 2024-06-26T05:40:08.4213740Z [2338/5905] 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 2024-06-26T05:40:08.4423060Z [2339/5905] 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 2024-06-26T05:40:08.4661640Z [2340/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c4-minmax-neondot.c.o 2024-06-26T05:40:08.4907320Z [2341/5905] 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 2024-06-26T05:40:08.4978100Z [2342/5905] 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 2024-06-26T05:40:08.5401640Z [2343/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c4-minmax-neondot.c.o 2024-06-26T05:40:08.5575000Z [2344/5905] 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 2024-06-26T05:40:08.5657020Z [2345/5905] 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 2024-06-26T05:40:08.5764220Z [2346/5905] 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 2024-06-26T05:40:08.5825360Z [2347/5905] 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 2024-06-26T05:40:08.6081540Z [2348/5905] 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 2024-06-26T05:40:08.6091350Z [2349/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8c4-minmax-neondot.c.o 2024-06-26T05:40:08.6954960Z [2350/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16c4-minmax-neondot.c.o 2024-06-26T05:40:08.7142790Z [2351/5905] 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 2024-06-26T05:40:08.7148210Z [2352/5905] 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 2024-06-26T05:40:08.7172510Z [2353/5905] 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 2024-06-26T05:40:08.7416090Z [2354/5905] 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 2024-06-26T05:40:08.7483780Z [2355/5905] 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 2024-06-26T05:40:08.7616740Z [2356/5905] 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 2024-06-26T05:40:08.7827430Z [2357/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:08.7875900Z [2358/5905] 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 2024-06-26T05:40:08.8111280Z [2359/5905] 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 2024-06-26T05:40:08.8570370Z [2360/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:08.9095610Z [2361/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:08.9254220Z [2362/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:08.9288340Z [2363/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x8c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:08.9414350Z [2364/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-8x8c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:08.9520510Z [2365/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x16c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:08.9632340Z [2366/5905] 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 2024-06-26T05:40:08.9642240Z [2367/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:09.0015880Z [2368/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-8x16c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:09.0275440Z [2369/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:09.0416970Z [2370/5905] 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 2024-06-26T05:40:09.0679310Z [2371/5905] 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 2024-06-26T05:40:09.1258860Z [2372/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:09.1282270Z [2373/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x16c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:09.1495170Z [2374/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:09.1504480Z [2375/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-8x8c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:09.1814080Z [2376/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x8c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:09.1820550Z [2377/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x8c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.2040360Z [2378/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-8x16c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:09.2170830Z [2379/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x16c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:09.2416780Z [2380/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x32c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.2620310Z [2381/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x16c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.3464470Z [2382/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x8c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.3540010Z [2383/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x16c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:09.3627460Z [2384/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x8c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.3852460Z [2385/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x16c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.3876950Z [2386/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x16c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.3885940Z [2387/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x32c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.3927210Z [2388/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x8c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.3961680Z [2389/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x32c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.4448880Z [2390/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16c4-minmax-fp32-neondot.c.o 2024-06-26T05:40:09.4590490Z [2391/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.5155840Z [2392/5905] 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 2024-06-26T05:40:09.5395310Z [2393/5905] 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 2024-06-26T05:40:09.5491760Z [2394/5905] 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 2024-06-26T05:40:09.5571880Z [2395/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-5x8c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.5687090Z [2396/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-6x8c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.5926060Z [2397/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-6x16c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.5973410Z [2398/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x8c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.5995290Z [2399/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-5x16c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.6170610Z [2400/5905] 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 2024-06-26T05:40:09.6292770Z [2401/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-8x8c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.6371660Z [2402/5905] 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-a75-prfm.S.o 2024-06-26T05:40:09.6501990Z [2403/5905] 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-a75.S.o 2024-06-26T05:40:09.6685910Z [2404/5905] 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 2024-06-26T05:40:09.6705690Z [2405/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-8x16c4-minmax-rndnu-neondot.c.o 2024-06-26T05:40:09.6822230Z [2406/5905] 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 2024-06-26T05:40:09.7134950Z [2407/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-cortex-a55.S.o 2024-06-26T05:40:09.7138890Z [2408/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:09.7382060Z [2409/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16c4-minmax-rndnu-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:09.7386740Z [2410/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16c4-minmax-rndnu-asm-aarch64-neondot-cortex-a55.S.o 2024-06-26T05:40:09.7617350Z [2411/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2-k-over-64.c.o 2024-06-26T05:40:09.7697340Z [2412/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2-k-over-2048.c.o 2024-06-26T05:40:09.7883550Z [2413/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-4.c.o 2024-06-26T05:40:09.7926520Z [2414/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-16.c.o 2024-06-26T05:40:09.8115080Z [2415/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-8.c.o 2024-06-26T05:40:09.8121990Z [2416/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-32.c.o 2024-06-26T05:40:09.8351210Z [2417/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-64.c.o 2024-06-26T05:40:09.8542730Z [2418/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-2048.c.o 2024-06-26T05:40:09.8596210Z [2419/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:09.8611050Z [2420/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:09.8622370Z [2421/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2024-06-26T05:40:09.8908130Z [2422/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/vlog.c.o 2024-06-26T05:40:09.8994580Z [2423/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2024-06-26T05:40:09.9005450Z [2424/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:09.9284040Z [2425/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2024-06-26T05:40:09.9353010Z [2426/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2024-06-26T05:40:09.9470260Z [2427/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:09.9812790Z [2428/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:09.9824830Z [2429/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2024-06-26T05:40:09.9843590Z [2430/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2024-06-26T05:40:09.9903300Z [2431/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2024-06-26T05:40:10.0258460Z [2432/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2-prfm.S.o 2024-06-26T05:40:10.0269830Z [2433/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2-prfm.S.o 2024-06-26T05:40:10.0283060Z [2434/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2.S.o 2024-06-26T05:40:10.0586050Z [2435/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2.S.o 2024-06-26T05:40:10.0622850Z [2436/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4.S.o 2024-06-26T05:40:10.0664880Z [2437/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4-prfm.S.o 2024-06-26T05:40:10.1124780Z [2438/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2.S.o 2024-06-26T05:40:10.1142800Z [2439/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:10.1192980Z [2440/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S.o 2024-06-26T05:40:10.1364560Z [2441/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2-prfm.S.o 2024-06-26T05:40:10.1436420Z [2442/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4.S.o 2024-06-26T05:40:10.1501820Z [2443/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4-prfm.S.o 2024-06-26T05:40:10.1547330Z [2444/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2024-06-26T05:40:10.1904450Z [2445/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:10.1913630Z [2446/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x1-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:10.1935640Z [2447/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x1-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:10.2366680Z [2448/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:10.2487710Z [2449/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x2-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:10.2598930Z [2450/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:10.2805300Z [2451/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:10.2820690Z [2452/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:10.2824520Z [2453/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:10.2841750Z [2454/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2-prfm.S.o 2024-06-26T05:40:10.3149050Z [2455/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2.S.o 2024-06-26T05:40:10.3192020Z [2456/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2.S.o 2024-06-26T05:40:10.3200830Z [2457/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2-prfm.S.o 2024-06-26T05:40:10.3536520Z [2458/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4-prfm.S.o 2024-06-26T05:40:10.3635550Z [2459/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S.o 2024-06-26T05:40:10.3813160Z [2460/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4.S.o 2024-06-26T05:40:10.4072740Z [2461/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2-prfm.S.o 2024-06-26T05:40:10.4079230Z [2462/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2.S.o 2024-06-26T05:40:10.4120630Z [2463/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:10.4142460Z [2464/5905] 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-prfm.S.o 2024-06-26T05:40:10.4440690Z [2465/5905] 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 2024-06-26T05:40:10.4481070Z [2466/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2024-06-26T05:40:10.4489960Z [2467/5905] 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 2024-06-26T05:40:10.4744970Z [2468/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x1-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:10.4939560Z [2469/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x1-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:10.4948490Z [2470/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:10.5341730Z [2471/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:10.5404610Z [2472/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:10.5421970Z [2473/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:10.5510750Z [2474/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:10.5795060Z [2475/5905] 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 2024-06-26T05:40:10.5826430Z [2476/5905] 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 2024-06-26T05:40:10.5859920Z [2477/5905] 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 2024-06-26T05:40:10.5917150Z [2478/5905] 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 2024-06-26T05:40:10.6229960Z [2479/5905] 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 2024-06-26T05:40:10.6253080Z [2480/5905] 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 2024-06-26T05:40:10.6798060Z [2481/5905] 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-ld64.S.o 2024-06-26T05:40:10.6800470Z [2482/5905] 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 2024-06-26T05:40:10.6806690Z [2483/5905] 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 2024-06-26T05:40:10.6819840Z [2484/5905] 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 2024-06-26T05:40:10.7128110Z [2485/5905] 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 2024-06-26T05:40:10.7177680Z [2486/5905] 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 2024-06-26T05:40:10.7182500Z [2487/5905] 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.S.o 2024-06-26T05:40:10.7194140Z [2488/5905] 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 2024-06-26T05:40:10.7572650Z [2489/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c4-minmax-fp32-asm-aarch64-neondot-ld32.S.o 2024-06-26T05:40:10.7583580Z [2490/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c4-minmax-fp32-asm-aarch64-neondot-ld64.S.o 2024-06-26T05:40:10.8045800Z [2491/5905] 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 2024-06-26T05:40:10.8081980Z [2492/5905] 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.S.o 2024-06-26T05:40:10.8090730Z [2493/5905] 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 2024-06-26T05:40:10.8168530Z [2494/5905] 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 2024-06-26T05:40:10.8403120Z [2495/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c16-minmax-fp32-asm-aarch64-neon-mlal.S.o 2024-06-26T05:40:10.8428050Z [2496/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mull.S.o 2024-06-26T05:40:10.8441140Z [2497/5905] 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 2024-06-26T05:40:10.8480020Z [2498/5905] 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-prfm.S.o 2024-06-26T05:40:10.8730760Z [2499/5905] 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 2024-06-26T05:40:10.8737000Z [2500/5905] 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-prfm.S.o 2024-06-26T05:40:10.9455890Z [2501/5905] 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 2024-06-26T05:40:10.9464330Z [2502/5905] 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 2024-06-26T05:40:10.9539690Z [2503/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld64.S.o 2024-06-26T05:40:10.9557540Z [2504/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld32.S.o 2024-06-26T05:40:10.9786920Z [2505/5905] 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.S.o 2024-06-26T05:40:10.9811040Z [2506/5905] 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 2024-06-26T05:40:10.9814110Z [2507/5905] 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 2024-06-26T05:40:10.9840390Z [2508/5905] 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 2024-06-26T05:40:10.9854100Z [2509/5905] 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.S.o 2024-06-26T05:40:10.9858860Z [2510/5905] 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 2024-06-26T05:40:11.0819260Z [2511/5905] 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 2024-06-26T05:40:11.0867290Z [2512/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c16-minmax-fp32-asm-aarch64-neon-mlal.S.o 2024-06-26T05:40:11.0910910Z [2513/5905] 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 2024-06-26T05:40:11.1512910Z [2514/5905] 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 2024-06-26T05:40:11.1517840Z [2515/5905] 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-prfm.S.o 2024-06-26T05:40:11.1522960Z [2516/5905] 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 2024-06-26T05:40:11.1530570Z [2517/5905] 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 2024-06-26T05:40:11.1766190Z [2518/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld64.S.o 2024-06-26T05:40:11.1797130Z [2519/5905] 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 2024-06-26T05:40:11.1820290Z [2520/5905] 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-prfm.S.o 2024-06-26T05:40:11.2022810Z [2521/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x8c4-minmax-rndnu-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:11.2038720Z [2522/5905] 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 2024-06-26T05:40:11.2047650Z [2523/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x8c4-minmax-rndnu-asm-aarch64-neondot-cortex-a55.S.o 2024-06-26T05:40:11.2780730Z [2524/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-ld64-prfm.S.o 2024-06-26T05:40:11.2814540Z [2525/5905] 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.S.o 2024-06-26T05:40:11.2875670Z [2526/5905] 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 2024-06-26T05:40:11.2878120Z [2527/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-ld64.S.o 2024-06-26T05:40:11.3067500Z [2528/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:11.3087800Z [2529/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-cortex-a55.S.o 2024-06-26T05:40:11.3132810Z [2530/5905] 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 2024-06-26T05:40:11.3161870Z [2531/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16c4-minmax-rndnu-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:11.3201230Z [2532/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16c4-minmax-rndnu-asm-aarch64-neondot-cortex-a55.S.o 2024-06-26T05:40:11.3288530Z [2533/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x8c4-minmax-rndnu-asm-aarch64-neondot-cortex-a55.S.o 2024-06-26T05:40:11.4156420Z [2534/5905] 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 2024-06-26T05:40:11.4277130Z [2535/5905] 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 2024-06-26T05:40:11.4369250Z [2536/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x8c4-minmax-rndnu-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:11.4385620Z [2537/5905] 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.S.o 2024-06-26T05:40:11.4399040Z [2538/5905] 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 2024-06-26T05:40:11.4401600Z [2539/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-ld64.S.o 2024-06-26T05:40:11.4450710Z [2540/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-ld64-prfm.S.o 2024-06-26T05:40:11.4453140Z [2541/5905] 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 2024-06-26T05:40:11.4497100Z [2542/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-cortex-a55.S.o 2024-06-26T05:40:11.4509900Z [2543/5905] 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 2024-06-26T05:40:11.5443250Z [2544/5905] 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 2024-06-26T05:40:11.5467870Z [2545/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:11.5585920Z [2546/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/f32-igemm-1x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:11.5691150Z [2547/5905] 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 2024-06-26T05:40:11.5707180Z [2548/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2024-06-26T05:40:11.5709700Z [2549/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/f32-igemm-4x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:11.5728450Z [2550/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:11.5782530Z [2551/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2024-06-26T05:40:11.5823970Z [2552/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a73.S.o 2024-06-26T05:40:11.5973900Z [2553/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2024-06-26T05:40:11.6722920Z [2554/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:11.6957090Z [2555/5905] 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 2024-06-26T05:40:11.6973030Z [2556/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2024-06-26T05:40:11.6987360Z [2557/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:11.6999930Z [2558/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2024-06-26T05:40:11.7011180Z [2559/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2024-06-26T05:40:11.7013540Z [2560/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:11.7033410Z [2561/5905] 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 2024-06-26T05:40:11.7037640Z [2562/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2024-06-26T05:40:11.7048810Z [2563/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:11.7987030Z [2564/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2024-06-26T05:40:11.8294570Z [2565/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2024-06-26T05:40:11.8300470Z [2566/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:11.8342780Z [2567/5905] 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 2024-06-26T05:40:11.8345150Z [2568/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:11.8352810Z [2569/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2024-06-26T05:40:11.8371230Z [2570/5905] 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 2024-06-26T05:40:11.8382310Z [2571/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2024-06-26T05:40:11.8506710Z [2572/5905] 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 2024-06-26T05:40:11.8549900Z [2573/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:11.9332690Z [2574/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:11.9599640Z [2575/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:11.9632740Z [2576/5905] 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 2024-06-26T05:40:11.9653010Z [2577/5905] 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 2024-06-26T05:40:11.9657590Z [2578/5905] 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 2024-06-26T05:40:11.9664130Z [2579/5905] 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 2024-06-26T05:40:11.9691910Z [2580/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:11.9710490Z [2581/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:11.9716490Z [2582/5905] 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 2024-06-26T05:40:11.9863100Z [2583/5905] 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 2024-06-26T05:40:12.0615010Z [2584/5905] 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 2024-06-26T05:40:12.0867920Z [2585/5905] 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 2024-06-26T05:40:12.0881800Z [2586/5905] 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 2024-06-26T05:40:12.0907390Z [2587/5905] 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 2024-06-26T05:40:12.0916720Z [2588/5905] 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 2024-06-26T05:40:12.0922180Z [2589/5905] 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 2024-06-26T05:40:12.0970370Z [2590/5905] 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 2024-06-26T05:40:12.1045260Z [2591/5905] 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 2024-06-26T05:40:12.1093510Z [2592/5905] 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 2024-06-26T05:40:12.1123250Z [2593/5905] 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 2024-06-26T05:40:12.1939660Z [2594/5905] 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 2024-06-26T05:40:12.2145010Z [2595/5905] 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 2024-06-26T05:40:12.2213570Z [2596/5905] 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 2024-06-26T05:40:12.2239530Z [2597/5905] 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 2024-06-26T05:40:12.2380780Z [2598/5905] 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 2024-06-26T05:40:12.2389350Z [2599/5905] 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 2024-06-26T05:40:12.2412870Z [2600/5905] 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 2024-06-26T05:40:12.2416860Z [2601/5905] 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 2024-06-26T05:40:12.2421470Z [2602/5905] 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 2024-06-26T05:40:12.2426950Z [2603/5905] 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 2024-06-26T05:40:12.3068000Z [2604/5905] 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 2024-06-26T05:40:12.3476160Z [2605/5905] 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 2024-06-26T05:40:12.3509690Z [2606/5905] 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 2024-06-26T05:40:12.3519090Z [2607/5905] 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 2024-06-26T05:40:12.3529350Z [2608/5905] 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 2024-06-26T05:40:12.3537060Z [2609/5905] 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 2024-06-26T05:40:12.3541640Z [2610/5905] 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 2024-06-26T05:40:12.3566970Z [2611/5905] 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 2024-06-26T05:40:12.3582350Z [2612/5905] 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 2024-06-26T05:40:12.3701490Z [2613/5905] 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 2024-06-26T05:40:12.4306620Z [2614/5905] 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 2024-06-26T05:40:12.4660880Z [2615/5905] 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 2024-06-26T05:40:12.4732560Z [2616/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:12.4755770Z [2617/5905] 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 2024-06-26T05:40:12.4766380Z [2618/5905] 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 2024-06-26T05:40:12.4782170Z [2619/5905] 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.S.o 2024-06-26T05:40:12.4888100Z [2620/5905] 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 2024-06-26T05:40:12.4898480Z [2621/5905] 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 2024-06-26T05:40:12.4911810Z [2622/5905] 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 2024-06-26T05:40:12.5057240Z [2623/5905] 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 2024-06-26T05:40:12.5635140Z [2624/5905] 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 2024-06-26T05:40:12.5934040Z [2625/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:12.5961190Z [2626/5905] 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 2024-06-26T05:40:12.5968020Z [2627/5905] 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 2024-06-26T05:40:12.6065060Z [2628/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:12.6080250Z [2629/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:12.6239880Z [2630/5905] 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-cortex-a55.S.o 2024-06-26T05:40:12.6250810Z [2631/5905] 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 2024-06-26T05:40:12.6257020Z [2632/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondotfp16arith-cortex-a55.S.o 2024-06-26T05:40:12.6280620Z [2633/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-cortex-a55.S.o 2024-06-26T05:40:12.6880750Z [2634/5905] 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-ld128.S.o 2024-06-26T05:40:12.7267880Z [2635/5905] 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-prfm.S.o 2024-06-26T05:40:12.7283700Z [2636/5905] 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 2024-06-26T05:40:12.7352320Z [2637/5905] 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-prfm.S.o 2024-06-26T05:40:12.7365170Z [2638/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-cortex-a55.S.o 2024-06-26T05:40:12.7499880Z [2639/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:12.7502100Z [2640/5905] 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.S.o 2024-06-26T05:40:12.7504430Z [2641/5905] 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 2024-06-26T05:40:12.7561740Z [2642/5905] 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 2024-06-26T05:40:12.7565930Z [2643/5905] 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-prfm.S.o 2024-06-26T05:40:12.8169240Z [2644/5905] 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 2024-06-26T05:40:12.8596510Z [2645/5905] 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.S.o 2024-06-26T05:40:12.8667220Z [2646/5905] 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 2024-06-26T05:40:12.8685460Z [2647/5905] 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-prfm.S.o 2024-06-26T05:40:12.8703360Z [2648/5905] 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 2024-06-26T05:40:12.8823420Z [2649/5905] 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.S.o 2024-06-26T05:40:12.8828010Z [2650/5905] 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 2024-06-26T05:40:12.8897840Z [2651/5905] 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 2024-06-26T05:40:12.8927270Z [2652/5905] 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.S.o 2024-06-26T05:40:12.9187870Z [2653/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-cortex-a55.S.o 2024-06-26T05:40:12.9406380Z [2654/5905] 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 2024-06-26T05:40:12.9861010Z [2655/5905] 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 2024-06-26T05:40:12.9898940Z [2656/5905] 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-prfm.S.o 2024-06-26T05:40:12.9916000Z [2657/5905] 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.S.o 2024-06-26T05:40:12.9930270Z [2658/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:12.9962510Z [2659/5905] 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 2024-06-26T05:40:13.0080610Z [2660/5905] 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-prfm.S.o 2024-06-26T05:40:13.0144520Z [2661/5905] 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-prfm.S.o 2024-06-26T05:40:13.0225850Z [2662/5905] 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 2024-06-26T05:40:13.0371040Z [2663/5905] 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-prfm.S.o 2024-06-26T05:40:13.0648960Z [2664/5905] 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.S.o 2024-06-26T05:40:13.1188840Z [2665/5905] 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 2024-06-26T05:40:13.1191920Z [2666/5905] 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 2024-06-26T05:40:13.1208010Z [2667/5905] 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.S.o 2024-06-26T05:40:13.1227770Z [2668/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-cortex-a55.S.o 2024-06-26T05:40:13.1249010Z [2669/5905] 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.S.o 2024-06-26T05:40:13.1310110Z [2670/5905] 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 2024-06-26T05:40:13.1459450Z [2671/5905] 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 2024-06-26T05:40:13.1485260Z [2672/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:13.1608760Z [2673/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x8c4-minmax-rndnu-asm-aarch64-neondot-cortex-a55.S.o 2024-06-26T05:40:13.1817390Z [2674/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x8c4-minmax-rndnu-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:13.2564780Z [2675/5905] 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 2024-06-26T05:40:13.2570440Z [2676/5905] 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-prfm.S.o 2024-06-26T05:40:13.2583980Z [2677/5905] 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 2024-06-26T05:40:13.2658450Z [2678/5905] 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-a75-prfm.S.o 2024-06-26T05:40:13.2665180Z [2679/5905] 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-a75.S.o 2024-06-26T05:40:13.2678540Z [2680/5905] 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 2024-06-26T05:40:13.2843910Z [2681/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-cortex-a55.S.o 2024-06-26T05:40:13.2966840Z [2682/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:13.2975340Z [2683/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16c4-minmax-rndnu-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:13.2982590Z [2684/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16c4-minmax-rndnu-asm-aarch64-neondot-cortex-a55.S.o 2024-06-26T05:40:13.3863770Z [2685/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x8c4-minmax-rndnu-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:13.3871460Z [2686/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x8c4-minmax-rndnu-asm-aarch64-neondot-cortex-a55.S.o 2024-06-26T05:40:13.3938740Z [2687/5905] 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-prfm.S.o 2024-06-26T05:40:13.4213100Z [2688/5905] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2024-06-26T05:40:13.4217110Z [2689/5905] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2024-06-26T05:40:13.4230200Z [2690/5905] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2024-06-26T05:40:13.4289400Z [2691/5905] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2024-06-26T05:40:13.4556280Z [2692/5905] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2024-06-26T05:40:13.4650610Z [2693/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2024-06-26T05:40:13.4990530Z [2694/5905] Building C object confu-deps/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2024-06-26T05:40:13.5203520Z [2695/5905] Building C object confu-deps/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2024-06-26T05:40:13.5336100Z [2696/5905] Building C object confu-deps/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2024-06-26T05:40:13.5515260Z [2697/5905] Building C object confu-deps/XNNPACK/CMakeFiles/packing.dir/src/packing.c.o 2024-06-26T05:40:13.5563330Z [2698/5905] Building C object confu-deps/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2024-06-26T05:40:13.5587490Z [2699/5905] Building C object confu-deps/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2024-06-26T05:40:13.5805440Z [2700/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2024-06-26T05:40:13.5951230Z [2701/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2024-06-26T05:40:13.6336670Z [2702/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2024-06-26T05:40:13.6475900Z [2703/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2024-06-26T05:40:13.6755990Z [2704/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2024-06-26T05:40:13.6767720Z [2705/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2024-06-26T05:40:13.6977030Z [2706/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2024-06-26T05:40:13.7123780Z [2707/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2024-06-26T05:40:13.7136430Z [2708/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2024-06-26T05:40:13.7371490Z [2709/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2024-06-26T05:40:13.7396540Z [2710/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2024-06-26T05:40:13.7406110Z [2711/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2024-06-26T05:40:13.7862310Z [2712/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/global-average-pooling-ncw.c.o 2024-06-26T05:40:13.8106600Z [2713/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/lut-elementwise-nc.c.o 2024-06-26T05:40:13.8117470Z [2714/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/global-average-pooling-nwc.c.o 2024-06-26T05:40:13.8502650Z [2715/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2024-06-26T05:40:13.8748740Z [2716/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2024-06-26T05:40:13.8897990Z [2717/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2024-06-26T05:40:13.8912170Z [2718/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2024-06-26T05:40:13.8938400Z [2719/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2024-06-26T05:40:13.9127940Z [2720/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2024-06-26T05:40:13.9241280Z [2721/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2024-06-26T05:40:13.9343070Z [2722/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/prelu-nc.c.o 2024-06-26T05:40:13.9878770Z [2723/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2024-06-26T05:40:13.9898590Z [2724/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2024-06-26T05:40:14.0147640Z [2725/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2024-06-26T05:40:14.0156870Z [2726/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2024-06-26T05:40:14.0417120Z [2727/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2024-06-26T05:40:14.0502780Z [2728/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2024-06-26T05:40:14.0563650Z [2729/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2024-06-26T05:40:14.0575970Z [2730/5905] Building C object confu-deps/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2024-06-26T05:40:14.0642750Z [2731/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2024-06-26T05:40:14.0823470Z [2732/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2024-06-26T05:40:14.1439370Z [2733/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/add2.c.o 2024-06-26T05:40:14.1594190Z [2734/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/abs.c.o 2024-06-26T05:40:14.1686370Z [2735/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2024-06-26T05:40:14.1915440Z [2736/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/ceiling.c.o 2024-06-26T05:40:14.2049670Z [2737/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2024-06-26T05:40:14.2085900Z [2738/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2024-06-26T05:40:14.2190530Z [2739/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/bankers-rounding.c.o 2024-06-26T05:40:14.2221170Z [2740/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2024-06-26T05:40:14.2400630Z [2741/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convert.c.o 2024-06-26T05:40:14.2403710Z [2742/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/clamp.c.o 2024-06-26T05:40:14.3063290Z [2743/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2024-06-26T05:40:14.3292420Z [2744/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2024-06-26T05:40:14.3342980Z [2745/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2024-06-26T05:40:14.3458810Z [2746/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2024-06-26T05:40:14.3661280Z [2747/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2024-06-26T05:40:14.3684870Z [2748/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/divide.c.o 2024-06-26T05:40:14.3718820Z [2749/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2024-06-26T05:40:14.4553960Z [2750/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2024-06-26T05:40:14.4568080Z [2751/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/elu.c.o 2024-06-26T05:40:14.4725780Z [2752/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/floor.c.o 2024-06-26T05:40:14.4895950Z [2753/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/global-sum-pooling.c.o 2024-06-26T05:40:14.5076210Z [2754/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2024-06-26T05:40:14.5157500Z [2755/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/hardswish.c.o 2024-06-26T05:40:14.5258310Z [2756/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/leaky-relu.c.o 2024-06-26T05:40:14.5373650Z [2757/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2024-06-26T05:40:14.5381080Z [2758/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/maximum2.c.o 2024-06-26T05:40:14.5393340Z [2759/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/global-average-pooling.c.o 2024-06-26T05:40:14.6106070Z [2760/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/multiply2.c.o 2024-06-26T05:40:14.6129780Z [2761/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/minimum2.c.o 2024-06-26T05:40:14.6224850Z [2762/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/prelu.c.o 2024-06-26T05:40:14.6315070Z [2763/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/negate.c.o 2024-06-26T05:40:14.6623310Z [2764/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2024-06-26T05:40:14.6830770Z [2765/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/square-root.c.o 2024-06-26T05:40:14.6878830Z [2766/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2024-06-26T05:40:14.6910580Z [2767/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/sigmoid.c.o 2024-06-26T05:40:14.7108590Z [2768/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2024-06-26T05:40:14.7257970Z [2769/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2024-06-26T05:40:14.7469020Z [2770/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16c4-minmax-rndnu-asm-aarch64-neondot-cortex-a55.S.o 2024-06-26T05:40:14.7514230Z [2771/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16c4-minmax-rndnu-asm-aarch64-neondot-ld128.S.o 2024-06-26T05:40:14.7967810Z [2772/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2024-06-26T05:40:14.7974570Z [2773/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2024-06-26T05:40:14.7985520Z [2774/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2024-06-26T05:40:14.7995440Z [2775/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2024-06-26T05:40:14.8213290Z [2776/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2024-06-26T05:40:14.8253340Z [2777/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/squared-difference.c.o 2024-06-26T05:40:14.8386990Z [2778/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2024-06-26T05:40:14.8522450Z [2779/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2024-06-26T05:40:14.8538350Z [2780/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2024-06-26T05:40:14.8902950Z [2781/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/square.c.o 2024-06-26T05:40:14.9230920Z [2782/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2024-06-26T05:40:14.9328970Z [2783/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2024-06-26T05:40:14.9641650Z [2784/5905] Building C object confu-deps/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2024-06-26T05:40:14.9742190Z [2785/5905] Building C object confu-deps/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2024-06-26T05:40:15.0839600Z [2786/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/jit/aarch32-assembler.cc.o 2024-06-26T05:40:15.0872980Z [2787/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/jit/aarch64-assembler.cc.o 2024-06-26T05:40:15.1119470Z [2788/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/jit/assembler.cc.o 2024-06-26T05:40:15.1643330Z [2789/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f16-gemm/gen/f16-gemm-4x16-aarch64-neonfp16arith-ld64.cc.o 2024-06-26T05:40:15.2031380Z [2790/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f16-gemm/gen/f16-gemm-6x16-aarch64-neonfp16arith-cortex-a55.cc.o 2024-06-26T05:40:15.2139660Z [2791/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f16-gemm/gen/f16-gemm-1x16-aarch64-neonfp16arith-ld64.cc.o 2024-06-26T05:40:15.2574160Z [2792/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f16-gemm/gen/f16-gemm-6x16-aarch64-neonfp16arith-ld64.cc.o 2024-06-26T05:40:15.2592030Z [2793/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f16-igemm/gen/f16-igemm-1x16-aarch64-neonfp16arith-ld64.cc.o 2024-06-26T05:40:15.2678350Z [2794/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f16-gemm/gen/f16-gemm-6x16-aarch64-neonfp16arith-cortex-a75.cc.o 2024-06-26T05:40:15.2711690Z [2795/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f16-gemm/gen/f16-gemm-6x16-aarch64-neonfp16arith-cortex-a55r0.cc.o 2024-06-26T05:40:15.3870250Z [2796/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f16-igemm/gen/f16-igemm-6x16-aarch64-neonfp16arith-cortex-a55.cc.o 2024-06-26T05:40:15.4053400Z [2797/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f16-igemm/gen/f16-igemm-6x16-aarch64-neonfp16arith-cortex-a55r0.cc.o 2024-06-26T05:40:15.4206030Z [2798/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f16-igemm/gen/f16-igemm-4x16-aarch64-neonfp16arith-ld64.cc.o 2024-06-26T05:40:15.4537910Z [2799/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f16-igemm/gen/f16-igemm-6x16-aarch64-neonfp16arith-cortex-a75.cc.o 2024-06-26T05:40:15.4852170Z [2800/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f16-igemm/gen/f16-igemm-6x16-aarch64-neonfp16arith-ld64.cc.o 2024-06-26T05:40:15.5074860Z [2801/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-gemm/gen/f32-gemm-1x8-aarch64-neonfma-cortex-a53.cc.o 2024-06-26T05:40:15.5614410Z [2802/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-gemm/gen/f32-gemm-1x8-aarch64-neonfma-ld64.cc.o 2024-06-26T05:40:15.5751090Z [2803/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-gemm/gen/f32-gemm-1x8-aarch64-neonfma-cortex-a75.cc.o 2024-06-26T05:40:15.6014670Z [2804/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-gemm/gen/f32-gemm-4x8-aarch64-neonfma-cortex-a55.cc.o 2024-06-26T05:40:15.6046890Z [2805/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-gemm/gen/f32-gemm-4x8-aarch64-neonfma-cortex-a53.cc.o 2024-06-26T05:40:15.7530170Z [2806/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-gemm/gen/f32-gemm-4x8-aarch64-neonfma-cortex-a75.cc.o 2024-06-26T05:40:15.7564800Z [2807/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-gemm/gen/f32-gemm-4x8-aarch64-neonfma-ld128.cc.o 2024-06-26T05:40:15.7575410Z [2808/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-gemm/gen/f32-gemm-6x8-aarch64-neonfma-cortex-a53.cc.o 2024-06-26T05:40:15.7594070Z [2809/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-gemm/gen/f32-gemm-6x8-aarch64-neonfma-cortex-a55.cc.o 2024-06-26T05:40:15.7872680Z [2810/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-gemm/gen/f32-gemm-6x8-aarch64-neonfma-cortex-a75.cc.o 2024-06-26T05:40:15.7933690Z [2811/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-igemm/gen/f32-igemm-1x8-aarch64-neonfma-cortex-a53.cc.o 2024-06-26T05:40:15.8096670Z [2812/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-igemm/gen/f32-igemm-1x8-aarch64-neonfma-cortex-a75.cc.o 2024-06-26T05:40:15.8251940Z [2813/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-gemm/gen/f32-gemm-6x8-aarch64-neonfma-ld128.cc.o 2024-06-26T05:40:15.9612310Z [2814/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-igemm/gen/f32-igemm-4x8-aarch64-neonfma-cortex-a55.cc.o 2024-06-26T05:40:15.9840730Z [2815/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-igemm/gen/f32-igemm-4x8-aarch64-neonfma-cortex-a53.cc.o 2024-06-26T05:40:16.1042920Z [2816/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-mean.c.o 2024-06-26T05:40:16.1154450Z [2817/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-igemm/gen/f32-igemm-4x8-aarch64-neonfma-cortex-a75.cc.o 2024-06-26T05:40:16.1164620Z [2818/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-igemm/gen/f32-igemm-4x8-aarch64-neonfma-ld128.cc.o 2024-06-26T05:40:16.1169570Z [2819/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reshape.c.o 2024-06-26T05:40:16.1171290Z [2820/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-igemm/gen/f32-igemm-6x8-aarch64-neonfma-cortex-a53.cc.o 2024-06-26T05:40:16.1199230Z [2821/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-igemm/gen/f32-igemm-6x8-aarch64-neonfma-cortex-a55.cc.o 2024-06-26T05:40:16.1456070Z [2822/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-igemm/gen/f32-igemm-6x8-aarch64-neonfma-cortex-a75.cc.o 2024-06-26T05:40:16.1482920Z [2823/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/f32-igemm/gen/f32-igemm-6x8-aarch64-neonfma-ld128.cc.o 2024-06-26T05:40:16.1636330Z [2824/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2024-06-26T05:40:16.1865040Z [2825/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2024-06-26T05:40:16.2701240Z [2826/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2024-06-26T05:40:16.2836030Z [2827/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2024-06-26T05:40:16.2860890Z [2828/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2024-06-26T05:40:16.2950920Z [2829/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2024-06-26T05:40:16.3011870Z [2830/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2024-06-26T05:40:16.3022100Z [2831/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/subtract.c.o 2024-06-26T05:40:16.3241620Z [2832/5905] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/tanh.c.o 2024-06-26T05:40:16.3423950Z [2833/5905] Building C object confu-deps/XNNPACK/CMakeFiles/post-operation.dir/src/operators/post-operation.c.o 2024-06-26T05:40:16.3571350Z [2834/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2024-06-26T05:40:16.4176490Z [2835/5905] Building C object third_party/foxi/CMakeFiles/foxi_loader.dir/foxi/onnxifi_loader.c.o 2024-06-26T05:40:16.4218420Z [2836/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2024-06-26T05:40:16.4396850Z [2837/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2024-06-26T05:40:16.4424510Z [2838/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2024-06-26T05:40:16.5946890Z [2839/5905] Linking C static library lib/libfoxi_loader.a 2024-06-26T05:40:16.6392720Z [2840/5905] Building CXX object confu-deps/XNNPACK/CMakeFiles/convolution-test-helpers.dir/test/convolution-test-helpers.cc.o 2024-06-26T05:40:16.6833960Z [2841/5905] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/os.cc.o 2024-06-26T05:40:16.7421630Z [2842/5905] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/format.cc.o 2024-06-26T05:40:16.7825710Z [2843/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/libkineto_api.cpp.o 2024-06-26T05:40:16.7892470Z [2844/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/ThreadUtil.cpp.o 2024-06-26T05:40:16.7901010Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/src/ThreadUtil.cpp:56:24: 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] 2024-06-26T05:40:16.7907910Z _sysTid = (int32_t)syscall(SYS_thread_selfid); 2024-06-26T05:40:16.7908700Z ^ 2024-06-26T05:40:16.7910610Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/unistd.h:748:6: note: 'syscall' has been explicitly marked deprecated here 2024-06-26T05:40:16.7912430Z int syscall(int, ...); 2024-06-26T05:40:16.7913010Z ^ 2024-06-26T05:40:16.7913480Z 1 warning generated. 2024-06-26T05:40:16.9544360Z [2845/5905] Building CXX object c10/CMakeFiles/c10.dir/core/WrapDimMinimal.cpp.o 2024-06-26T05:40:16.9876040Z [2846/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/AbstractConfig.cpp.o 2024-06-26T05:40:16.9878180Z [2847/5905] Linking CXX static library lib/libfmt.a 2024-06-26T05:40:17.0070570Z [2848/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityType.cpp.o 2024-06-26T05:40:17.0085870Z [2849/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityProfiler.cpp.o 2024-06-26T05:40:17.0102090Z [2850/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerProxy.cpp.o 2024-06-26T05:40:17.0610540Z [2851/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerController.cpp.o 2024-06-26T05:40:17.0724660Z [2852/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Config.cpp.o 2024-06-26T05:40:17.0770760Z [2853/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DaemonConfigLoader.cpp.o 2024-06-26T05:40:17.2413510Z [2854/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/IpcFabricConfigClient.cpp.o 2024-06-26T05:40:17.2829290Z [2855/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityApi.cpp.o 2024-06-26T05:40:17.3039540Z [2856/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ConfigLoader.cpp.o 2024-06-26T05:40:17.3539230Z [2857/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Demangle.cpp.o 2024-06-26T05:40:17.3739650Z [2858/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DeviceUtil.cpp.o 2024-06-26T05:40:17.7570520Z [2859/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DeviceProperties.cpp.o 2024-06-26T05:40:17.7882080Z [2860/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/LoggingAPI.cpp.o 2024-06-26T05:40:17.7996520Z [2861/5905] Building CXX object c10/CMakeFiles/c10.dir/core/AutogradState.cpp.o 2024-06-26T05:40:17.8009340Z [2862/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/init.cpp.o 2024-06-26T05:40:17.8062950Z [2863/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ILoggerObserver.cpp.o 2024-06-26T05:40:17.8366050Z [2864/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/GenericTraceActivity.cpp.o 2024-06-26T05:40:17.8623820Z [2865/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_json.cpp.o 2024-06-26T05:40:17.8724950Z [2866/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_csv.cpp.o 2024-06-26T05:40:18.1438480Z [2867/5905] Building CXX object c10/CMakeFiles/c10.dir/core/Allocator.cpp.o 2024-06-26T05:40:18.1472740Z [2868/5905] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Logger.cpp.o 2024-06-26T05:40:18.4724630Z [2869/5905] Building CXX object c10/CMakeFiles/c10.dir/core/Device.cpp.o 2024-06-26T05:40:18.4743920Z [2870/5905] Building CXX object c10/CMakeFiles/c10.dir/core/DeviceType.cpp.o 2024-06-26T05:40:18.4918500Z [2871/5905] Building CXX object c10/CMakeFiles/c10.dir/core/DefaultDtype.cpp.o 2024-06-26T05:40:18.4929510Z [2872/5905] Building CXX object c10/CMakeFiles/c10.dir/core/ConstantSymNodeImpl.cpp.o 2024-06-26T05:40:18.4940740Z [2873/5905] Building CXX object c10/CMakeFiles/c10.dir/core/CopyBytes.cpp.o 2024-06-26T05:40:18.5140310Z [2874/5905] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKey.cpp.o 2024-06-26T05:40:18.5188500Z [2875/5905] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKeySet.cpp.o 2024-06-26T05:40:18.7664580Z [2876/5905] Building CXX object c10/CMakeFiles/c10.dir/core/GradMode.cpp.o 2024-06-26T05:40:18.7684310Z [2877/5905] Building CXX object c10/CMakeFiles/c10.dir/core/CPUAllocator.cpp.o 2024-06-26T05:40:18.8578380Z [2878/5905] Building CXX object c10/CMakeFiles/c10.dir/core/GeneratorImpl.cpp.o 2024-06-26T05:40:18.8638240Z [2879/5905] Linking CXX static library lib/libkineto.a 2024-06-26T05:40:19.0510000Z [2880/5905] Building CXX object c10/CMakeFiles/c10.dir/core/InferenceMode.cpp.o 2024-06-26T05:40:19.0785810Z [2881/5905] Building CXX object c10/CMakeFiles/c10.dir/core/SafePyObject.cpp.o 2024-06-26T05:40:19.0811080Z [2882/5905] Building CXX object c10/CMakeFiles/c10.dir/core/RefcountedDeleter.cpp.o 2024-06-26T05:40:19.0866270Z [2883/5905] Building CXX object c10/CMakeFiles/c10.dir/core/Stream.cpp.o 2024-06-26T05:40:19.1094430Z [2884/5905] Building CXX object c10/CMakeFiles/c10.dir/core/ScalarType.cpp.o 2024-06-26T05:40:19.1168650Z [2885/5905] Building CXX object c10/CMakeFiles/c10.dir/core/Storage.cpp.o 2024-06-26T05:40:19.1280440Z [2886/5905] Building CXX object c10/CMakeFiles/c10.dir/core/Scalar.cpp.o 2024-06-26T05:40:19.1537200Z [2887/5905] Building CXX object c10/CMakeFiles/c10.dir/core/StorageImpl.cpp.o 2024-06-26T05:40:19.1999870Z [2888/5905] Building CXX object c10/CMakeFiles/c10.dir/core/SymBool.cpp.o 2024-06-26T05:40:19.3658430Z [2889/5905] Building CXX object c10/CMakeFiles/c10.dir/core/SymFloat.cpp.o 2024-06-26T05:40:19.3951580Z [2890/5905] Building CXX object c10/CMakeFiles/c10.dir/core/SymInt.cpp.o 2024-06-26T05:40:19.4248310Z [2891/5905] Building CXX object c10/CMakeFiles/c10.dir/core/SymIntArrayRef.cpp.o 2024-06-26T05:40:19.4457330Z [2892/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2024-06-26T05:40:19.4576080Z [2893/5905] Building CXX object c10/CMakeFiles/c10.dir/core/SymNodeImpl.cpp.o 2024-06-26T05:40:19.4773820Z [2894/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2024-06-26T05:40:19.4909030Z [2895/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2024-06-26T05:40:19.5288040Z [2896/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gavgpool-config.c.o 2024-06-26T05:40:19.5471320Z [2897/5905] Building CXX object c10/CMakeFiles/c10.dir/core/SymbolicShapeMeta.cpp.o 2024-06-26T05:40:19.5506160Z [2898/5905] Building CXX object c10/CMakeFiles/c10.dir/core/TensorImpl.cpp.o 2024-06-26T05:40:19.5752040Z [2899/5905] Building CXX object c10/CMakeFiles/c10.dir/core/TensorOptions.cpp.o 2024-06-26T05:40:19.5761890Z [2900/5905] Building CXX object c10/CMakeFiles/c10.dir/core/UndefinedTensorImpl.cpp.o 2024-06-26T05:40:19.5983740Z [2901/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2024-06-26T05:40:19.6001530Z [2902/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2024-06-26T05:40:19.6009260Z [2903/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gavgpool-cw-config.c.o 2024-06-26T05:40:19.6284340Z [2904/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2024-06-26T05:40:19.6421430Z [2905/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2024-06-26T05:40:19.6636860Z [2906/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2024-06-26T05:40:19.7076740Z [2907/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2024-06-26T05:40:19.7313990Z [2908/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/prelu-config.c.o 2024-06-26T05:40:19.7432350Z [2909/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2024-06-26T05:40:19.7439980Z [2910/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2024-06-26T05:40:19.7446620Z [2911/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2024-06-26T05:40:19.7664320Z [2912/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2024-06-26T05:40:19.7927270Z [2913/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2024-06-26T05:40:19.7939070Z [2914/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2024-06-26T05:40:19.7952310Z [2915/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2024-06-26T05:40:19.8207490Z [2916/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2024-06-26T05:40:19.8273210Z [2917/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2024-06-26T05:40:19.8584310Z [2918/5905] Running gen_proto.py on onnx/onnx.in.proto 2024-06-26T05:40:19.8586130Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx.in.proto 2024-06-26T05:40:19.8588490Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2024-06-26T05:40:19.8590010Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto3 2024-06-26T05:40:19.8591230Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-ml.pb.h 2024-06-26T05:40:19.8592340Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_pb.py 2024-06-26T05:40:19.8597350Z [2919/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2024-06-26T05:40:19.8643840Z [2920/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2024-06-26T05:40:19.8875780Z [2921/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2024-06-26T05:40:19.8932590Z [2922/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2024-06-26T05:40:19.9222630Z [2923/5905] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2024-06-26T05:40:20.0456960Z [2924/5905] Building CXX object c10/CMakeFiles/c10.dir/core/impl/HermeticPyObjectTLS.cpp.o 2024-06-26T05:40:20.2051500Z [2925/5905] Building CXX object c10/CMakeFiles/c10.dir/core/impl/COWDeleter.cpp.o 2024-06-26T05:40:20.2087310Z [2926/5905] Building CXX object c10/CMakeFiles/c10.dir/core/impl/COW.cpp.o 2024-06-26T05:40:20.2227310Z [2927/5905] Building CXX object c10/CMakeFiles/c10.dir/core/impl/DeviceGuardImplInterface.cpp.o 2024-06-26T05:40:20.2409660Z [2928/5905] Building CXX object c10/CMakeFiles/c10.dir/core/impl/GPUTrace.cpp.o 2024-06-26T05:40:20.2465840Z [2929/5905] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyObjectSlot.cpp.o 2024-06-26T05:40:20.2701650Z [2930/5905] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PythonDispatcherTLS.cpp.o 2024-06-26T05:40:20.3025280Z [2931/5905] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2024-06-26T05:40:20.3128070Z [2932/5905] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyInterpreter.cpp.o 2024-06-26T05:40:20.3542840Z [2933/5905] Building CXX object c10/CMakeFiles/c10.dir/core/impl/LocalDispatchKeySet.cpp.o 2024-06-26T05:40:20.3796500Z [2934/5905] Running gen_proto.py on onnx/onnx-data.in.proto 2024-06-26T05:40:20.3869390Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx-data.in.proto 2024-06-26T05:40:20.3875300Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2024-06-26T05:40:20.3877430Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto3 2024-06-26T05:40:20.3882760Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data.pb.h 2024-06-26T05:40:20.3895950Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_data_pb.py 2024-06-26T05:40:20.3950680Z [2935/5905] Running gen_proto.py on onnx/onnx-operators.in.proto 2024-06-26T05:40:20.4004840Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx-operators.in.proto 2024-06-26T05:40:20.4006980Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2024-06-26T05:40:20.4008810Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto3 2024-06-26T05:40:20.4010370Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators-ml.pb.h 2024-06-26T05:40:20.4012700Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_operators_pb.py 2024-06-26T05:40:20.4792980Z [2936/5905] Building CXX object c10/CMakeFiles/c10.dir/core/impl/SizesAndStrides.cpp.o 2024-06-26T05:40:20.4994920Z [2937/5905] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2024-06-26T05:40:20.5098900Z [2938/5905] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2024-06-26T05:40:20.6003480Z [2939/5905] Building CXX object c10/CMakeFiles/c10.dir/core/impl/alloc_cpu.cpp.o 2024-06-26T05:40:20.6211290Z [2940/5905] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUCachingAllocator.cpp.o 2024-06-26T05:40:20.6231980Z [2941/5905] Building CXX object c10/CMakeFiles/c10.dir/core/impl/TorchDispatchModeTLS.cpp.o 2024-06-26T05:40:20.6575530Z [2942/5905] Building CXX object c10/CMakeFiles/c10.dir/util/ApproximateClock.cpp.o 2024-06-26T05:40:20.6688400Z [2943/5905] Building CXX object c10/CMakeFiles/c10.dir/core/thread_pool.cpp.o 2024-06-26T05:40:20.7041760Z [2944/5905] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUProfilingAllocator.cpp.o 2024-06-26T05:40:20.7262440Z [2945/5905] Building CXX object c10/CMakeFiles/c10.dir/util/Backtrace.cpp.o 2024-06-26T05:40:20.8258520Z [2946/5905] Building CXX object c10/CMakeFiles/c10.dir/util/Bfloat16.cpp.o 2024-06-26T05:40:20.8929870Z [2947/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/assertions.cc.o 2024-06-26T05:40:20.9293060Z [2948/5905] Building CXX object c10/CMakeFiles/c10.dir/util/C++17.cpp.o 2024-06-26T05:40:20.9741290Z [2949/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/interned_strings.cc.o 2024-06-26T05:40:21.0167790Z [2950/5905] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-operators_onnx_torch-ml.pb.cc.o 2024-06-26T05:40:21.0253260Z [2951/5905] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-data_onnx_torch.pb.cc.o 2024-06-26T05:40:21.0520150Z [2952/5905] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx_onnx_torch-ml.pb.cc.o 2024-06-26T05:40:21.0888430Z [2953/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/checker.cc.o 2024-06-26T05:40:21.1237590Z [2954/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/path.cc.o 2024-06-26T05:40:21.1573170Z [2955/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/ir_pb_converter.cc.o 2024-06-26T05:40:21.1971130Z [2956/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/status.cc.o 2024-06-26T05:40:21.2000490Z [2957/5905] Linking CXX static library lib/libonnx_proto.a 2024-06-26T05:40:21.2601560Z [2958/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/model_helpers.cc.o 2024-06-26T05:40:21.3310610Z [2959/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/attr_proto_util.cc.o 2024-06-26T05:40:21.3684450Z [2960/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/defs.cc.o 2024-06-26T05:40:21.4091800Z [2961/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/utils.cc.o 2024-06-26T05:40:21.4456630Z [2962/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/old.cc.o 2024-06-26T05:40:21.5521090Z [2963/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/data_type_utils.cc.o 2024-06-26T05:40:21.5838230Z [2964/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/function.cc.o 2024-06-26T05:40:21.6507170Z [2965/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/defs.cc.o 2024-06-26T05:40:21.6875450Z [2966/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/old.cc.o 2024-06-26T05:40:21.7102150Z [2967/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/image/defs.cc.o 2024-06-26T05:40:21.7349460Z [2968/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/defs.cc.o 2024-06-26T05:40:21.7594920Z [2969/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/old.cc.o 2024-06-26T05:40:21.7750460Z [2970/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/utils.cc.o 2024-06-26T05:40:21.9535620Z [2971/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/defs.cc.o 2024-06-26T05:40:21.9938410Z [2972/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/utils.cc.o 2024-06-26T05:40:22.0257640Z [2973/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/old.cc.o 2024-06-26T05:40:22.0426490Z [2974/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/defs.cc.o 2024-06-26T05:40:22.0644520Z [2975/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/old.cc.o 2024-06-26T05:40:22.0671990Z [2976/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/defs.cc.o 2024-06-26T05:40:22.1036550Z [2977/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/defs.cc.o 2024-06-26T05:40:22.1178930Z [2978/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/old.cc.o 2024-06-26T05:40:22.1998800Z [2979/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/parser.cc.o 2024-06-26T05:40:22.2279870Z [2980/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/old.cc.o 2024-06-26T05:40:22.4080870Z [2981/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/printer.cc.o 2024-06-26T05:40:22.4374920Z [2982/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/defs.cc.o 2024-06-26T05:40:22.4537230Z [2983/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/old.cc.o 2024-06-26T05:40:22.4732780Z [2984/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/defs.cc.o 2024-06-26T05:40:22.4904230Z [2985/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/old.cc.o 2024-06-26T05:40:22.5063480Z [2986/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/old.cc.o 2024-06-26T05:40:22.5141990Z [2987/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/defs.cc.o 2024-06-26T05:40:22.5458510Z [2988/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/utils.cc.o 2024-06-26T05:40:22.7595470Z [2989/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/sequence/defs.cc.o 2024-06-26T05:40:22.7896150Z [2990/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/schema.cc.o 2024-06-26T05:40:22.8521260Z [2991/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/shape_inference.cc.o 2024-06-26T05:40:22.9022780Z [2992/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/old.cc.o 2024-06-26T05:40:22.9202820Z [2993/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/utils.cc.o 2024-06-26T05:40:22.9330840Z [2994/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_proto_util.cc.o 2024-06-26T05:40:22.9616120Z [2995/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/defs.cc.o 2024-06-26T05:40:22.9644530Z [2996/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/text/defs.cc.o 2024-06-26T05:40:23.0633260Z [2997/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_util.cc.o 2024-06-26T05:40:23.1093100Z [2998/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/defs.cc.o 2024-06-26T05:40:23.1552470Z [2999/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/old.cc.o 2024-06-26T05:40:23.2293780Z [3000/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/training/defs.cc.o 2024-06-26T05:40:23.3054740Z [3001/5905] Building CXX object c10/CMakeFiles/c10.dir/util/DeadlockDetection.cpp.o 2024-06-26T05:40:23.3339750Z [3002/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/helper.cc.o 2024-06-26T05:40:23.3369700Z [3003/5905] Building CXX object c10/CMakeFiles/c10.dir/util/Exception.cpp.o 2024-06-26T05:40:23.3461030Z [3004/5905] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e4m3fn.cpp.o 2024-06-26T05:40:23.3753250Z [3005/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/convert.cc.o 2024-06-26T05:40:23.3775580Z [3006/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/inliner/inliner.cc.o 2024-06-26T05:40:23.4065840Z [3007/5905] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e4m3fnuz.cpp.o 2024-06-26T05:40:23.4340560Z [3008/5905] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/shape_inference/implementation.cc.o 2024-06-26T05:40:23.5377360Z [3009/5905] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e5m2.cpp.o 2024-06-26T05:40:23.5404610Z [3010/5905] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e5m2fnuz.cpp.o 2024-06-26T05:40:23.6010610Z [3011/5905] Building CXX object c10/CMakeFiles/c10.dir/util/ParallelGuard.cpp.o 2024-06-26T05:40:23.6043000Z [3012/5905] Building CXX object c10/CMakeFiles/c10.dir/util/Optional.cpp.o 2024-06-26T05:40:23.6575360Z [3013/5905] Building CXX object c10/CMakeFiles/c10.dir/util/Half.cpp.o 2024-06-26T05:40:23.7170480Z [3014/5905] Building CXX object c10/CMakeFiles/c10.dir/util/Logging.cpp.o 2024-06-26T05:40:23.7224150Z [3015/5905] Building CXX object c10/CMakeFiles/c10.dir/util/MathConstants.cpp.o 2024-06-26T05:40:23.7549460Z [3016/5905] Building CXX object c10/CMakeFiles/c10.dir/util/Metaprogramming.cpp.o 2024-06-26T05:40:23.7895050Z [3017/5905] Building CXX object c10/CMakeFiles/c10.dir/util/LeftRight.cpp.o 2024-06-26T05:40:23.8597210Z [3018/5905] Building CXX object c10/CMakeFiles/c10.dir/util/StringUtil.cpp.o 2024-06-26T05:40:23.8610440Z [3019/5905] Building CXX object c10/CMakeFiles/c10.dir/util/SmallVector.cpp.o 2024-06-26T05:40:23.9296840Z [3020/5905] Building CXX object c10/CMakeFiles/c10.dir/util/Unicode.cpp.o 2024-06-26T05:40:23.9331500Z [3021/5905] Linking CXX static library lib/libonnx.a 2024-06-26T05:40:23.9416590Z [3022/5905] Building CXX object c10/CMakeFiles/c10.dir/util/TypeCast.cpp.o 2024-06-26T05:40:23.9631170Z [3023/5905] Building CXX object c10/CMakeFiles/c10.dir/util/ThreadLocalDebugInfo.cpp.o 2024-06-26T05:40:23.9643570Z [3024/5905] Building CXX object c10/CMakeFiles/c10.dir/util/Type_no_demangle.cpp.o 2024-06-26T05:40:24.0199100Z [3025/5905] Building CXX object c10/CMakeFiles/c10.dir/util/TypeList.cpp.o 2024-06-26T05:40:24.0556900Z [3026/5905] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_gflags.cpp.o 2024-06-26T05:40:24.0772310Z [3027/5905] Building CXX object c10/CMakeFiles/c10.dir/util/UniqueVoidPtr.cpp.o 2024-06-26T05:40:24.1701440Z [3028/5905] Building CXX object c10/CMakeFiles/c10.dir/util/TypeTraits.cpp.o 2024-06-26T05:40:24.2007910Z [3029/5905] Building CXX object c10/CMakeFiles/c10.dir/util/Type_demangle.cpp.o 2024-06-26T05:40:24.2097410Z [3030/5905] Building CXX object c10/CMakeFiles/c10.dir/util/complex_math.cpp.o 2024-06-26T05:40:24.3206170Z [3031/5905] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_no_gflags.cpp.o 2024-06-26T05:40:24.3319950Z [3032/5905] Building CXX object c10/CMakeFiles/c10.dir/util/int128.cpp.o 2024-06-26T05:40:24.3336330Z [3033/5905] Building CXX object c10/CMakeFiles/c10.dir/util/numa.cpp.o 2024-06-26T05:40:24.3348610Z [3034/5905] Building CXX object c10/CMakeFiles/c10.dir/util/thread_name.cpp.o 2024-06-26T05:40:24.3631360Z [3035/5905] Building CXX object c10/CMakeFiles/c10.dir/util/intrusive_ptr.cpp.o 2024-06-26T05:40:24.4021190Z [3036/5905] Building CXX object c10/CMakeFiles/c10.dir/util/signal_handler.cpp.o 2024-06-26T05:40:24.4657700Z [3037/5905] Building CXX object c10/CMakeFiles/c10.dir/util/tempfile.cpp.o 2024-06-26T05:40:24.5311920Z [3038/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/gen/neon-aarch64.c.o 2024-06-26T05:40:24.5462960Z [3039/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/gen/neonfma.c.o 2024-06-26T05:40:24.5538000Z [3040/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/gen/scalar.c.o 2024-06-26T05:40:24.5591740Z [3041/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/gen/neonfp16.c.o 2024-06-26T05:40:24.5700120Z [3042/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/gen/neonv8.c.o 2024-06-26T05:40:24.6154400Z [3043/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/gen/neonfma-aarch64.c.o 2024-06-26T05:40:24.6256330Z [3044/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/gen/neon.c.o 2024-06-26T05:40:24.6607310Z [3045/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/gen/neonfp16arith-aarch64.c.o 2024-06-26T05:40:24.6625450Z [3046/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:24.7091400Z [3047/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/gen/neonfp16arith.c.o 2024-06-26T05:40:24.7112820Z [3048/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:24.7128790Z [3049/5905] Building CXX object c10/CMakeFiles/c10.dir/util/typeid.cpp.o 2024-06-26T05:40:24.7193010Z [3050/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/gen/neondot-aarch64.c.o 2024-06-26T05:40:24.7365490Z [3051/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:24.7441790Z [3052/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/gen/neondotfp16arith.c.o 2024-06-26T05:40:24.7538180Z [3053/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:24.7541030Z [3054/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/gen/neondotfp16-aarch64.c.o 2024-06-26T05:40:24.7556130Z [3055/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-4x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:24.7797140Z [3056/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/gen/neondot.c.o 2024-06-26T05:40:24.8303490Z [3057/5905] 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 2024-06-26T05:40:24.8406700Z [3058/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:24.8408880Z [3059/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:24.8694510Z [3060/5905] 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 2024-06-26T05:40:24.8774600Z [3061/5905] 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 2024-06-26T05:40:24.8819340Z [3062/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:24.8934140Z [3063/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-8x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:24.8937260Z [3064/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:24.9061820Z [3065/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemminc-1x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:24.9548430Z [3066/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemminc-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:24.9595820Z [3067/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemminc-4x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:24.9603800Z [3068/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemminc-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:24.9887900Z [3069/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemminc-6x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:24.9901660Z [3070/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S.o 2024-06-26T05:40:25.0012530Z [3071/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S.o 2024-06-26T05:40:25.0097710Z [3072/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemminc-8x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:25.0100500Z [3073/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:25.0136160Z [3074/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:25.0710400Z [3075/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:25.0757490Z [3076/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:25.0897160Z [3077/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:25.1093750Z [3078/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S.o 2024-06-26T05:40:25.1113010Z [3079/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S.o 2024-06-26T05:40:25.1329470Z [3080/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2024-06-26T05:40:25.1354600Z [3081/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55r0.S.o 2024-06-26T05:40:25.1362360Z [3082/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2024-06-26T05:40:25.1406620Z [3083/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2024-06-26T05:40:25.1634570Z [3084/5905] Linking CXX shared library lib/libc10.dylib 2024-06-26T05:40:25.2167900Z [3085/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2-prfm.S.o 2024-06-26T05:40:25.2200170Z [3086/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2.S.o 2024-06-26T05:40:25.2242500Z [3087/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma.S.o 2024-06-26T05:40:25.2263860Z [3088/5905] 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 2024-06-26T05:40:25.2313380Z [3089/5905] 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 2024-06-26T05:40:25.2570290Z [3090/5905] 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 2024-06-26T05:40:25.2602410Z [3091/5905] 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 2024-06-26T05:40:25.2629690Z [3092/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2.S.o 2024-06-26T05:40:25.2702850Z [3093/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2-prfm.S.o 2024-06-26T05:40:25.2857930Z [3094/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4-prfm.S.o 2024-06-26T05:40:25.3470250Z [3095/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S.o 2024-06-26T05:40:25.3501900Z [3096/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4.S.o 2024-06-26T05:40:25.3504110Z [3097/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2-prfm.S.o 2024-06-26T05:40:25.3605930Z [3098/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:25.3616840Z [3099/5905] 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 2024-06-26T05:40:25.3781840Z [3100/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4-prfm.S.o 2024-06-26T05:40:25.3814610Z [3101/5905] 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 2024-06-26T05:40:25.3818910Z [3102/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2024-06-26T05:40:25.3900170Z [3103/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:25.4468160Z [3104/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:25.4720730Z [3105/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x1-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:25.4745540Z [3106/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x1-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:25.4754150Z [3107/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2024-06-26T05:40:25.4817870Z [3108/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2024-06-26T05:40:25.4842480Z [3109/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:25.4881330Z [3110/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:25.5025040Z [3111/5905] 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 2024-06-26T05:40:25.5034150Z [3112/5905] 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 2024-06-26T05:40:25.5050950Z [3113/5905] 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 2024-06-26T05:40:25.5864470Z [3114/5905] 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 2024-06-26T05:40:25.6011050Z [3115/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:25.6120820Z [3116/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:25.6136500Z [3117/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:25.6165360Z [3118/5905] 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 2024-06-26T05:40:25.6216470Z [3119/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2024-06-26T05:40:25.6218570Z [3120/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2024-06-26T05:40:25.6377200Z [3121/5905] 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 2024-06-26T05:40:25.6420480Z [3122/5905] 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 2024-06-26T05:40:25.6432720Z [3123/5905] 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 2024-06-26T05:40:25.7347490Z [3124/5905] 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 2024-06-26T05:40:25.7435240Z [3125/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-goi-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:25.7444270Z [3126/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:25.7481740Z [3127/5905] 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 2024-06-26T05:40:25.7495920Z [3128/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:25.7512790Z [3129/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-goi-1x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2024-06-26T05:40:25.7545260Z [3130/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2024-06-26T05:40:25.7547480Z [3131/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:25.7594140Z [3132/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-goi-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:25.7626870Z [3133/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2024-06-26T05:40:25.8676810Z [3134/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:25.8701880Z [3135/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-1x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:25.8738460Z [3136/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2024-06-26T05:40:25.8745430Z [3137/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:25.8754850Z [3138/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2024-06-26T05:40:25.8770560Z [3139/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2024-06-26T05:40:25.8783580Z [3140/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:25.8801820Z [3141/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:25.8832610Z [3142/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2024-06-26T05:40:25.8913260Z [3143/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-4x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:26.0077960Z [3144/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:26.0085950Z [3145/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2024-06-26T05:40:26.0091820Z [3146/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:26.0104800Z [3147/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a73.S.o 2024-06-26T05:40:26.0110820Z [3148/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2024-06-26T05:40:26.0113000Z [3149/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2024-06-26T05:40:26.0127240Z [3150/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2024-06-26T05:40:26.0139620Z [3151/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:26.0149760Z [3152/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2024-06-26T05:40:26.0159420Z [3153/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-1x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:26.1397670Z [3154/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2024-06-26T05:40:26.1406000Z [3155/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a73.S.o 2024-06-26T05:40:26.1413210Z [3156/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2024-06-26T05:40:26.1416260Z [3157/5905] 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 2024-06-26T05:40:26.1420620Z [3158/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:26.1432380Z [3159/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-4x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2024-06-26T05:40:26.1439120Z [3160/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S.o 2024-06-26T05:40:26.1451520Z [3161/5905] 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 2024-06-26T05:40:26.1461940Z [3162/5905] 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 2024-06-26T05:40:26.1488210Z [3163/5905] 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 2024-06-26T05:40:26.2653670Z [3164/5905] 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 2024-06-26T05:40:26.2728980Z [3165/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2024-06-26T05:40:26.2731230Z [3166/5905] 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 2024-06-26T05:40:26.2759180Z [3167/5905] 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 2024-06-26T05:40:26.2763730Z [3168/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2024-06-26T05:40:26.2770830Z [3169/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:26.2781490Z [3170/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2024-06-26T05:40:26.2805040Z [3171/5905] 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 2024-06-26T05:40:26.2929170Z [3172/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2024-06-26T05:40:26.3282480Z [3173/5905] 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 2024-06-26T05:40:26.4018250Z [3174/5905] 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 2024-06-26T05:40:26.4043650Z [3175/5905] 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 2024-06-26T05:40:26.4062100Z [3176/5905] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2024-06-26T05:40:26.4136460Z [3177/5905] 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 2024-06-26T05:40:26.4750540Z [3178/5905] 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 2024-06-26T05:40:26.4781830Z [3179/5905] 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 2024-06-26T05:40:26.4982800Z [3180/5905] 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 2024-06-26T05:40:26.5080320Z [3181/5905] 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 2024-06-26T05:40:26.5192110Z [3182/5905] 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 2024-06-26T05:40:26.5359810Z [3183/5905] 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 2024-06-26T05:40:26.5951570Z [3184/5905] 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 2024-06-26T05:40:26.6320210Z [3185/5905] 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 2024-06-26T05:40:26.6446310Z [3186/5905] 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 2024-06-26T05:40:26.6582780Z [3187/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2s4-minmax-fp32-neon-mlal.c.o 2024-06-26T05:40:26.6675460Z [3188/5905] 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 2024-06-26T05:40:26.6890670Z [3189/5905] 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 2024-06-26T05:40:26.6899750Z [3190/5905] 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 2024-06-26T05:40:26.7110130Z [3191/5905] 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 2024-06-26T05:40:26.7362680Z [3192/5905] 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 2024-06-26T05:40:26.7657140Z [3193/5905] 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 2024-06-26T05:40:26.8042290Z [3194/5905] Linking CXX static library lib/libXNNPACK.a 2024-06-26T05:40:26.8314570Z [3195/5905] 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 2024-06-26T05:40:26.8445040Z [3196/5905] 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 2024-06-26T05:40:26.8732830Z [3197/5905] 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 2024-06-26T05:40:26.8799240Z [3198/5905] 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 2024-06-26T05:40:26.8807170Z [3199/5905] 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 2024-06-26T05:40:26.8918030Z [3200/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2s4-minmax-fp32-neon-mlal.c.o 2024-06-26T05:40:26.9032590Z [3201/5905] 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 2024-06-26T05:40:26.9068370Z [3202/5905] 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 2024-06-26T05:40:26.9552220Z [3203/5905] 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 2024-06-26T05:40:27.0095460Z [3204/5905] 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 2024-06-26T05:40:27.0360810Z [3205/5905] 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 2024-06-26T05:40:27.0369120Z [3206/5905] 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 2024-06-26T05:40:27.0524430Z [3207/5905] 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 2024-06-26T05:40:27.0790100Z [3208/5905] 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 2024-06-26T05:40:27.0811100Z [3209/5905] 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 2024-06-26T05:40:27.0837070Z [3210/5905] 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 2024-06-26T05:40:27.1111500Z [3211/5905] 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 2024-06-26T05:40:27.1115530Z [3212/5905] 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 2024-06-26T05:40:27.1402510Z [3213/5905] 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 2024-06-26T05:40:27.2041120Z [3214/5905] 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 2024-06-26T05:40:27.2114030Z [3215/5905] 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 2024-06-26T05:40:27.2226010Z [3216/5905] 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 2024-06-26T05:40:27.2584250Z [3217/5905] 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 2024-06-26T05:40:27.2751360Z [3218/5905] 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 2024-06-26T05:40:27.2754660Z [3219/5905] 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 2024-06-26T05:40:27.2758750Z [3220/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-fp32-neon.c.o 2024-06-26T05:40:27.3047770Z [3221/5905] 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 2024-06-26T05:40:27.3106990Z [3222/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-neon.c.o 2024-06-26T05:40:27.3341460Z [3223/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-gemmlowp-neon.c.o 2024-06-26T05:40:27.3812750Z [3224/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndnu-neon-qdmulh.c.o 2024-06-26T05:40:27.3831010Z [3225/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndnu-neon-mull.c.o 2024-06-26T05:40:27.3931310Z [3226/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u8.c.o 2024-06-26T05:40:27.4232610Z [3227/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u16.c.o 2024-06-26T05:40:27.4715840Z [3228/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld128-u16.c.o 2024-06-26T05:40:27.4792230Z [3229/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u16.c.o 2024-06-26T05:40:27.4902790Z [3230/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u32.c.o 2024-06-26T05:40:27.4914380Z [3231/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld128-u32.c.o 2024-06-26T05:40:27.5068120Z [3232/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u8.c.o 2024-06-26T05:40:27.5493620Z [3233/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u32.c.o 2024-06-26T05:40:27.5559630Z [3234/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u24.c.o 2024-06-26T05:40:27.5605030Z [3235/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u24.c.o 2024-06-26T05:40:27.5715790Z [3236/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld128-u16.c.o 2024-06-26T05:40:27.6084300Z [3237/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld128-u32.c.o 2024-06-26T05:40:27.6256550Z [3238/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u8.c.o 2024-06-26T05:40:27.6334880Z [3239/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u16.c.o 2024-06-26T05:40:27.6455190Z [3240/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u32.c.o 2024-06-26T05:40:27.6616300Z [3241/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vhswish/gen/qs8-vhswish-neon-u16.c.o 2024-06-26T05:40:27.6665770Z [3242/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vhswish/gen/qs8-vhswish-neon-u8.c.o 2024-06-26T05:40:27.7544810Z [3243/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u8.c.o 2024-06-26T05:40:27.7594300Z [3244/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u32.c.o 2024-06-26T05:40:27.7614360Z [3245/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vhswish/gen/qs8-vhswish-neon-u32.c.o 2024-06-26T05:40:27.7660310Z [3246/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u16.c.o 2024-06-26T05:40:27.7881590Z [3247/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld64-u8.c.o 2024-06-26T05:40:27.7916800Z [3248/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld64-u16.c.o 2024-06-26T05:40:27.8055780Z [3249/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u8.c.o 2024-06-26T05:40:27.8301910Z [3250/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2024-06-26T05:40:27.8315220Z [3251/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld128-u16.c.o 2024-06-26T05:40:27.8562500Z [3252/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld128-u16.c.o 2024-06-26T05:40:27.9381980Z [3253/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld64-u16.c.o 2024-06-26T05:40:27.9517200Z [3254/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld64-u8.c.o 2024-06-26T05:40:27.9588700Z [3255/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2024-06-26T05:40:27.9702550Z [3256/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld128-u16.c.o 2024-06-26T05:40:27.9768420Z [3257/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-filterbank-accumulate/gen/u32-filterbank-accumulate-neon-x1.c.o 2024-06-26T05:40:27.9878830Z [3258/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld128-u16.c.o 2024-06-26T05:40:27.9981120Z [3259/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u8.c.o 2024-06-26T05:40:28.0356260Z [3260/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:28.0637040Z [3261/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:28.0692940Z [3262/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:28.1120250Z [3263/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-rndnu-neon-mul8-ld64.c.o 2024-06-26T05:40:28.1339870Z [3264/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:28.1573060Z [3265/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mla8-ld128.c.o 2024-06-26T05:40:28.1576770Z [3266/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:28.1621710Z [3267/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-rndnu-neon-mla8-ld64.c.o 2024-06-26T05:40:28.1913420Z [3268/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mul8-ld64.c.o 2024-06-26T05:40:28.2155750Z [3269/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mla8-ld64.c.o 2024-06-26T05:40:28.2613570Z [3270/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mul8-ld128.c.o 2024-06-26T05:40:28.2691730Z [3271/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:28.2716170Z [3272/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:28.2865340Z [3273/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:28.3096070Z [3274/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:28.3368970Z [3275/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mul8-ld64.c.o 2024-06-26T05:40:28.3619130Z [3276/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:28.3624650Z [3277/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:28.3635910Z [3278/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mla8-ld64.c.o 2024-06-26T05:40:28.4399330Z [3279/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mla8-ld128.c.o 2024-06-26T05:40:28.4595600Z [3280/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mla8-ld64.c.o 2024-06-26T05:40:28.4599340Z [3281/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mul8-ld64.c.o 2024-06-26T05:40:28.4633570Z [3282/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mul8-ld128.c.o 2024-06-26T05:40:28.4686970Z [3283/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:28.4928180Z [3284/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:28.5370730Z [3285/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:28.5613400Z [3286/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u16.c.o 2024-06-26T05:40:28.5738340Z [3287/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u8.c.o 2024-06-26T05:40:28.6015180Z [3288/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-neon-c16.c.o 2024-06-26T05:40:28.6148770Z [3289/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u24.c.o 2024-06-26T05:40:28.6307260Z [3290/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-neon-c32.c.o 2024-06-26T05:40:28.6314280Z [3291/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-rndnu-neon-c8.c.o 2024-06-26T05:40:28.6329730Z [3292/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-neon-c24.c.o 2024-06-26T05:40:28.6624440Z [3293/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-neon-c8.c.o 2024-06-26T05:40:28.6630090Z [3294/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u32.c.o 2024-06-26T05:40:28.6910290Z [3295/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-rndnu-neon-c16.c.o 2024-06-26T05:40:28.7168610Z [3296/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-rndnu-neon-c24.c.o 2024-06-26T05:40:28.7491750Z [3297/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-rndnu-neon-c32.c.o 2024-06-26T05:40:28.7850470Z [3298/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-neon-c16.c.o 2024-06-26T05:40:28.8002250Z [3299/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-neon-c8.c.o 2024-06-26T05:40:28.8150910Z [3300/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-neon-c32.c.o 2024-06-26T05:40:28.8194880Z [3301/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-rndnu-neon-c24.c.o 2024-06-26T05:40:28.8298710Z [3302/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-rndnu-neon-c8.c.o 2024-06-26T05:40:28.8525140Z [3303/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-rndnu-neon-c16.c.o 2024-06-26T05:40:28.8636920Z [3304/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-neon-c24.c.o 2024-06-26T05:40:28.8850140Z [3305/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-rndnu-neon-c32.c.o 2024-06-26T05:40:28.9734600Z [3306/5905] 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 2024-06-26T05:40:28.9803830Z [3307/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-neon-mla8-ld128.c.o 2024-06-26T05:40:28.9944710Z [3308/5905] 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 2024-06-26T05:40:28.9952780Z [3309/5905] 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 2024-06-26T05:40:28.9973550Z [3310/5905] 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 2024-06-26T05:40:29.0185390Z [3311/5905] 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 2024-06-26T05:40:29.0206720Z [3312/5905] 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 2024-06-26T05:40:29.0372610Z [3313/5905] 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 2024-06-26T05:40:29.0589650Z [3314/5905] 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 2024-06-26T05:40:29.1018100Z [3315/5905] 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 2024-06-26T05:40:29.1634060Z [3316/5905] 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 2024-06-26T05:40:29.1808630Z [3317/5905] 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 2024-06-26T05:40:29.1858240Z [3318/5905] 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 2024-06-26T05:40:29.1928130Z [3319/5905] 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 2024-06-26T05:40:29.1939870Z [3320/5905] 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 2024-06-26T05:40:29.2078770Z [3321/5905] 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 2024-06-26T05:40:29.2262090Z [3322/5905] 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 2024-06-26T05:40:29.2748120Z [3323/5905] 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 2024-06-26T05:40:29.3139850Z [3324/5905] 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 2024-06-26T05:40:29.3353120Z [3325/5905] 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 2024-06-26T05:40:29.3423770Z [3326/5905] 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 2024-06-26T05:40:29.3428470Z [3327/5905] 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 2024-06-26T05:40:29.3640750Z [3328/5905] 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 2024-06-26T05:40:29.3737640Z [3329/5905] 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 2024-06-26T05:40:29.3965180Z [3330/5905] 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 2024-06-26T05:40:29.3969090Z [3331/5905] 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 2024-06-26T05:40:29.4027050Z [3332/5905] 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 2024-06-26T05:40:29.4382670Z [3333/5905] 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 2024-06-26T05:40:29.4886930Z [3334/5905] 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 2024-06-26T05:40:29.5101810Z [3335/5905] 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 2024-06-26T05:40:29.5125970Z [3336/5905] 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 2024-06-26T05:40:29.5396710Z [3337/5905] 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 2024-06-26T05:40:29.5592740Z [3338/5905] 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 2024-06-26T05:40:29.5694490Z [3339/5905] 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 2024-06-26T05:40:29.5945350Z [3340/5905] 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 2024-06-26T05:40:29.6065000Z [3341/5905] 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 2024-06-26T05:40:29.6386610Z [3342/5905] 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 2024-06-26T05:40:29.6606540Z [3343/5905] 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 2024-06-26T05:40:29.6700950Z [3344/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mla8-ld64.c.o 2024-06-26T05:40:29.6824740Z [3345/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neon-mla8-ld64.c.o 2024-06-26T05:40:29.7041430Z [3346/5905] 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 2024-06-26T05:40:29.7111860Z [3347/5905] 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 2024-06-26T05:40:29.7433040Z [3348/5905] 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 2024-06-26T05:40:29.7606420Z [3349/5905] 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 2024-06-26T05:40:29.7993520Z [3350/5905] 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 2024-06-26T05:40:29.8244420Z [3351/5905] 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 2024-06-26T05:40:29.8476620Z [3352/5905] 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 2024-06-26T05:40:29.8556880Z [3353/5905] 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 2024-06-26T05:40:29.8785140Z [3354/5905] 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 2024-06-26T05:40:29.8801090Z [3355/5905] 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 2024-06-26T05:40:29.8897130Z [3356/5905] 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 2024-06-26T05:40:29.9391160Z [3357/5905] 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 2024-06-26T05:40:29.9410960Z [3358/5905] 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 2024-06-26T05:40:29.9412910Z [3359/5905] 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 2024-06-26T05:40:29.9778970Z [3360/5905] 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 2024-06-26T05:40:30.0260460Z [3361/5905] 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 2024-06-26T05:40:30.0266510Z [3362/5905] 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 2024-06-26T05:40:30.0307380Z [3363/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2s4-minmax-fp32-neon-mlal.c.o 2024-06-26T05:40:30.0719000Z [3364/5905] 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 2024-06-26T05:40:30.0946520Z [3365/5905] 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 2024-06-26T05:40:30.1214460Z [3366/5905] 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 2024-06-26T05:40:30.1415850Z [3367/5905] 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 2024-06-26T05:40:30.1559820Z [3368/5905] 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 2024-06-26T05:40:30.1690700Z [3369/5905] 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 2024-06-26T05:40:30.1791170Z [3370/5905] 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 2024-06-26T05:40:30.2025880Z [3371/5905] 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 2024-06-26T05:40:30.2605870Z [3372/5905] 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 2024-06-26T05:40:30.2811290Z [3373/5905] 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 2024-06-26T05:40:30.3093240Z [3374/5905] 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 2024-06-26T05:40:30.3250770Z [3375/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2s4-minmax-fp32-neon-mlal.c.o 2024-06-26T05:40:30.3254660Z [3376/5905] 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 2024-06-26T05:40:30.3347920Z [3377/5905] 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 2024-06-26T05:40:30.3616340Z [3378/5905] 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 2024-06-26T05:40:30.3879220Z [3379/5905] 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 2024-06-26T05:40:30.3983270Z [3380/5905] 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 2024-06-26T05:40:30.4053710Z [3381/5905] 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 2024-06-26T05:40:30.4315290Z [3382/5905] 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 2024-06-26T05:40:30.4694630Z [3383/5905] 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 2024-06-26T05:40:30.4981990Z [3384/5905] 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 2024-06-26T05:40:30.5038020Z [3385/5905] 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 2024-06-26T05:40:30.5314770Z [3386/5905] 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 2024-06-26T05:40:30.5654070Z [3387/5905] 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 2024-06-26T05:40:30.5761520Z [3388/5905] 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 2024-06-26T05:40:30.5872460Z [3389/5905] 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 2024-06-26T05:40:30.5912690Z [3390/5905] 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 2024-06-26T05:40:30.5917900Z [3391/5905] 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 2024-06-26T05:40:30.6151160Z [3392/5905] 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 2024-06-26T05:40:30.6356840Z [3393/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u8.c.o 2024-06-26T05:40:30.6660240Z [3394/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u16.c.o 2024-06-26T05:40:30.6983170Z [3395/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld128-u16.c.o 2024-06-26T05:40:30.7320340Z [3396/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u8.c.o 2024-06-26T05:40:30.7521790Z [3397/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u32.c.o 2024-06-26T05:40:30.7541230Z [3398/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u16.c.o 2024-06-26T05:40:30.7600870Z [3399/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vhswish/gen/qu8-vhswish-neon-u8.c.o 2024-06-26T05:40:30.7604280Z [3400/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u32.c.o 2024-06-26T05:40:30.8008110Z [3401/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u8.c.o 2024-06-26T05:40:30.8100820Z [3402/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vhswish/gen/qu8-vhswish-neon-u32.c.o 2024-06-26T05:40:30.8241950Z [3403/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vhswish/gen/qu8-vhswish-neon-u16.c.o 2024-06-26T05:40:30.8606380Z [3404/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u32.c.o 2024-06-26T05:40:30.8762330Z [3405/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u16.c.o 2024-06-26T05:40:30.8927620Z [3406/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld64-u8.c.o 2024-06-26T05:40:30.9151370Z [3407/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2024-06-26T05:40:30.9211600Z [3408/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld128-u16.c.o 2024-06-26T05:40:30.9245130Z [3409/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld64-u16.c.o 2024-06-26T05:40:30.9435450Z [3410/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u8.c.o 2024-06-26T05:40:30.9689690Z [3411/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld128-u16.c.o 2024-06-26T05:40:31.0044680Z [3412/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld64-u16.c.o 2024-06-26T05:40:31.0070520Z [3413/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld64-u8.c.o 2024-06-26T05:40:31.0327360Z [3414/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld128-u16.c.o 2024-06-26T05:40:31.0662330Z [3415/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u8.c.o 2024-06-26T05:40:31.0796000Z [3416/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2024-06-26T05:40:31.0976790Z [3417/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c8.c.o 2024-06-26T05:40:31.0988380Z [3418/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-2p2x-minmax-neon-c16.c.o 2024-06-26T05:40:31.1236780Z [3419/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld128-u16.c.o 2024-06-26T05:40:31.1260680Z [3420/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c16.c.o 2024-06-26T05:40:31.1313990Z [3421/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-4p3x-minmax-neon-c16.c.o 2024-06-26T05:40:31.1688340Z [3422/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-neon-c16.c.o 2024-06-26T05:40:31.1766220Z [3423/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-neon-x8.c.o 2024-06-26T05:40:31.1904540Z [3424/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-vclamp/s8-vclamp-neon-u64.c.o 2024-06-26T05:40:31.2223670Z [3425/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-neon-x16.c.o 2024-06-26T05:40:31.2571670Z [3426/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-neon-u8.c.o 2024-06-26T05:40:31.2770000Z [3427/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-neon-u16.c.o 2024-06-26T05:40:31.3178060Z [3428/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-neon-u24.c.o 2024-06-26T05:40:31.3241470Z [3429/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-neon-u32.c.o 2024-06-26T05:40:31.3248790Z [3430/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-neon-x32.c.o 2024-06-26T05:40:31.3336840Z [3431/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-shift12-neon-u8.c.o 2024-06-26T05:40:31.3458090Z [3432/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-shift12-neon-u16.c.o 2024-06-26T05:40:31.3589430Z [3433/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-shift12-neon-u32.c.o 2024-06-26T05:40:31.3602550Z [3434/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-shift12-neon-u24.c.o 2024-06-26T05:40:31.4432270Z [3435/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-neon-x24.c.o 2024-06-26T05:40:31.4476390Z [3436/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-shift15-neon-u16.c.o 2024-06-26T05:40:31.4665480Z [3437/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-shift15-neon-u32.c.o 2024-06-26T05:40:31.4789510Z [3438/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-shift15-neon-u8.c.o 2024-06-26T05:40:31.4862580Z [3439/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-shift15-neon-u24.c.o 2024-06-26T05:40:31.5075180Z [3440/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-neon-c16.c.o 2024-06-26T05:40:31.5088550Z [3441/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c8.c.o 2024-06-26T05:40:31.5132730Z [3442/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-rmax/u8-rmax-neon-u16.c.o 2024-06-26T05:40:31.5167240Z [3443/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c16.c.o 2024-06-26T05:40:31.5840760Z [3444/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-vclamp/u8-vclamp-neon-u64.c.o 2024-06-26T05:40:31.6064870Z [3445/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs16-qs8-vcvt/gen/qs16-qs8-vcvt-neon-u8.c.o 2024-06-26T05:40:31.6177880Z [3446/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs16-qs8-vcvt/gen/qs16-qs8-vcvt-neon-u16.c.o 2024-06-26T05:40:31.6280300Z [3447/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-dec-zip-neon.c.o 2024-06-26T05:40:31.6317030Z [3448/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-neon-c8.c.o 2024-06-26T05:40:31.6356850Z [3449/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs16-qs8-vcvt/gen/qs16-qs8-vcvt-neon-u32.c.o 2024-06-26T05:40:31.6790310Z [3450/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-neon-c8.c.o 2024-06-26T05:40:31.6831660Z [3451/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:31.7080480Z [3452/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:31.7203440Z [3453/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul8.c.o 2024-06-26T05:40:31.7894640Z [3454/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:31.8061330Z [3455/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul8.c.o 2024-06-26T05:40:31.8136580Z [3456/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:31.8181100Z [3457/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:31.8343710Z [3458/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul8.c.o 2024-06-26T05:40:31.8363880Z [3459/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:31.8578170Z [3460/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:31.8656180Z [3461/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul8.c.o 2024-06-26T05:40:31.8955670Z [3462/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:31.9434660Z [3463/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:32.0099400Z [3464/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul8.c.o 2024-06-26T05:40:32.0157370Z [3465/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:32.0210630Z [3466/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:32.0264950Z [3467/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul8.c.o 2024-06-26T05:40:32.0376650Z [3468/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:32.0478170Z [3469/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:32.0872320Z [3470/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul8.c.o 2024-06-26T05:40:32.1288740Z [3471/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:32.1453310Z [3472/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul8.c.o 2024-06-26T05:40:32.1687770Z [3473/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul8.c.o 2024-06-26T05:40:32.1937180Z [3474/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:32.1994180Z [3475/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-rndnu-neon-mul8.c.o 2024-06-26T05:40:32.2138880Z [3476/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:32.2242970Z [3477/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:32.2404100Z [3478/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:32.2425380Z [3479/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:32.2990330Z [3480/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:32.3178670Z [3481/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:32.3279710Z [3482/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:32.3582610Z [3483/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul8.c.o 2024-06-26T05:40:32.4012150Z [3484/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:32.4019570Z [3485/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:32.4112400Z [3486/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul8.c.o 2024-06-26T05:40:32.4332730Z [3487/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-rndnu-neon-mul8.c.o 2024-06-26T05:40:32.4357320Z [3488/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:32.4820890Z [3489/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:32.4827310Z [3490/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:32.5078280Z [3491/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:32.5198480Z [3492/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-rndnu-neon-mul8.c.o 2024-06-26T05:40:32.5739130Z [3493/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u8.c.o 2024-06-26T05:40:32.5749400Z [3494/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-rndnu-neon-mul8.c.o 2024-06-26T05:40:32.5839320Z [3495/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-neon-c16.c.o 2024-06-26T05:40:32.5879050Z [3496/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-rndnu-neon-mul16.c.o 2024-06-26T05:40:32.5998000Z [3497/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u16.c.o 2024-06-26T05:40:32.6399750Z [3498/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u24.c.o 2024-06-26T05:40:32.6486410Z [3499/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u32.c.o 2024-06-26T05:40:32.6832830Z [3500/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-neon-c24.c.o 2024-06-26T05:40:32.7062520Z [3501/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-neon-c8.c.o 2024-06-26T05:40:32.7124430Z [3502/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2024-06-26T05:40:32.7323810Z [3503/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-rndnu-neon-c8.c.o 2024-06-26T05:40:32.7488580Z [3504/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-rndnu-neon-c24.c.o 2024-06-26T05:40:32.7689400Z [3505/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-neon-c32.c.o 2024-06-26T05:40:32.7694880Z [3506/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-rndnu-neon-c32.c.o 2024-06-26T05:40:32.7928570Z [3507/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-rndnu-neon-c16.c.o 2024-06-26T05:40:32.7949420Z [3508/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-neon-c8.c.o 2024-06-26T05:40:32.8283700Z [3509/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-neon-c16.c.o 2024-06-26T05:40:32.8591900Z [3510/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-neon-c32.c.o 2024-06-26T05:40:32.8823080Z [3511/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-rndnu-neon-c8.c.o 2024-06-26T05:40:32.8871210Z [3512/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-rndnu-neon-c16.c.o 2024-06-26T05:40:32.8880840Z [3513/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-neon-c24.c.o 2024-06-26T05:40:32.9161250Z [3514/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-rndnu-neon-c32.c.o 2024-06-26T05:40:32.9264030Z [3515/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-rndnu-neon-c24.c.o 2024-06-26T05:40:32.9576280Z [3516/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x8-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:32.9827070Z [3517/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x16-minmax-fp32-neon-mlal-lane.c.o 2024-06-26T05:40:33.0086100Z [3518/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x8-minmax-fp32-neon-mlal-lane.c.o 2024-06-26T05:40:33.0484650Z [3519/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x16-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.0547960Z [3520/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x8-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.0752200Z [3521/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x16-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.0844850Z [3522/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x8-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.0936300Z [3523/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x8-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.1085350Z [3524/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x16-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.1531920Z [3525/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x8-minmax-fp32-neon-mlal-lane.c.o 2024-06-26T05:40:33.1727370Z [3526/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-fp32-neon-mlal-lane.c.o 2024-06-26T05:40:33.1862010Z [3527/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.2274580Z [3528/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-6x8-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.2280430Z [3529/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x8-minmax-fp32-neon-mlal-lane.c.o 2024-06-26T05:40:33.2766560Z [3530/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x8-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.2930410Z [3531/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x16-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.2976430Z [3532/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x8-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.3159970Z [3533/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-6x16-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.3252940Z [3534/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x16-minmax-fp32-neon-mlal-lane.c.o 2024-06-26T05:40:33.3363420Z [3535/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x16-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.3603680Z [3536/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x8-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.3625190Z [3537/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x16-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.4080610Z [3538/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x8-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.4091910Z [3539/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x8-minmax-fp32-neon-mlal-lane.c.o 2024-06-26T05:40:33.4727960Z [3540/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.4806590Z [3541/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-fp32-neon-mlal-lane.c.o 2024-06-26T05:40:33.4882550Z [3542/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-6x8-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.4905580Z [3543/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-gemmlowp-neon.c.o 2024-06-26T05:40:33.5133620Z [3544/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-fp32-neon.c.o 2024-06-26T05:40:33.5145490Z [3545/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-neon.c.o 2024-06-26T05:40:33.5354290Z [3546/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u8.c.o 2024-06-26T05:40:33.5365150Z [3547/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-6x16-minmax-rndnu-neon-mlal-lane.c.o 2024-06-26T05:40:33.5670530Z [3548/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u32.c.o 2024-06-26T05:40:33.6231900Z [3549/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u16.c.o 2024-06-26T05:40:33.6395560Z [3550/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld128-u16.c.o 2024-06-26T05:40:33.6495000Z [3551/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-filterbank-accumulate/gen/u32-filterbank-accumulate-neon-x2.c.o 2024-06-26T05:40:33.6602240Z [3552/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16-u8.c.o 2024-06-26T05:40:33.6772260Z [3553/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16-u16-acc2.c.o 2024-06-26T05:40:33.6995070Z [3554/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16-u24-acc3.c.o 2024-06-26T05:40:33.7164850Z [3555/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16-u32-acc4.c.o 2024-06-26T05:40:33.7182080Z [3556/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16-u32-acc2.c.o 2024-06-26T05:40:33.7255470Z [3557/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16-u4.c.o 2024-06-26T05:40:33.7530430Z [3558/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u8.c.o 2024-06-26T05:40:33.8075680Z [3559/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u16.c.o 2024-06-26T05:40:33.8157520Z [3560/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f16-f32-cvt-neonfp16.c.o 2024-06-26T05:40:33.8309690Z [3561/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-1x4c8-minmax-neonfma-shland.c.o 2024-06-26T05:40:33.8625740Z [3562/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-1x4c8-minmax-neonfma-zip.c.o 2024-06-26T05:40:33.8845670Z [3563/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-2x4c8-minmax-neonfma-shland.c.o 2024-06-26T05:40:33.8889530Z [3564/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-f16-cvt-neonfp16.c.o 2024-06-26T05:40:33.9029810Z [3565/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-3x4c8-minmax-neonfma-shland.c.o 2024-06-26T05:40:33.9151130Z [3566/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-2x4c8-minmax-neonfma-zip.c.o 2024-06-26T05:40:33.9480580Z [3567/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-4x4c8-minmax-neonfma-shland.c.o 2024-06-26T05:40:33.9842620Z [3568/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-3x4c8-minmax-neonfma-zip.c.o 2024-06-26T05:40:33.9940900Z [3569/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-5x4c8-minmax-neonfma-shland.c.o 2024-06-26T05:40:34.0040970Z [3570/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-5x4c8-minmax-neonfma-zip.c.o 2024-06-26T05:40:34.0214890Z [3571/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-4x4c8-minmax-neonfma-zip.c.o 2024-06-26T05:40:34.0409980Z [3572/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.0893480Z [3573/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.1169590Z [3574/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neonfma.c.o 2024-06-26T05:40:34.1271650Z [3575/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma.c.o 2024-06-26T05:40:34.1403020Z [3576/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neonfma.c.o 2024-06-26T05:40:34.1454590Z [3577/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.1481290Z [3578/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neonfma.c.o 2024-06-26T05:40:34.1770800Z [3579/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.2037920Z [3580/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.2155980Z [3581/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma.c.o 2024-06-26T05:40:34.2376850Z [3582/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.2921970Z [3583/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.3130680Z [3584/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.3144770Z [3585/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.3153140Z [3586/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neonfma.c.o 2024-06-26T05:40:34.3175780Z [3587/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma.c.o 2024-06-26T05:40:34.3466710Z [3588/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neonfma.c.o 2024-06-26T05:40:34.3936490Z [3589/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.3998220Z [3590/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neonfma.c.o 2024-06-26T05:40:34.4317220Z [3591/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.4339320Z [3592/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neonfma.c.o 2024-06-26T05:40:34.4706110Z [3593/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neonfma.c.o 2024-06-26T05:40:34.4895750Z [3594/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.4960980Z [3595/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.5171700Z [3596/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neonfma.c.o 2024-06-26T05:40:34.5207280Z [3597/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neonfma.c.o 2024-06-26T05:40:34.5316450Z [3598/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.6159030Z [3599/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.6208210Z [3600/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neonfma.c.o 2024-06-26T05:40:34.6266010Z [3601/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neonfma.c.o 2024-06-26T05:40:34.6423840Z [3602/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma.c.o 2024-06-26T05:40:34.6527550Z [3603/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.6655990Z [3604/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.7053550Z [3605/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma.c.o 2024-06-26T05:40:34.7407640Z [3606/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neonfma.c.o 2024-06-26T05:40:34.7564040Z [3607/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neonfma-dup-ld64.c.o 2024-06-26T05:40:34.7569070Z [3608/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neonfma-acc2.c.o 2024-06-26T05:40:34.8107660Z [3609/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neonfma.c.o 2024-06-26T05:40:34.8124850Z [3610/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neonfma-dup-ld64.c.o 2024-06-26T05:40:34.8154020Z [3611/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neonfma.c.o 2024-06-26T05:40:34.8444910Z [3612/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neonfma-dup-ld64.c.o 2024-06-26T05:40:34.8497600Z [3613/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neonfma-dup-ld128.c.o 2024-06-26T05:40:34.8500200Z [3614/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neonfma-dup-ld128.c.o 2024-06-26T05:40:34.9164910Z [3615/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u16.c.o 2024-06-26T05:40:34.9176630Z [3616/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-mov-zip-neon.c.o 2024-06-26T05:40:34.9359680Z [3617/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-dec-zip-neon.c.o 2024-06-26T05:40:34.9381000Z [3618/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-switch-zip-neon.c.o 2024-06-26T05:40:35.0089020Z [3619/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-dec-zip-neon.c.o 2024-06-26T05:40:35.0220500Z [3620/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-multi-zip-neon.c.o 2024-06-26T05:40:35.0286710Z [3621/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-zip-neon.c.o 2024-06-26T05:40:35.0337620Z [3622/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-mov-zip-neon.c.o 2024-06-26T05:40:35.0509990Z [3623/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-switch-zip-neon.c.o 2024-06-26T05:40:35.0611550Z [3624/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x2-neon.c.o 2024-06-26T05:40:35.0712640Z [3625/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-switch-zip-neon.c.o 2024-06-26T05:40:35.0716550Z [3626/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x3-neon.c.o 2024-06-26T05:40:35.0860870Z [3627/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-xm-neon.c.o 2024-06-26T05:40:35.0917450Z [3628/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x4-neon.c.o 2024-06-26T05:40:35.1789780Z [3629/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u8-prfm.c.o 2024-06-26T05:40:35.1824340Z [3630/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u4.c.o 2024-06-26T05:40:35.1848550Z [3631/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u8.c.o 2024-06-26T05:40:35.2057980Z [3632/5905] 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 2024-06-26T05:40:35.2430620Z [3633/5905] 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 2024-06-26T05:40:35.2468830Z [3634/5905] 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 2024-06-26T05:40:35.2475970Z [3635/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u16.c.o 2024-06-26T05:40:35.2552790Z [3636/5905] 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 2024-06-26T05:40:35.2654920Z [3637/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u12.c.o 2024-06-26T05:40:35.2874710Z [3638/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u4.c.o 2024-06-26T05:40:35.3386630Z [3639/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u8-prfm.c.o 2024-06-26T05:40:35.3492010Z [3640/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u8.c.o 2024-06-26T05:40:35.3509610Z [3641/5905] 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 2024-06-26T05:40:35.3807760Z [3642/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u12.c.o 2024-06-26T05:40:35.4239710Z [3643/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-dec-zip-neon.c.o 2024-06-26T05:40:35.4301650Z [3644/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-switch-zip-neon.c.o 2024-06-26T05:40:35.4305170Z [3645/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-mov-zip-neon.c.o 2024-06-26T05:40:35.4317730Z [3646/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-multi-zip-neon.c.o 2024-06-26T05:40:35.4423150Z [3647/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u16.c.o 2024-06-26T05:40:35.4677810Z [3648/5905] 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 2024-06-26T05:40:35.5198450Z [3649/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-dec-zip-neon.c.o 2024-06-26T05:40:35.5250760Z [3650/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-multi-zip-neon.c.o 2024-06-26T05:40:35.5360750Z [3651/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-switch-zip-neon.c.o 2024-06-26T05:40:35.5554170Z [3652/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-mov-zip-neon.c.o 2024-06-26T05:40:35.6233230Z [3653/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-dec-zip-neon.c.o 2024-06-26T05:40:35.6275450Z [3654/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-dec-zip-neon.c.o 2024-06-26T05:40:35.6310880Z [3655/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-mov-zip-neon.c.o 2024-06-26T05:40:35.6469960Z [3656/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-switch-zip-neon.c.o 2024-06-26T05:40:35.6651970Z [3657/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/x24-transposec-2x2-neon-tbl64.c.o 2024-06-26T05:40:35.6874970Z [3658/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-mov-zip-neon.c.o 2024-06-26T05:40:35.6886680Z [3659/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-zip-neon.c.o 2024-06-26T05:40:35.7145960Z [3660/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-switch-zip-neon.c.o 2024-06-26T05:40:35.7213380Z [3661/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-neon-ld2lane-u2-prfm.c.o 2024-06-26T05:40:35.7522320Z [3662/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-neon-ld2lane-u2.c.o 2024-06-26T05:40:35.7618150Z [3663/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-neon-ld4lane-u4.c.o 2024-06-26T05:40:35.7816450Z [3664/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-neon-ld4lane-u8.c.o 2024-06-26T05:40:35.7891020Z [3665/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-neon-ld4lane-u4-prfm.c.o 2024-06-26T05:40:35.8123880Z [3666/5905] 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 2024-06-26T05:40:35.8388460Z [3667/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8s4-gemm-goi-neon-ld4lane-u4-prfm.c.o 2024-06-26T05:40:35.8500240Z [3668/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8s4-gemm-goi-neon-ld4lane-u4.c.o 2024-06-26T05:40:35.8797660Z [3669/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8s4-gemm-goi-neon-ld4lane-u8.c.o 2024-06-26T05:40:35.8983380Z [3670/5905] 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 2024-06-26T05:40:35.9263810Z [3671/5905] 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 2024-06-26T05:40:35.9290140Z [3672/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x12-gemm-goi-neon-ld4lane-u4.c.o 2024-06-26T05:40:35.9298480Z [3673/5905] 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 2024-06-26T05:40:35.9590710Z [3674/5905] 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 2024-06-26T05:40:35.9621570Z [3675/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-neon-ld4lane-u4.c.o 2024-06-26T05:40:35.9956580Z [3676/5905] 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 2024-06-26T05:40:36.0164570Z [3677/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-neon-ld4lane-u8.c.o 2024-06-26T05:40:36.0478350Z [3678/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u4-prfm.c.o 2024-06-26T05:40:36.0489990Z [3679/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u4.c.o 2024-06-26T05:40:36.0743750Z [3680/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u8.c.o 2024-06-26T05:40:36.0768350Z [3681/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u8-prfm.c.o 2024-06-26T05:40:36.1092970Z [3682/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u4-prfm.c.o 2024-06-26T05:40:36.1137510Z [3683/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u4.c.o 2024-06-26T05:40:36.1314850Z [3684/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x12-gemm-goi-neon-ld4lane-u8.c.o 2024-06-26T05:40:36.1328770Z [3685/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u8.c.o 2024-06-26T05:40:36.1652720Z [3686/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u8-prfm.c.o 2024-06-26T05:40:36.2182820Z [3687/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-switch-zip-neon.c.o 2024-06-26T05:40:36.2213070Z [3688/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-multi-zip-neon.c.o 2024-06-26T05:40:36.2340670Z [3689/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-dec-zip-neon.c.o 2024-06-26T05:40:36.2452840Z [3690/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-mov-zip-neon.c.o 2024-06-26T05:40:36.2512460Z [3691/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-dec-zip-neon.c.o 2024-06-26T05:40:36.2728200Z [3692/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-multi-zip-neon.c.o 2024-06-26T05:40:36.2761140Z [3693/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-mov-zip-neon.c.o 2024-06-26T05:40:36.2927620Z [3694/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-switch-zip-neon.c.o 2024-06-26T05:40:36.3032610Z [3695/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-dec-zip-neon.c.o 2024-06-26T05:40:36.3157810Z [3696/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-mov-zip-neon.c.o 2024-06-26T05:40:36.3846590Z [3697/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-switch-zip-neon.c.o 2024-06-26T05:40:36.3977270Z [3698/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-dec-zip-neon.c.o 2024-06-26T05:40:36.4077400Z [3699/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-mov-zip-neon.c.o 2024-06-26T05:40:36.4090220Z [3700/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-multi-zip-neon.c.o 2024-06-26T05:40:36.4148700Z [3701/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-unpool/x32-unpool-neon.c.o 2024-06-26T05:40:36.4342560Z [3702/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-multi-zip-neon.c.o 2024-06-26T05:40:36.4356530Z [3703/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-switch-zip-neon.c.o 2024-06-26T05:40:36.4941580Z [3704/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x2-neon.c.o 2024-06-26T05:40:36.5073920Z [3705/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x3-neon.c.o 2024-06-26T05:40:36.5284710Z [3706/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x4-neon.c.o 2024-06-26T05:40:36.5838410Z [3707/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-xm-neon.c.o 2024-06-26T05:40:36.5842620Z [3708/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-multi-zip-neon.c.o 2024-06-26T05:40:36.5895160Z [3709/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-zip-neon.c.o 2024-06-26T05:40:36.5937240Z [3710/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-switch-zip-neon.c.o 2024-06-26T05:40:36.6100410Z [3711/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-mov-zip-neon.c.o 2024-06-26T05:40:36.6277240Z [3712/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-dec-zip-neon.c.o 2024-06-26T05:40:36.6293600Z [3713/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-dec-zip-neon.c.o 2024-06-26T05:40:36.6475180Z [3714/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-multi-zip-neon.c.o 2024-06-26T05:40:36.6554420Z [3715/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-switch-zip-neon.c.o 2024-06-26T05:40:36.7101640Z [3716/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-fill/xx-fill-neon-u64.c.o 2024-06-26T05:40:36.7603940Z [3717/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u16.c.o 2024-06-26T05:40:36.7640310Z [3718/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-pad/xx-pad-p16-neon-u16.c.o 2024-06-26T05:40:36.7814180Z [3719/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u20.c.o 2024-06-26T05:40:36.7846420Z [3720/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-neonv8-c8.c.o 2024-06-26T05:40:36.8029770Z [3721/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u24.c.o 2024-06-26T05:40:36.8193420Z [3722/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-neonfma-2x.c.o 2024-06-26T05:40:36.8389280Z [3723/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u4.c.o 2024-06-26T05:40:36.8413010Z [3724/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u8.c.o 2024-06-26T05:40:36.8787290Z [3725/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u8.c.o 2024-06-26T05:40:36.9230840Z [3726/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u12.c.o 2024-06-26T05:40:36.9251570Z [3727/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u16.c.o 2024-06-26T05:40:36.9282740Z [3728/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u20.c.o 2024-06-26T05:40:36.9288300Z [3729/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neonfma-2x.c.o 2024-06-26T05:40:36.9524880Z [3730/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u24.c.o 2024-06-26T05:40:36.9938440Z [3731/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u4.c.o 2024-06-26T05:40:37.0010610Z [3732/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u8.c.o 2024-06-26T05:40:37.0092410Z [3733/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u16.c.o 2024-06-26T05:40:37.0213650Z [3734/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u12.c.o 2024-06-26T05:40:37.0350990Z [3735/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u20.c.o 2024-06-26T05:40:37.1043690Z [3736/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u16.c.o 2024-06-26T05:40:37.1054460Z [3737/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u12.c.o 2024-06-26T05:40:37.1328810Z [3738/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u24.c.o 2024-06-26T05:40:37.1408920Z [3739/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u8.c.o 2024-06-26T05:40:37.1447820Z [3740/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u4.c.o 2024-06-26T05:40:37.1689120Z [3741/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u20.c.o 2024-06-26T05:40:37.1716030Z [3742/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u24.c.o 2024-06-26T05:40:37.1888570Z [3743/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u12.c.o 2024-06-26T05:40:37.2133250Z [3744/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u4.c.o 2024-06-26T05:40:37.2613450Z [3745/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u8.c.o 2024-06-26T05:40:37.3086100Z [3746/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u16.c.o 2024-06-26T05:40:37.3093850Z [3747/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u20.c.o 2024-06-26T05:40:37.3337130Z [3748/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u24.c.o 2024-06-26T05:40:37.3342340Z [3749/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u8.c.o 2024-06-26T05:40:37.3344470Z [3750/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u4.c.o 2024-06-26T05:40:37.3637470Z [3751/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u20.c.o 2024-06-26T05:40:37.3657440Z [3752/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u12.c.o 2024-06-26T05:40:37.3696350Z [3753/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u16.c.o 2024-06-26T05:40:37.3772820Z [3754/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u24.c.o 2024-06-26T05:40:37.4262080Z [3755/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u4.c.o 2024-06-26T05:40:37.4804850Z [3756/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u8.c.o 2024-06-26T05:40:37.4871530Z [3757/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u12.c.o 2024-06-26T05:40:37.5203750Z [3758/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u24.c.o 2024-06-26T05:40:37.5217480Z [3759/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u16.c.o 2024-06-26T05:40:37.5366900Z [3760/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u20.c.o 2024-06-26T05:40:37.5402390Z [3761/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u8.c.o 2024-06-26T05:40:37.5775190Z [3762/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u16.c.o 2024-06-26T05:40:37.6058150Z [3763/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u12.c.o 2024-06-26T05:40:37.6164970Z [3764/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u4.c.o 2024-06-26T05:40:37.6173490Z [3765/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u20.c.o 2024-06-26T05:40:37.6358710Z [3766/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u4.c.o 2024-06-26T05:40:37.6506340Z [3767/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u24.c.o 2024-06-26T05:40:37.7021690Z [3768/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u12.c.o 2024-06-26T05:40:37.7217710Z [3769/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u16.c.o 2024-06-26T05:40:37.7447180Z [3770/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u20.c.o 2024-06-26T05:40:37.7569460Z [3771/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u24.c.o 2024-06-26T05:40:37.7728360Z [3772/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u8.c.o 2024-06-26T05:40:37.7744030Z [3773/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u8.c.o 2024-06-26T05:40:37.8095110Z [3774/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u4.c.o 2024-06-26T05:40:37.8171110Z [3775/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u20.c.o 2024-06-26T05:40:37.8178830Z [3776/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u16.c.o 2024-06-26T05:40:37.8642590Z [3777/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u12.c.o 2024-06-26T05:40:37.9022080Z [3778/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u24.c.o 2024-06-26T05:40:37.9092280Z [3779/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u4.c.o 2024-06-26T05:40:37.9099710Z [3780/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u8.c.o 2024-06-26T05:40:37.9291350Z [3781/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u16.c.o 2024-06-26T05:40:37.9794370Z [3782/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u12.c.o 2024-06-26T05:40:37.9907750Z [3783/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u20.c.o 2024-06-26T05:40:37.9954070Z [3784/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-neonfma-nr1rsqrts1fma1adj-u8.c.o 2024-06-26T05:40:38.0012200Z [3785/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-neonfma-nr1rsqrts1fma1adj-u4.c.o 2024-06-26T05:40:38.0279390Z [3786/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-neonfma-nr1rsqrts1fma1adj-u16.c.o 2024-06-26T05:40:38.0354840Z [3787/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u24.c.o 2024-06-26T05:40:38.0581840Z [3788/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-neonfma-nr2fma1adj-u8.c.o 2024-06-26T05:40:38.0747830Z [3789/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-neonfma-nr2fma1adj-u16.c.o 2024-06-26T05:40:38.0879000Z [3790/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-lut8-p4h3ts-nr1recps1fma-u4.c.o 2024-06-26T05:40:38.1423340Z [3791/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-neonfma-nr2fma1adj-u4.c.o 2024-06-26T05:40:38.1722620Z [3792/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-lut8-p4h3ts-nr1recps1fma-u8.c.o 2024-06-26T05:40:38.1734930Z [3793/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-lut8-p4h3ts-nr1recps1fma-u12.c.o 2024-06-26T05:40:38.1744360Z [3794/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-lut8-p4h3ts-nr1recps1fma-u16.c.o 2024-06-26T05:40:38.2019390Z [3795/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-lut8-p4h3ts-nr2fma-u4.c.o 2024-06-26T05:40:38.2024490Z [3796/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-lut8-p4h3ts-nr2fma-u8.c.o 2024-06-26T05:40:38.2289910Z [3797/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-lut8-p4h3ts-nr2fma-u12.c.o 2024-06-26T05:40:38.2733100Z [3798/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-p6h5ts-nr1recps1fma-u8.c.o 2024-06-26T05:40:38.2877200Z [3799/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-p6h5ts-nr1recps1fma-u4.c.o 2024-06-26T05:40:38.3037670Z [3800/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-lut8-p4h3ts-nr2fma-u16.c.o 2024-06-26T05:40:38.3362160Z [3801/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-p6h5ts-nr1recps1fma-u12.c.o 2024-06-26T05:40:38.3679540Z [3802/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-p6h5ts-nr2fma-u4.c.o 2024-06-26T05:40:38.3855820Z [3803/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-p6h5ts-nr2fma-u8.c.o 2024-06-26T05:40:38.3862880Z [3804/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-p6h5ts-nr1recps1fma-u16.c.o 2024-06-26T05:40:38.3873160Z [3805/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-p6h5ts-nr2fma-u12.c.o 2024-06-26T05:40:38.4180260Z [3806/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-p6h5ts-nr2fma-u16.c.o 2024-06-26T05:40:38.4281710Z [3807/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-p6h5ts-nr2recps-u4.c.o 2024-06-26T05:40:38.4649620Z [3808/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-p6h5ts-nr2recps-u8.c.o 2024-06-26T05:40:38.4751680Z [3809/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-p6h5ts-nr2recps-u12.c.o 2024-06-26T05:40:38.4892300Z [3810/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neonfma-expm1minus-rr1-p6h5ts-nr2recps-u16.c.o 2024-06-26T05:40:38.5004380Z [3811/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-exp-neonfma-rr2-lut64-p2.c.o 2024-06-26T05:40:38.5171100Z [3812/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-exp-neonfma-rr2-p5.c.o 2024-06-26T05:40:38.5503830Z [3813/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expm1minus-neonfma-rr1-p6.c.o 2024-06-26T05:40:38.5675080Z [3814/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expm1minus-neonfma-rr1-lut16-p3.c.o 2024-06-26T05:40:38.5754200Z [3815/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expminus-neonfma-rr2-lut64-p2.c.o 2024-06-26T05:40:38.5816550Z [3816/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr1-lut64-p2-nr1recps1fma.c.o 2024-06-26T05:40:38.6123930Z [3817/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expminus-neonfma-rr2-lut2048-p1.c.o 2024-06-26T05:40:38.6490250Z [3818/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-expminus-neonfma-rr2-p5.c.o 2024-06-26T05:40:38.6647200Z [3819/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr1-lut64-p2-nr2fma.c.o 2024-06-26T05:40:38.7018780Z [3820/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neonfma.c.o 2024-06-26T05:40:38.7027220Z [3821/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8s4-minmax-neonfma.c.o 2024-06-26T05:40:38.7242940Z [3822/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neonfma-dup-ld64.c.o 2024-06-26T05:40:38.7442890Z [3823/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8s4-minmax-neonfma.c.o 2024-06-26T05:40:38.7628960Z [3824/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neonfma-dup-ld64.c.o 2024-06-26T05:40:38.7670220Z [3825/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neonfma-dup-ld128.c.o 2024-06-26T05:40:38.7991620Z [3826/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neonfma-dup-ld64.c.o 2024-06-26T05:40:38.8060480Z [3827/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8s4-minmax-neonfma.c.o 2024-06-26T05:40:38.8586070Z [3828/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neonfma-dup-ld128.c.o 2024-06-26T05:40:38.8623920Z [3829/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8s4-minmax-neonfma.c.o 2024-06-26T05:40:38.8683140Z [3830/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p4.c.o 2024-06-26T05:40:38.8867750Z [3831/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p16.c.o 2024-06-26T05:40:38.8899350Z [3832/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-8x8s4-minmax-neonfma.c.o 2024-06-26T05:40:38.8908820Z [3833/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p8.c.o 2024-06-26T05:40:38.9329760Z [3834/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c8.c.o 2024-06-26T05:40:38.9679080Z [3835/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neonfma-dup-ld64.c.o 2024-06-26T05:40:38.9914040Z [3836/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c4.c.o 2024-06-26T05:40:39.0011550Z [3837/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neonfma.c.o 2024-06-26T05:40:39.0336320Z [3838/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neonfma-dup-ld64.c.o 2024-06-26T05:40:39.0498840Z [3839/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neonfma.c.o 2024-06-26T05:40:39.0560870Z [3840/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neonfma-dup-ld128.c.o 2024-06-26T05:40:39.0817280Z [3841/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neonfma-dup-ld64.c.o 2024-06-26T05:40:39.0859980Z [3842/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neonfma-dup-ld128.c.o 2024-06-26T05:40:39.1309940Z [3843/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8s4-minmax-neonfma.c.o 2024-06-26T05:40:39.1472210Z [3844/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neonfma.c.o 2024-06-26T05:40:39.1503760Z [3845/5905] 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 2024-06-26T05:40:39.1615910Z [3846/5905] 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 2024-06-26T05:40:39.1800580Z [3847/5905] 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 2024-06-26T05:40:39.2001730Z [3848/5905] 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 2024-06-26T05:40:39.2331950Z [3849/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8s4-minmax-neonfma.c.o 2024-06-26T05:40:39.2653780Z [3850/5905] 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 2024-06-26T05:40:39.2658160Z [3851/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8s4-minmax-neonfma.c.o 2024-06-26T05:40:39.3150490Z [3852/5905] 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 2024-06-26T05:40:39.3204160Z [3853/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u8.c.o 2024-06-26T05:40:39.3363900Z [3854/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u8-acc2.c.o 2024-06-26T05:40:39.3426480Z [3855/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8s4-minmax-neonfma.c.o 2024-06-26T05:40:39.3445380Z [3856/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u4.c.o 2024-06-26T05:40:39.3654350Z [3857/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u12-acc2.c.o 2024-06-26T05:40:39.4166380Z [3858/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u12.c.o 2024-06-26T05:40:39.4418180Z [3859/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u12-acc3.c.o 2024-06-26T05:40:39.4495590Z [3860/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u16-acc4.c.o 2024-06-26T05:40:39.4515210Z [3861/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u16-acc2.c.o 2024-06-26T05:40:39.4705890Z [3862/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u16.c.o 2024-06-26T05:40:39.4882990Z [3863/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u20-acc5.c.o 2024-06-26T05:40:39.4906460Z [3864/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u4.c.o 2024-06-26T05:40:39.5097200Z [3865/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u20-acc2.c.o 2024-06-26T05:40:39.5168380Z [3866/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u20.c.o 2024-06-26T05:40:39.5819810Z [3867/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u8-acc2.c.o 2024-06-26T05:40:39.5853520Z [3868/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u12-acc3.c.o 2024-06-26T05:40:39.6066380Z [3869/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u12.c.o 2024-06-26T05:40:39.6234540Z [3870/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u8.c.o 2024-06-26T05:40:39.6426590Z [3871/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16-acc2.c.o 2024-06-26T05:40:39.6431230Z [3872/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u12-acc2.c.o 2024-06-26T05:40:39.6660350Z [3873/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16-acc4.c.o 2024-06-26T05:40:39.6673660Z [3874/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u20-acc5.c.o 2024-06-26T05:40:39.6740700Z [3875/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16.c.o 2024-06-26T05:40:39.7122290Z [3876/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u20-acc2.c.o 2024-06-26T05:40:39.7470230Z [3877/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma-pipelined.c.o 2024-06-26T05:40:39.7689760Z [3878/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u20.c.o 2024-06-26T05:40:39.7778340Z [3879/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma.c.o 2024-06-26T05:40:39.7916920Z [3880/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma-pipelined.c.o 2024-06-26T05:40:39.8073940Z [3881/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma-x2.c.o 2024-06-26T05:40:39.8149860Z [3882/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma-x2.c.o 2024-06-26T05:40:39.8362700Z [3883/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma.c.o 2024-06-26T05:40:39.8534030Z [3884/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x1-minmax-neonfma.c.o 2024-06-26T05:40:39.8702070Z [3885/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma-x2.c.o 2024-06-26T05:40:39.8927970Z [3886/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma-pipelined.c.o 2024-06-26T05:40:39.9133410Z [3887/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma.c.o 2024-06-26T05:40:39.9362710Z [3888/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-pipelined.c.o 2024-06-26T05:40:39.9402230Z [3889/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma.c.o 2024-06-26T05:40:39.9603770Z [3890/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-x2.c.o 2024-06-26T05:40:39.9902600Z [3891/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u4.c.o 2024-06-26T05:40:40.0224160Z [3892/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u8.c.o 2024-06-26T05:40:40.0393430Z [3893/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:40.0438540Z [3894/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-neonv8-c16.c.o 2024-06-26T05:40:40.0446030Z [3895/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u12.c.o 2024-06-26T05:40:40.0544620Z [3896/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-neonv8-c24.c.o 2024-06-26T05:40:40.1020230Z [3897/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-neonv8-c32.c.o 2024-06-26T05:40:40.1239270Z [3898/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-neonv8-c24.c.o 2024-06-26T05:40:40.1278830Z [3899/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-neonv8-c8.c.o 2024-06-26T05:40:40.1528320Z [3900/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-neonv8-c32.c.o 2024-06-26T05:40:40.1964060Z [3901/5905] 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 2024-06-26T05:40:40.2031570Z [3902/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-neonv8-mla8-ld128.c.o 2024-06-26T05:40:40.2072580Z [3903/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-neonv8-c16.c.o 2024-06-26T05:40:40.2176030Z [3904/5905] 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 2024-06-26T05:40:40.2324260Z [3905/5905] 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 2024-06-26T05:40:40.2653460Z [3906/5905] 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 2024-06-26T05:40:40.2952340Z [3907/5905] 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 2024-06-26T05:40:40.3143630Z [3908/5905] 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 2024-06-26T05:40:40.3452690Z [3909/5905] 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 2024-06-26T05:40:40.3664790Z [3910/5905] 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 2024-06-26T05:40:40.4075200Z [3911/5905] 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 2024-06-26T05:40:40.4141210Z [3912/5905] 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 2024-06-26T05:40:40.4287670Z [3913/5905] 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 2024-06-26T05:40:40.4298560Z [3914/5905] 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 2024-06-26T05:40:40.4527280Z [3915/5905] 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 2024-06-26T05:40:40.4531520Z [3916/5905] 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 2024-06-26T05:40:40.4743850Z [3917/5905] 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 2024-06-26T05:40:40.5440800Z [3918/5905] 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 2024-06-26T05:40:40.5462750Z [3919/5905] 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 2024-06-26T05:40:40.5744450Z [3920/5905] 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 2024-06-26T05:40:40.5995980Z [3921/5905] 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 2024-06-26T05:40:40.6022340Z [3922/5905] 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 2024-06-26T05:40:40.6038520Z [3923/5905] 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 2024-06-26T05:40:40.6280460Z [3924/5905] 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 2024-06-26T05:40:40.6342350Z [3925/5905] 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 2024-06-26T05:40:40.6460630Z [3926/5905] 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 2024-06-26T05:40:40.6490800Z [3927/5905] 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 2024-06-26T05:40:40.7130230Z [3928/5905] 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 2024-06-26T05:40:40.7164220Z [3929/5905] 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 2024-06-26T05:40:40.7436630Z [3930/5905] 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 2024-06-26T05:40:40.7844770Z [3931/5905] 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 2024-06-26T05:40:40.8209560Z [3932/5905] 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 2024-06-26T05:40:40.8378710Z [3933/5905] 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 2024-06-26T05:40:40.8529590Z [3934/5905] 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 2024-06-26T05:40:40.8553090Z [3935/5905] 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 2024-06-26T05:40:40.8593540Z [3936/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mla8-ld64.c.o 2024-06-26T05:40:40.8623860Z [3937/5905] 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 2024-06-26T05:40:40.8899490Z [3938/5905] 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 2024-06-26T05:40:40.9142170Z [3939/5905] 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 2024-06-26T05:40:40.9146190Z [3940/5905] 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 2024-06-26T05:40:40.9523230Z [3941/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neonv8-mla8-ld64.c.o 2024-06-26T05:40:41.0109230Z [3942/5905] 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 2024-06-26T05:40:41.0255550Z [3943/5905] 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 2024-06-26T05:40:41.0478130Z [3944/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mla8-ld64.c.o 2024-06-26T05:40:41.0707980Z [3945/5905] 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 2024-06-26T05:40:41.0730280Z [3946/5905] 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 2024-06-26T05:40:41.0783250Z [3947/5905] 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 2024-06-26T05:40:41.0791660Z [3948/5905] 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 2024-06-26T05:40:41.1053370Z [3949/5905] 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 2024-06-26T05:40:41.1118600Z [3950/5905] 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 2024-06-26T05:40:41.1936980Z [3951/5905] 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 2024-06-26T05:40:41.2224350Z [3952/5905] 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 2024-06-26T05:40:41.2328050Z [3953/5905] 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 2024-06-26T05:40:41.2480940Z [3954/5905] 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 2024-06-26T05:40:41.2592910Z [3955/5905] 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 2024-06-26T05:40:41.2653830Z [3956/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2s4-minmax-fp32-neonv8-mlal.c.o 2024-06-26T05:40:41.2799270Z [3957/5905] 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 2024-06-26T05:40:41.2905530Z [3958/5905] 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 2024-06-26T05:40:41.2937420Z [3959/5905] 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 2024-06-26T05:40:41.3710120Z [3960/5905] 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 2024-06-26T05:40:41.3814180Z [3961/5905] 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 2024-06-26T05:40:41.4080040Z [3962/5905] 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 2024-06-26T05:40:41.4089150Z [3963/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2024-06-26T05:40:41.4663040Z [3964/5905] 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 2024-06-26T05:40:41.4818980Z [3965/5905] 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 2024-06-26T05:40:41.4899300Z [3966/5905] 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 2024-06-26T05:40:41.5120080Z [3967/5905] 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 2024-06-26T05:40:41.5123310Z [3968/5905] 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 2024-06-26T05:40:41.5129480Z [3969/5905] 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 2024-06-26T05:40:41.5399460Z [3970/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2s4-minmax-fp32-neonv8-mlal.c.o 2024-06-26T05:40:41.5821380Z [3971/5905] 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 2024-06-26T05:40:41.5928860Z [3972/5905] 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 2024-06-26T05:40:41.6088670Z [3973/5905] 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 2024-06-26T05:40:41.6259550Z [3974/5905] 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 2024-06-26T05:40:41.6809480Z [3975/5905] 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 2024-06-26T05:40:41.7037740Z [3976/5905] 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 2024-06-26T05:40:41.7374710Z [3977/5905] 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 2024-06-26T05:40:41.7517620Z [3978/5905] 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 2024-06-26T05:40:41.7761070Z [3979/5905] 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 2024-06-26T05:40:41.7779820Z [3980/5905] 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 2024-06-26T05:40:41.7962540Z [3981/5905] 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 2024-06-26T05:40:41.7969830Z [3982/5905] 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 2024-06-26T05:40:41.7987660Z [3983/5905] 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 2024-06-26T05:40:41.8787260Z [3984/5905] 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 2024-06-26T05:40:41.8959460Z [3985/5905] 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 2024-06-26T05:40:41.9198510Z [3986/5905] 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 2024-06-26T05:40:41.9364080Z [3987/5905] 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 2024-06-26T05:40:41.9375220Z [3988/5905] 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 2024-06-26T05:40:41.9583390Z [3989/5905] 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 2024-06-26T05:40:41.9599500Z [3990/5905] 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 2024-06-26T05:40:41.9777110Z [3991/5905] 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 2024-06-26T05:40:41.9976140Z [3992/5905] 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 2024-06-26T05:40:41.9978640Z [3993/5905] 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 2024-06-26T05:40:42.0773060Z [3994/5905] 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 2024-06-26T05:40:42.1037860Z [3995/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2s4-minmax-fp32-neonv8-mlal.c.o 2024-06-26T05:40:42.1254560Z [3996/5905] 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 2024-06-26T05:40:42.1311610Z [3997/5905] 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 2024-06-26T05:40:42.1330340Z [3998/5905] 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 2024-06-26T05:40:42.1340120Z [3999/5905] 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 2024-06-26T05:40:42.1574220Z [4000/5905] 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 2024-06-26T05:40:42.1778410Z [4001/5905] 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 2024-06-26T05:40:42.2066180Z [4002/5905] 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 2024-06-26T05:40:42.2141970Z [4003/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2024-06-26T05:40:42.2903490Z [4004/5905] 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 2024-06-26T05:40:42.3055080Z [4005/5905] 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 2024-06-26T05:40:42.3215710Z [4006/5905] 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 2024-06-26T05:40:42.3231090Z [4007/5905] 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 2024-06-26T05:40:42.3288090Z [4008/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2s4-minmax-fp32-neonv8-mlal.c.o 2024-06-26T05:40:42.3479370Z [4009/5905] 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 2024-06-26T05:40:42.3501720Z [4010/5905] 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 2024-06-26T05:40:42.3789320Z [4011/5905] 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 2024-06-26T05:40:42.4378660Z [4012/5905] 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 2024-06-26T05:40:42.4409560Z [4013/5905] 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 2024-06-26T05:40:42.4950830Z [4014/5905] 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 2024-06-26T05:40:42.5023430Z [4015/5905] 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 2024-06-26T05:40:42.5102720Z [4016/5905] 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 2024-06-26T05:40:42.5215880Z [4017/5905] 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 2024-06-26T05:40:42.5322780Z [4018/5905] 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 2024-06-26T05:40:42.5519250Z [4019/5905] 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 2024-06-26T05:40:42.5539060Z [4020/5905] 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 2024-06-26T05:40:42.5637280Z [4021/5905] 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 2024-06-26T05:40:42.6364750Z [4022/5905] 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 2024-06-26T05:40:42.6624940Z [4023/5905] 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 2024-06-26T05:40:42.6678630Z [4024/5905] 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 2024-06-26T05:40:42.6888410Z [4025/5905] 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 2024-06-26T05:40:42.7167550Z [4026/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld64-u16.c.o 2024-06-26T05:40:42.7335570Z [4027/5905] 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 2024-06-26T05:40:42.7387790Z [4028/5905] 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 2024-06-26T05:40:42.7570350Z [4029/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld64-u8.c.o 2024-06-26T05:40:42.7676280Z [4030/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld128-u16.c.o 2024-06-26T05:40:42.8006930Z [4031/5905] 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 2024-06-26T05:40:42.8117670Z [4032/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:42.8273860Z [4033/5905] 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 2024-06-26T05:40:42.8501540Z [4034/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:42.8586930Z [4035/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:42.8747860Z [4036/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr1-lut64-p2-nr2recps.c.o 2024-06-26T05:40:42.8916010Z [4037/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr1-lut2048-p1-nr2fma.c.o 2024-06-26T05:40:42.9191180Z [4038/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma.c.o 2024-06-26T05:40:42.9242310Z [4039/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr1-lut2048-p1-nr2recps.c.o 2024-06-26T05:40:42.9761940Z [4040/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr1-p5-nr1recps1fma.c.o 2024-06-26T05:40:42.9771430Z [4041/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr1-p5-nr2fma.c.o 2024-06-26T05:40:43.0051760Z [4042/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr2-lut64-p2-nr2recps.c.o 2024-06-26T05:40:43.0060580Z [4043/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr2-lut2048-p1-nr1recps1fma.c.o 2024-06-26T05:40:43.0336540Z [4044/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr1-p5-nr2recps.c.o 2024-06-26T05:40:43.0416640Z [4045/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr2-lut2048-p1-nr2fma.c.o 2024-06-26T05:40:43.0616130Z [4046/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr2-lut64-p2-nr1recps1fma.c.o 2024-06-26T05:40:43.0690900Z [4047/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr2-lut2048-p1-nr2recps.c.o 2024-06-26T05:40:43.0821640Z [4048/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr2-p5-nr1recps1fma.c.o 2024-06-26T05:40:43.0849240Z [4049/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr2-lut64-p2-nr2fma.c.o 2024-06-26T05:40:43.1186280Z [4050/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sqrt-neonfma-nr1rsqrts1fma1adj.c.o 2024-06-26T05:40:43.1474470Z [4051/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr2-p5-nr2recps.c.o 2024-06-26T05:40:43.1552460Z [4052/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sqrt-neonfma-nr1fma.c.o 2024-06-26T05:40:43.2124670Z [4053/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sqrt-neonfma-nr2fma1adj.c.o 2024-06-26T05:40:43.2250800Z [4054/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sqrt-neonfma-nr2fma.c.o 2024-06-26T05:40:43.2326210Z [4055/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sqrt-neonfma-nr3fma.c.o 2024-06-26T05:40:43.2359610Z [4056/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-neonfma-rr2-p5-nr2fma.c.o 2024-06-26T05:40:43.2483220Z [4057/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neonfma-expm1minus-rr1-lut8-p4h2ts-nr2fma.c.o 2024-06-26T05:40:43.2534500Z [4058/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neonfma-expm1minus-rr1-lut8-p4h2ts-nr1recps1fma.c.o 2024-06-26T05:40:43.2612820Z [4059/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neonfma-expm1minus-rr1-lut8-p4h2ts-nr2recps.c.o 2024-06-26T05:40:43.2620070Z [4060/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neonfma-expm1minus-rr1-lut8-p4h3ps-nr1recps1fma.c.o 2024-06-26T05:40:43.3251860Z [4061/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neonfma-expm1minus-rr1-lut8-p4h3ps-nr2fma.c.o 2024-06-26T05:40:43.3349600Z [4062/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neonfma-expm1minus-rr1-lut8-p4h3ps-nr1recps1fmaadj.c.o 2024-06-26T05:40:43.3640460Z [4063/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neonfma-expm1minus-rr1-lut8-p4h3ps-nr2fmaadj.c.o 2024-06-26T05:40:43.4020830Z [4064/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neonfma-expm1minus-rr1-lut8-p4h3ps-nr2recps.c.o 2024-06-26T05:40:43.4199950Z [4065/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neonfma-expm1minus-rr1-p6h5ts-nr1recps1fma.c.o 2024-06-26T05:40:43.4267330Z [4066/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neonfma-expm1minus-rr1-lut8-p4h3ps-nr2recpsadj.c.o 2024-06-26T05:40:43.4374540Z [4067/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neonfma-expm1minus-rr1-p6h5ts-nr2fmaadj.c.o 2024-06-26T05:40:43.4501950Z [4068/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neonfma-expm1minus-rr1-p6h5ts-nr1recps1fmaadj.c.o 2024-06-26T05:40:43.4639640Z [4069/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neonfma-expm1minus-rr1-p6h5ts-nr2recps.c.o 2024-06-26T05:40:43.4811400Z [4070/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neonfma-expm1minus-rr1-p6h5ts-nr2fma.c.o 2024-06-26T05:40:43.5027880Z [4071/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u8.c.o 2024-06-26T05:40:43.5269620Z [4072/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-neonfma-expm1minus-rr1-p6h5ts-nr2recpsadj.c.o 2024-06-26T05:40:43.5533040Z [4073/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u8.c.o 2024-06-26T05:40:43.5600440Z [4074/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u16.c.o 2024-06-26T05:40:43.6101490Z [4075/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u8.c.o 2024-06-26T05:40:43.6136730Z [4076/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u24.c.o 2024-06-26T05:40:43.6274680Z [4077/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u32.c.o 2024-06-26T05:40:43.6309200Z [4078/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u24.c.o 2024-06-26T05:40:43.6418690Z [4079/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u32.c.o 2024-06-26T05:40:43.6673610Z [4080/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u4.c.o 2024-06-26T05:40:43.6675570Z [4081/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u16.c.o 2024-06-26T05:40:43.6868170Z [4082/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u4.c.o 2024-06-26T05:40:43.7086240Z [4083/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u4.c.o 2024-06-26T05:40:43.7357700Z [4084/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u8.c.o 2024-06-26T05:40:43.8121390Z [4085/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-qs8-cvt-neonv8.c.o 2024-06-26T05:40:43.8139620Z [4086/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-qu8-cvt-neonv8.c.o 2024-06-26T05:40:43.8264070Z [4087/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u4.c.o 2024-06-26T05:40:43.8306710Z [4088/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundd-neonv8.c.o 2024-06-26T05:40:43.8353840Z [4089/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundu-neonv8.c.o 2024-06-26T05:40:43.8523030Z [4090/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u8.c.o 2024-06-26T05:40:43.8559350Z [4091/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u8.c.o 2024-06-26T05:40:43.8613680Z [4092/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundne-neonv8.c.o 2024-06-26T05:40:43.8828610Z [4093/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-roundz-neonv8.c.o 2024-06-26T05:40:43.9780090Z [4094/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:43.9790700Z [4095/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:43.9862140Z [4096/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:43.9878790Z [4097/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:44.0340810Z [4098/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:44.0347830Z [4099/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:44.0394400Z [4100/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:44.0654790Z [4101/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:44.0901560Z [4102/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:44.1404790Z [4103/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:44.1631170Z [4104/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:44.1650500Z [4105/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:44.1756810Z [4106/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:44.1931010Z [4107/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:44.2120880Z [4108/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.2403120Z [4109/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:44.2510970Z [4110/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.2528900Z [4111/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x2-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:44.3005760Z [4112/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.3221330Z [4113/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:44.3348180Z [4114/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.3506680Z [4115/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x16-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.4143060Z [4116/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.4180500Z [4117/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:44.4259580Z [4118/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:44.4515200Z [4119/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:44.4520260Z [4120/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:44.4718450Z [4121/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.4769370Z [4122/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.4879250Z [4123/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:44.5079880Z [4124/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.5103490Z [4125/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.6290190Z [4126/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x16-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.6430430Z [4127/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:44.6494650Z [4128/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:44.6537750Z [4129/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.6627520Z [4130/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.6687850Z [4131/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:44.6771480Z [4132/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.7016410Z [4133/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.8034570Z [4134/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-aarch64-neonfma-prfm.c.o 2024-06-26T05:40:44.8038980Z [4135/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x2-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:44.8042160Z [4136/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.8215360Z [4137/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x16-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:44.8219640Z [4138/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-aarch64-neonfma.c.o 2024-06-26T05:40:44.8389910Z [4139/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-aarch64-neonfma-prfm.c.o 2024-06-26T05:40:44.8395270Z [4140/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:44.8763210Z [4141/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-aarch64-neonfma-prfm.c.o 2024-06-26T05:40:44.8769420Z [4142/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-aarch64-neonfma.c.o 2024-06-26T05:40:44.9027280Z [4143/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-aarch64-neonfma.c.o 2024-06-26T05:40:44.9802790Z [4144/5905] 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 2024-06-26T05:40:44.9866340Z [4145/5905] 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 2024-06-26T05:40:44.9919810Z [4146/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:45.0059180Z [4147/5905] 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 2024-06-26T05:40:45.0152100Z [4148/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:45.0269570Z [4149/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:45.0403250Z [4150/5905] 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 2024-06-26T05:40:45.0924270Z [4151/5905] 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 2024-06-26T05:40:45.1059500Z [4152/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:45.1351950Z [4153/5905] 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 2024-06-26T05:40:45.1871340Z [4154/5905] 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 2024-06-26T05:40:45.1909890Z [4155/5905] 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 2024-06-26T05:40:45.1950890Z [4156/5905] 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 2024-06-26T05:40:45.2110390Z [4157/5905] 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 2024-06-26T05:40:45.2203710Z [4158/5905] 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 2024-06-26T05:40:45.2321010Z [4159/5905] 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 2024-06-26T05:40:45.2739410Z [4160/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:45.3024090Z [4161/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x4-minmax-aarch64-neonfma.c.o 2024-06-26T05:40:45.3229580Z [4162/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x2-minmax-aarch64-neonfma.c.o 2024-06-26T05:40:45.3410470Z [4163/5905] 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 2024-06-26T05:40:45.3497710Z [4164/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-aarch64-neonfma.c.o 2024-06-26T05:40:45.3669550Z [4165/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x4-minmax-aarch64-neonfma.c.o 2024-06-26T05:40:45.3673270Z [4166/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x4-minmax-aarch64-neonfma.c.o 2024-06-26T05:40:45.3690620Z [4167/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-aarch64-neonfma.c.o 2024-06-26T05:40:45.4086720Z [4168/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x2-minmax-aarch64-neonfma.c.o 2024-06-26T05:40:45.4135180Z [4169/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x2-minmax-aarch64-neonfma.c.o 2024-06-26T05:40:45.4420780Z [4170/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x2-minmax-aarch64-neonfma.c.o 2024-06-26T05:40:45.4513690Z [4171/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x4-minmax-aarch64-neonfma.c.o 2024-06-26T05:40:45.4803130Z [4172/5905] 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 2024-06-26T05:40:45.4952570Z [4173/5905] 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 2024-06-26T05:40:45.4997060Z [4174/5905] 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 2024-06-26T05:40:45.5553500Z [4175/5905] 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 2024-06-26T05:40:45.5783230Z [4176/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut64-p2-div-u20.c.o 2024-06-26T05:40:45.5889140Z [4177/5905] 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 2024-06-26T05:40:45.5900010Z [4178/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut64-p2-div-u24.c.o 2024-06-26T05:40:45.6194370Z [4179/5905] 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 2024-06-26T05:40:45.6199080Z [4180/5905] 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 2024-06-26T05:40:45.6399890Z [4181/5905] 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 2024-06-26T05:40:45.6438130Z [4182/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut2048-p1-div-u20.c.o 2024-06-26T05:40:45.6658590Z [4183/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut2048-p1-div-u24.c.o 2024-06-26T05:40:45.6671380Z [4184/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u4.c.o 2024-06-26T05:40:45.7382750Z [4185/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u8.c.o 2024-06-26T05:40:45.7504790Z [4186/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u12.c.o 2024-06-26T05:40:45.7676400Z [4187/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u20.c.o 2024-06-26T05:40:45.7925030Z [4188/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u16.c.o 2024-06-26T05:40:45.8214040Z [4189/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-aarch64-neonfma-expm1minus-rr1-lut8-p4h3ts-div-u8.c.o 2024-06-26T05:40:45.8397400Z [4190/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u24.c.o 2024-06-26T05:40:45.8404870Z [4191/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-aarch64-neonfma-expm1minus-rr1-lut8-p4h3ts-div-u4.c.o 2024-06-26T05:40:45.8420150Z [4192/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-aarch64-neonfma-expm1minus-rr1-p6h5ts-div-u4.c.o 2024-06-26T05:40:45.8527130Z [4193/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-aarch64-neonfma-expm1minus-rr1-lut8-p4h3ts-div-u16.c.o 2024-06-26T05:40:45.8733100Z [4194/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-aarch64-neonfma-expm1minus-rr1-lut8-p4h3ts-div-u12.c.o 2024-06-26T05:40:45.9274410Z [4195/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-aarch64-neonfma-expm1minus-rr1-p6h5ts-div-u16.c.o 2024-06-26T05:40:45.9386760Z [4196/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-aarch64-neonfma-expm1minus-rr1-p6h5ts-div-u8.c.o 2024-06-26T05:40:45.9496670Z [4197/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-aarch64-neonfma-rr1-lut64-p2-div.c.o 2024-06-26T05:40:45.9841160Z [4198/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-aarch64-neonfma-rr1-lut2048-p1-div.c.o 2024-06-26T05:40:45.9855470Z [4199/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-aarch64-neonfma-expm1minus-rr1-p6h5ts-div-u12.c.o 2024-06-26T05:40:46.0123150Z [4200/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-aarch64-neonfma-rr1-p5-div.c.o 2024-06-26T05:40:46.0129110Z [4201/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-aarch64-neonfma-rr2-lut64-p2-div.c.o 2024-06-26T05:40:46.0178530Z [4202/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-aarch64-neonfma-rr2-lut2048-p1-div.c.o 2024-06-26T05:40:46.0447610Z [4203/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/f32-sigmoid-aarch64-neonfma-rr2-p5-div.c.o 2024-06-26T05:40:46.0600690Z [4204/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-aarch64-neonfma-expm1minus-rr1-lut8-p4h3ps-div.c.o 2024-06-26T05:40:46.1206630Z [4205/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-minmax-fp16arith-u1.c.o 2024-06-26T05:40:46.1341000Z [4206/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-minmax-fp16arith-u2.c.o 2024-06-26T05:40:46.1478000Z [4207/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/gen/f32-tanh-aarch64-neonfma-expm1minus-rr1-p6h5ts-div.c.o 2024-06-26T05:40:46.1717510Z [4208/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-minmax-fp16arith-u4.c.o 2024-06-26T05:40:46.1899460Z [4209/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-neonfp16arith.c.o 2024-06-26T05:40:46.2050670Z [4210/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld64-u16.c.o 2024-06-26T05:40:46.2080800Z [4211/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:46.2133710Z [4212/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld128-u16.c.o 2024-06-26T05:40:46.2384220Z [4213/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld64-u8.c.o 2024-06-26T05:40:46.2995780Z [4214/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:46.3252050Z [4215/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:46.3516730Z [4216/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:46.3573390Z [4217/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:46.3580170Z [4218/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:46.3583830Z [4219/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:46.3910440Z [4220/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:46.3915580Z [4221/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:46.4247960Z [4222/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:46.4521650Z [4223/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:46.5189750Z [4224/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:46.5234580Z [4225/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:46.5242890Z [4226/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-neonv8-c8.c.o 2024-06-26T05:40:46.5337800Z [4227/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:46.5439870Z [4228/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-neonv8-c24.c.o 2024-06-26T05:40:46.5444070Z [4229/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:46.5568980Z [4230/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2024-06-26T05:40:46.5663710Z [4231/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-neonv8-c16.c.o 2024-06-26T05:40:46.6405720Z [4232/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-neonv8-c32.c.o 2024-06-26T05:40:46.6443160Z [4233/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-neonv8-c8.c.o 2024-06-26T05:40:46.7117810Z [4234/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2024-06-26T05:40:46.7122570Z [4235/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld64-u8.c.o 2024-06-26T05:40:46.7430370Z [4236/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-fp32-neonv8-mlal-lane.c.o 2024-06-26T05:40:46.7549210Z [4237/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2024-06-26T05:40:46.7640410Z [4238/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-neonv8-c32.c.o 2024-06-26T05:40:46.7888970Z [4239/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-fp32-neonv8-mlal-lane.c.o 2024-06-26T05:40:46.7979160Z [4240/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-neonv8-c24.c.o 2024-06-26T05:40:46.8101050Z [4241/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld64-u16.c.o 2024-06-26T05:40:46.8132870Z [4242/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld128-u16.c.o 2024-06-26T05:40:46.8152690Z [4243/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-neonv8-c16.c.o 2024-06-26T05:40:46.8705060Z [4244/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld64-u8.c.o 2024-06-26T05:40:46.8755070Z [4245/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld64-u16.c.o 2024-06-26T05:40:46.9244600Z [4246/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld128-u16.c.o 2024-06-26T05:40:46.9262160Z [4247/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-aarch64-neon-u4.c.o 2024-06-26T05:40:46.9482270Z [4248/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-aarch64-neon-u4.c.o 2024-06-26T05:40:46.9800100Z [4249/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-aarch64-neon-u8.c.o 2024-06-26T05:40:46.9856480Z [4250/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-aarch64-neon-u8.c.o 2024-06-26T05:40:46.9880890Z [4251/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-aarch64-neon-u8.c.o 2024-06-26T05:40:46.9939070Z [4252/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-aarch64-neon-u4.c.o 2024-06-26T05:40:47.0242290Z [4253/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u4.c.o 2024-06-26T05:40:47.0598420Z [4254/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u8.c.o 2024-06-26T05:40:47.0705910Z [4255/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u16.c.o 2024-06-26T05:40:47.1022460Z [4256/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u32.c.o 2024-06-26T05:40:47.1129320Z [4257/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u16.c.o 2024-06-26T05:40:47.1229920Z [4258/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u48.c.o 2024-06-26T05:40:47.1636150Z [4259/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-aarch64-neonfma-2x2.c.o 2024-06-26T05:40:47.1644060Z [4260/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/x32-transposec-4x4-aarch64-neon-tbl128.c.o 2024-06-26T05:40:47.1929410Z [4261/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/x24-transposec-4x4-aarch64-neon-tbl128.c.o 2024-06-26T05:40:47.1939700Z [4262/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-aarch64-neonfma-2x1.c.o 2024-06-26T05:40:47.2098470Z [4263/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u64.c.o 2024-06-26T05:40:47.2639100Z [4264/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-aarch64-neonfma-2x1.c.o 2024-06-26T05:40:47.2677120Z [4265/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-aarch64-neonfma-2x2.c.o 2024-06-26T05:40:47.2932340Z [4266/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-aarch64-neonfma-2x1.c.o 2024-06-26T05:40:47.2936250Z [4267/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-aarch64-neonfma-2x2.c.o 2024-06-26T05:40:47.3281080Z [4268/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-aarch64-neonfma-2x1.c.o 2024-06-26T05:40:47.3302280Z [4269/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-aarch64-neonfma-2x2.c.o 2024-06-26T05:40:47.3602850Z [4270/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-aarch64-neonfma-2x2.c.o 2024-06-26T05:40:47.4188980Z [4271/5905] 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 2024-06-26T05:40:47.4233080Z [4272/5905] 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 2024-06-26T05:40:47.4374300Z [4273/5905] 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 2024-06-26T05:40:47.4430410Z [4274/5905] 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 2024-06-26T05:40:47.4538480Z [4275/5905] 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 2024-06-26T05:40:47.4621690Z [4276/5905] 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 2024-06-26T05:40:47.4626250Z [4277/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-3x4.c.o 2024-06-26T05:40:47.5525230Z [4278/5905] 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 2024-06-26T05:40:47.5625950Z [4279/5905] 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 2024-06-26T05:40:47.5803270Z [4280/5905] 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 2024-06-26T05:40:47.5987220Z [4281/5905] 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 2024-06-26T05:40:47.6028720Z [4282/5905] 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 2024-06-26T05:40:47.6140500Z [4283/5905] 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 2024-06-26T05:40:47.6252850Z [4284/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-2x4-acc2.c.o 2024-06-26T05:40:47.6450180Z [4285/5905] 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 2024-06-26T05:40:47.6461670Z [4286/5905] 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 2024-06-26T05:40:47.6565770Z [4287/5905] 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 2024-06-26T05:40:47.7668100Z [4288/5905] 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 2024-06-26T05:40:47.7694940Z [4289/5905] 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 2024-06-26T05:40:47.7889630Z [4290/5905] 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 2024-06-26T05:40:47.7905350Z [4291/5905] 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 2024-06-26T05:40:47.7918400Z [4292/5905] 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 2024-06-26T05:40:47.8141190Z [4293/5905] 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 2024-06-26T05:40:47.8155860Z [4294/5905] 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 2024-06-26T05:40:47.8457900Z [4295/5905] 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 2024-06-26T05:40:47.8751530Z [4296/5905] 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 2024-06-26T05:40:47.8754480Z [4297/5905] 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 2024-06-26T05:40:47.9646050Z [4298/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-4x4.c.o 2024-06-26T05:40:47.9740870Z [4299/5905] 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 2024-06-26T05:40:47.9817050Z [4300/5905] 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 2024-06-26T05:40:47.9870360Z [4301/5905] 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 2024-06-26T05:40:48.0091030Z [4302/5905] 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 2024-06-26T05:40:48.0103740Z [4303/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4-acc2.c.o 2024-06-26T05:40:48.0313980Z [4304/5905] 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 2024-06-26T05:40:48.0335990Z [4305/5905] 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 2024-06-26T05:40:48.0912190Z [4306/5905] 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 2024-06-26T05:40:48.1228870Z [4307/5905] 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 2024-06-26T05:40:48.1400820Z [4308/5905] 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 2024-06-26T05:40:48.1786050Z [4309/5905] 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 2024-06-26T05:40:48.1887580Z [4310/5905] 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 2024-06-26T05:40:48.1898770Z [4311/5905] 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 2024-06-26T05:40:48.2056410Z [4312/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:48.2234380Z [4313/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:48.2239920Z [4314/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x16-minmax-aarch64-neonfma-lane-ld128.c.o 2024-06-26T05:40:48.2726230Z [4315/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2024-06-26T05:40:48.2986760Z [4316/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u1.c.o 2024-06-26T05:40:48.3468750Z [4317/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u4.c.o 2024-06-26T05:40:48.3488830Z [4318/5905] 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 2024-06-26T05:40:48.3656330Z [4319/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x16c4-minmax-neondotfp16arith.c.o 2024-06-26T05:40:48.3732160Z [4320/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u2.c.o 2024-06-26T05:40:48.3829540Z [4321/5905] 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 2024-06-26T05:40:48.3952800Z [4322/5905] 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 2024-06-26T05:40:48.4035220Z [4323/5905] 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 2024-06-26T05:40:48.4040490Z [4324/5905] 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 2024-06-26T05:40:48.4712400Z [4325/5905] 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 2024-06-26T05:40:48.5027700Z [4326/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x16c4-minmax-neondotfp16arith.c.o 2024-06-26T05:40:48.5335430Z [4327/5905] 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 2024-06-26T05:40:48.5525140Z [4328/5905] 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 2024-06-26T05:40:48.5701620Z [4329/5905] 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 2024-06-26T05:40:48.5886480Z [4330/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x16c4-minmax-neondotfp16arith.c.o 2024-06-26T05:40:48.5981890Z [4331/5905] 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 2024-06-26T05:40:48.6133560Z [4332/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c4-minmax-neondotfp16arith.c.o 2024-06-26T05:40:48.6271580Z [4333/5905] 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 2024-06-26T05:40:48.6381460Z [4334/5905] 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 2024-06-26T05:40:48.6921070Z [4335/5905] 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 2024-06-26T05:40:48.7211810Z [4336/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x8c4-minmax-neondotfp16arith.c.o 2024-06-26T05:40:48.7248520Z [4337/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x16c4-minmax-neondotfp16arith.c.o 2024-06-26T05:40:48.7546420Z [4338/5905] 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 2024-06-26T05:40:48.7939330Z [4339/5905] 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 2024-06-26T05:40:48.7984460Z [4340/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c4-minmax-neondotfp16arith.c.o 2024-06-26T05:40:48.8012550Z [4341/5905] 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 2024-06-26T05:40:48.8028770Z [4342/5905] 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 2024-06-26T05:40:48.8233930Z [4343/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x16c4-minmax-neondotfp16arith.c.o 2024-06-26T05:40:48.8384060Z [4344/5905] 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 2024-06-26T05:40:48.8580300Z [4345/5905] 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 2024-06-26T05:40:48.8819410Z [4346/5905] 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 2024-06-26T05:40:48.8911910Z [4347/5905] 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 2024-06-26T05:40:48.9249980Z [4348/5905] 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 2024-06-26T05:40:49.0051380Z [4349/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x8c4-minmax-neondotfp16arith.c.o 2024-06-26T05:40:49.0137920Z [4350/5905] 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 2024-06-26T05:40:49.0187220Z [4351/5905] 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 2024-06-26T05:40:49.0240830Z [4352/5905] 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 2024-06-26T05:40:49.0442790Z [4353/5905] 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 2024-06-26T05:40:49.0446990Z [4354/5905] 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 2024-06-26T05:40:49.0449330Z [4355/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x16c4-minmax-neondotfp16arith.c.o 2024-06-26T05:40:49.1380920Z [4356/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-neonfp16arith-c8.c.o 2024-06-26T05:40:49.1420220Z [4357/5905] 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 2024-06-26T05:40:49.1691030Z [4358/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-conv-hwc2chw/f16-conv-hwc2chw-3x3s2p1c3x4-neonfp16arith-2x2.c.o 2024-06-26T05:40:49.1695020Z [4359/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-avgpool/f16-avgpool-9x-minmax-neonfp16arith-c8.c.o 2024-06-26T05:40:49.1699850Z [4360/5905] 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 2024-06-26T05:40:49.2041050Z [4361/5905] 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 2024-06-26T05:40:49.2051690Z [4362/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-1x8.c.o 2024-06-26T05:40:49.2141750Z [4363/5905] 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 2024-06-26T05:40:49.2359820Z [4364/5905] 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 2024-06-26T05:40:49.2466250Z [4365/5905] 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 2024-06-26T05:40:49.3469740Z [4366/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-6x8.c.o 2024-06-26T05:40:49.3617980Z [4367/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-3x8.c.o 2024-06-26T05:40:49.3647030Z [4368/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-5x8.c.o 2024-06-26T05:40:49.3659920Z [4369/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-4x8.c.o 2024-06-26T05:40:49.3860800Z [4370/5905] 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 2024-06-26T05:40:49.3977150Z [4371/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-2x8.c.o 2024-06-26T05:40:49.3998480Z [4372/5905] 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 2024-06-26T05:40:49.4264440Z [4373/5905] 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 2024-06-26T05:40:49.4596020Z [4374/5905] 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 2024-06-26T05:40:49.4690450Z [4375/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-1x8.c.o 2024-06-26T05:40:49.5066490Z [4376/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-2x8.c.o 2024-06-26T05:40:49.5331520Z [4377/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-4x8.c.o 2024-06-26T05:40:49.5492030Z [4378/5905] 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 2024-06-26T05:40:49.5677720Z [4379/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-3x8.c.o 2024-06-26T05:40:49.5887350Z [4380/5905] 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 2024-06-26T05:40:49.6096280Z [4381/5905] 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 2024-06-26T05:40:49.6210040Z [4382/5905] 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 2024-06-26T05:40:49.6443250Z [4383/5905] 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 2024-06-26T05:40:49.6798040Z [4384/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8.c.o 2024-06-26T05:40:49.6824300Z [4385/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-2x8.c.o 2024-06-26T05:40:49.7063300Z [4386/5905] 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 2024-06-26T05:40:49.7233110Z [4387/5905] 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 2024-06-26T05:40:49.7487460Z [4388/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-3x8.c.o 2024-06-26T05:40:49.7673930Z [4389/5905] 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 2024-06-26T05:40:49.7891370Z [4390/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-5x8.c.o 2024-06-26T05:40:49.7903230Z [4391/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-4x8.c.o 2024-06-26T05:40:49.7916210Z [4392/5905] 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 2024-06-26T05:40:49.8241320Z [4393/5905] 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 2024-06-26T05:40:49.8786770Z [4394/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8.c.o 2024-06-26T05:40:49.8798840Z [4395/5905] 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 2024-06-26T05:40:49.9056840Z [4396/5905] 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 2024-06-26T05:40:49.9062210Z [4397/5905] 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 2024-06-26T05:40:49.9258220Z [4398/5905] 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 2024-06-26T05:40:49.9825840Z [4399/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-2x8.c.o 2024-06-26T05:40:49.9917740Z [4400/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:49.9942930Z [4401/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.0215060Z [4402/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-3x8.c.o 2024-06-26T05:40:50.0280330Z [4403/5905] 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 2024-06-26T05:40:50.0632590Z [4404/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.0770650Z [4405/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.0855400Z [4406/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.1021730Z [4407/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.1345330Z [4408/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.1760330Z [4409/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.1825150Z [4410/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.2011410Z [4411/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.2027570Z [4412/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.2107040Z [4413/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.3082390Z [4414/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l16c8s4r-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.3279700Z [4415/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l32c8s4r-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.3289590Z [4416/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l16c8s4r-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.3313210Z [4417/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l8c8s4r-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.3364390Z [4418/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l8c8s4r-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.3475030Z [4419/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l32c8s4r-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.3668360Z [4420/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l8c8s4r-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.3728680Z [4421/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l16c8s4r-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.3912110Z [4422/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l16c8s4r-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.4079000Z [4423/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l8c8s4r-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.5129550Z [4424/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l8c8s4r-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.5157190Z [4425/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l32c8s4r-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.5303600Z [4426/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l16c8s4r-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.5316230Z [4427/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l16c8s4r-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.5381580Z [4428/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l8c8s4r-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.5418870Z [4429/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l32c8s4r-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.5548150Z [4430/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l32c8s4r-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.5834820Z [4431/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l32c8s4r-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.6091370Z [4432/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.6240790Z [4433/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.7120430Z [4434/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.7369540Z [4435/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.7373480Z [4436/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.7418960Z [4437/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.7611600Z [4438/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.7628850Z [4439/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-neonfp16arith-acc2.c.o 2024-06-26T05:40:50.7637160Z [4440/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.7680450Z [4441/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-neonfp16arith.c.o 2024-06-26T05:40:50.7912830Z [4442/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-minmax-fp16arith-u2.c.o 2024-06-26T05:40:50.7960950Z [4443/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-minmax-fp16arith-u1.c.o 2024-06-26T05:40:50.8869230Z [4444/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-minmax-fp16arith-u4.c.o 2024-06-26T05:40:50.9244400Z [4445/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-minmax-fp16arith-u1.c.o 2024-06-26T05:40:50.9414980Z [4446/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u1.c.o 2024-06-26T05:40:50.9444560Z [4447/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-minmax-fp16arith-u4.c.o 2024-06-26T05:40:50.9548830Z [4448/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-minmax-fp16arith-u1.c.o 2024-06-26T05:40:50.9554040Z [4449/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-minmax-fp16arith-u2.c.o 2024-06-26T05:40:50.9628650Z [4450/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-minmax-fp16arith-u2.c.o 2024-06-26T05:40:50.9782420Z [4451/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-minmax-fp16arith-u4.c.o 2024-06-26T05:40:50.9785820Z [4452/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u2.c.o 2024-06-26T05:40:51.0276630Z [4453/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-minmax-fp16arith-u2.c.o 2024-06-26T05:40:51.0919730Z [4454/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u4.c.o 2024-06-26T05:40:51.1095370Z [4455/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u1.c.o 2024-06-26T05:40:51.1233690Z [4456/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u2.c.o 2024-06-26T05:40:51.1358170Z [4457/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u4.c.o 2024-06-26T05:40:51.1361530Z [4458/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u2.c.o 2024-06-26T05:40:51.1395030Z [4459/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u4.c.o 2024-06-26T05:40:51.1628500Z [4460/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u2.c.o 2024-06-26T05:40:51.1633800Z [4461/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u1.c.o 2024-06-26T05:40:51.1643080Z [4462/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u1.c.o 2024-06-26T05:40:51.2336900Z [4463/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u4.c.o 2024-06-26T05:40:51.2690430Z [4464/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-minmax-fp16arith-u1.c.o 2024-06-26T05:40:51.2706310Z [4465/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-minmax-fp16arith-u4.c.o 2024-06-26T05:40:51.3111490Z [4466/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-minmax-fp16arith-u1.c.o 2024-06-26T05:40:51.3279640Z [4467/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-minmax-fp16arith-u1.c.o 2024-06-26T05:40:51.3538080Z [4468/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-minmax-fp16arith-u4.c.o 2024-06-26T05:40:51.3543110Z [4469/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-minmax-fp16arith-u1.c.o 2024-06-26T05:40:51.3795760Z [4470/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-minmax-fp16arith-u2.c.o 2024-06-26T05:40:51.3813560Z [4471/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-minmax-fp16arith-u2.c.o 2024-06-26T05:40:51.4060080Z [4472/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-minmax-fp16arith-u4.c.o 2024-06-26T05:40:51.4240590Z [4473/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-minmax-fp16arith-u2.c.o 2024-06-26T05:40:51.4419280Z [4474/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u1.c.o 2024-06-26T05:40:51.4794720Z [4475/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u4.c.o 2024-06-26T05:40:51.4873680Z [4476/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-minmax-fp16arith-u4.c.o 2024-06-26T05:40:51.4893600Z [4477/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u2.c.o 2024-06-26T05:40:51.5288420Z [4478/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u2.c.o 2024-06-26T05:40:51.5415080Z [4479/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u1.c.o 2024-06-26T05:40:51.5582760Z [4480/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-minmax-fp16arith-u1.c.o 2024-06-26T05:40:51.5636660Z [4481/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u4.c.o 2024-06-26T05:40:51.6059560Z [4482/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-minmax-fp16arith-u2.c.o 2024-06-26T05:40:51.6289610Z [4483/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-minmax-fp16arith-u1.c.o 2024-06-26T05:40:51.6351010Z [4484/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-minmax-fp16arith-u4.c.o 2024-06-26T05:40:51.6651770Z [4485/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-minmax-fp16arith-u2.c.o 2024-06-26T05:40:51.6898400Z [4486/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-minmax-fp16arith-u4.c.o 2024-06-26T05:40:51.6912120Z [4487/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24-acc2.c.o 2024-06-26T05:40:51.7195350Z [4488/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24-acc3.c.o 2024-06-26T05:40:51.7252920Z [4489/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32-acc4.c.o 2024-06-26T05:40:51.7497340Z [4490/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32-acc2.c.o 2024-06-26T05:40:51.7533690Z [4491/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24.c.o 2024-06-26T05:40:51.7567150Z [4492/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32.c.o 2024-06-26T05:40:51.7870530Z [4493/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64-acc2.c.o 2024-06-26T05:40:51.7872770Z [4494/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64-acc4.c.o 2024-06-26T05:40:51.8179400Z [4495/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64.c.o 2024-06-26T05:40:51.8538330Z [4496/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u8.c.o 2024-06-26T05:40:51.8748110Z [4497/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24-acc2.c.o 2024-06-26T05:40:51.8832600Z [4498/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u16-acc1.c.o 2024-06-26T05:40:51.9125950Z [4499/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24-acc3.c.o 2024-06-26T05:40:51.9348210Z [4500/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u16-acc2.c.o 2024-06-26T05:40:51.9420090Z [4501/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc2.c.o 2024-06-26T05:40:51.9583670Z [4502/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc4.c.o 2024-06-26T05:40:51.9665020Z [4503/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32.c.o 2024-06-26T05:40:51.9770480Z [4504/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24.c.o 2024-06-26T05:40:51.9937420Z [4505/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64-acc2.c.o 2024-06-26T05:40:52.0574150Z [4506/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64.c.o 2024-06-26T05:40:52.0586130Z [4507/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64-acc4.c.o 2024-06-26T05:40:52.0702400Z [4508/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u24-acc3.c.o 2024-06-26T05:40:52.0721380Z [4509/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u8.c.o 2024-06-26T05:40:52.0855250Z [4510/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u16-acc2.c.o 2024-06-26T05:40:52.1129640Z [4511/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u32-acc2.c.o 2024-06-26T05:40:52.1624090Z [4512/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith-pipelined.c.o 2024-06-26T05:40:52.1724280Z [4513/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith-x2.c.o 2024-06-26T05:40:52.1888280Z [4514/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u32-acc4.c.o 2024-06-26T05:40:52.1903520Z [4515/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith.c.o 2024-06-26T05:40:52.2263620Z [4516/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith-pipelined.c.o 2024-06-26T05:40:52.2445890Z [4517/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith-x2.c.o 2024-06-26T05:40:52.2500440Z [4518/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith.c.o 2024-06-26T05:40:52.2755220Z [4519/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith.c.o 2024-06-26T05:40:52.2943360Z [4520/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith-pipelined.c.o 2024-06-26T05:40:52.2957590Z [4521/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith-x2.c.o 2024-06-26T05:40:52.3152840Z [4522/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-x2.c.o 2024-06-26T05:40:52.3463940Z [4523/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-pipelined.c.o 2024-06-26T05:40:52.3675830Z [4524/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith.c.o 2024-06-26T05:40:52.3778830Z [4525/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-minmax-neonfp16arith-u8.c.o 2024-06-26T05:40:52.3889840Z [4526/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-minmax-neonfp16arith-u16.c.o 2024-06-26T05:40:52.4341970Z [4527/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-minmax-neonfp16arith-u8.c.o 2024-06-26T05:40:52.4542490Z [4528/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u8.c.o 2024-06-26T05:40:52.4742920Z [4529/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-minmax-neonfp16arith-u16.c.o 2024-06-26T05:40:52.4847560Z [4530/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u8.c.o 2024-06-26T05:40:52.4942750Z [4531/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u16.c.o 2024-06-26T05:40:52.5049780Z [4532/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u8.c.o 2024-06-26T05:40:52.5140420Z [4533/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u16.c.o 2024-06-26T05:40:52.5274960Z [4534/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u16.c.o 2024-06-26T05:40:52.5379440Z [4535/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u8.c.o 2024-06-26T05:40:52.5597030Z [4536/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u16.c.o 2024-06-26T05:40:52.6293280Z [4537/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u80.c.o 2024-06-26T05:40:52.6383830Z [4538/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7p7x-minmax-neonfp16arith-c16.c.o 2024-06-26T05:40:52.6408070Z [4539/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7p7x-minmax-neonfp16arith-c8.c.o 2024-06-26T05:40:52.6636200Z [4540/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u8.c.o 2024-06-26T05:40:52.6642730Z [4541/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool-cw/f16-gavgpool-cw-neonfp16arith-u8.c.o 2024-06-26T05:40:52.6842570Z [4542/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7p7x-minmax-neonfp16arith-c32.c.o 2024-06-26T05:40:52.6858160Z [4543/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7x-minmax-neonfp16arith-c16.c.o 2024-06-26T05:40:52.7053350Z [4544/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7x-minmax-neonfp16arith-c24.c.o 2024-06-26T05:40:52.7080830Z [4545/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7x-minmax-neonfp16arith-c8.c.o 2024-06-26T05:40:52.7398340Z [4546/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7p7x-minmax-neonfp16arith-c24.c.o 2024-06-26T05:40:52.8012730Z [4547/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7x-minmax-neonfp16arith-c32.c.o 2024-06-26T05:40:52.8101500Z [4548/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:52.8375240Z [4549/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:52.8969800Z [4550/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x8-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:52.8978210Z [4551/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:52.8982050Z [4552/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:52.9061770Z [4553/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x8-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:52.9187940Z [4554/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x8-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:52.9191500Z [4555/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:52.9289340Z [4556/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x16-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:52.9991170Z [4557/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x16-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:53.0295570Z [4558/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x8-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:53.0410690Z [4559/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x16-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:53.0651330Z [4560/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p4.c.o 2024-06-26T05:40:53.0693170Z [4561/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p8.c.o 2024-06-26T05:40:53.0886970Z [4562/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p16.c.o 2024-06-26T05:40:53.0909190Z [4563/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x8-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:53.1167450Z [4564/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:53.1293090Z [4565/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x8-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:53.1644860Z [4566/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x16-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:53.1781870Z [4567/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c16.c.o 2024-06-26T05:40:53.1940130Z [4568/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c8.c.o 2024-06-26T05:40:53.2097220Z [4569/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-1x8-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:53.2217270Z [4570/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-1x16-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:53.2259560Z [4571/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x8-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:53.2646940Z [4572/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x16-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:53.2965050Z [4573/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-6x16-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:53.3040220Z [4574/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-6x8-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:53.3678680Z [4575/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-8x8-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:53.3742310Z [4576/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-pavgpool/f16-pavgpool-9x-minmax-neonfp16arith-c8.c.o 2024-06-26T05:40:53.3830780Z [4577/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-prelu/gen/f16-prelu-neonfp16arith-2x16.c.o 2024-06-26T05:40:53.3975630Z [4578/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-8x16-minmax-neonfp16arith-ld64.c.o 2024-06-26T05:40:53.4077590Z [4579/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-maxpool/f16-maxpool-9p8x-minmax-neonfp16arith-c8.c.o 2024-06-26T05:40:53.4173930Z [4580/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-prelu/gen/f16-prelu-neonfp16arith-2x8.c.o 2024-06-26T05:40:53.4194290Z [4581/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-pavgpool/f16-pavgpool-9p8x-minmax-neonfp16arith-c8.c.o 2024-06-26T05:40:53.4375650Z [4582/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u16.c.o 2024-06-26T05:40:53.4526760Z [4583/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u8.c.o 2024-06-26T05:40:53.4620490Z [4584/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u24.c.o 2024-06-26T05:40:53.5489820Z [4585/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u32.c.o 2024-06-26T05:40:53.5589010Z [4586/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u64.c.o 2024-06-26T05:40:53.5708350Z [4587/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32-acc2.c.o 2024-06-26T05:40:53.5815430Z [4588/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40-acc5.c.o 2024-06-26T05:40:53.5917200Z [4589/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32.c.o 2024-06-26T05:40:53.5931010Z [4590/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40.c.o 2024-06-26T05:40:53.6224650Z [4591/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40-acc2.c.o 2024-06-26T05:40:53.6267380Z [4592/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32-acc4.c.o 2024-06-26T05:40:53.6554460Z [4593/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48-acc2.c.o 2024-06-26T05:40:53.6790300Z [4594/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48-acc3.c.o 2024-06-26T05:40:53.7024060Z [4595/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64-acc2.c.o 2024-06-26T05:40:53.7099460Z [4596/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48.c.o 2024-06-26T05:40:53.7402680Z [4597/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64-acc4.c.o 2024-06-26T05:40:53.7668910Z [4598/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u72-acc3.c.o 2024-06-26T05:40:53.7695750Z [4599/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u72.c.o 2024-06-26T05:40:53.7708860Z [4600/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64.c.o 2024-06-26T05:40:53.7991600Z [4601/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80-acc5.c.o 2024-06-26T05:40:53.8158750Z [4602/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80.c.o 2024-06-26T05:40:53.8423230Z [4603/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80-acc2.c.o 2024-06-26T05:40:53.8614450Z [4604/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc2.c.o 2024-06-26T05:40:53.8910940Z [4605/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc3.c.o 2024-06-26T05:40:53.9099060Z [4606/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc6.c.o 2024-06-26T05:40:53.9105020Z [4607/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96.c.o 2024-06-26T05:40:53.9342050Z [4608/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u16-acc2.c.o 2024-06-26T05:40:53.9414210Z [4609/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u16-acc1.c.o 2024-06-26T05:40:53.9548250Z [4610/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u24-acc2.c.o 2024-06-26T05:40:53.9569620Z [4611/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u8.c.o 2024-06-26T05:40:53.9872850Z [4612/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u24-acc3.c.o 2024-06-26T05:40:54.0362210Z [4613/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u24.c.o 2024-06-26T05:40:54.0641610Z [4614/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc4.c.o 2024-06-26T05:40:54.0851380Z [4615/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc2.c.o 2024-06-26T05:40:54.0874860Z [4616/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u64-acc2.c.o 2024-06-26T05:40:54.1005450Z [4617/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32.c.o 2024-06-26T05:40:54.1189730Z [4618/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u64.c.o 2024-06-26T05:40:54.1207850Z [4619/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u8.c.o 2024-06-26T05:40:54.1414470Z [4620/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u16-acc2.c.o 2024-06-26T05:40:54.1437940Z [4621/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u16-acc1.c.o 2024-06-26T05:40:54.1702790Z [4622/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u64-acc4.c.o 2024-06-26T05:40:54.1850240Z [4623/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-minmax-neonfp16arith-u8.c.o 2024-06-26T05:40:54.2023290Z [4624/5905] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u16.c.o 2024-06-26T05:40:54.2165910Z [4625/5905] Building C object sleef/src/common/CMakeFiles/addSuffix.dir/addSuffix.c.o 2024-06-26T05:40:54.2226760Z [4626/5905] Building C object sleef/src/common/CMakeFiles/arraymap.dir/arraymap.c.o 2024-06-26T05:40:54.2504270Z [4627/5905] Building C object sleef/src/common/CMakeFiles/common.dir/common.c.o 2024-06-26T05:40:54.2550350Z [4628/5905] Generating ../../../torch/utils/data/datapipes/datapipe.pyi 2024-06-26T05:40:54.2796070Z [4629/5905] Building C object sleef/src/libm/CMakeFiles/mkrename.dir/mkrename.c.o 2024-06-26T05:40:54.2913100Z [4630/5905] Building C object sleef/src/libm/CMakeFiles/mkmasked_gnuabi.dir/mkmasked_gnuabi.c.o 2024-06-26T05:40:54.2931670Z [4631/5905] Building C object sleef/src/libm/CMakeFiles/mkrename_gnuabi.dir/mkrename_gnuabi.c.o 2024-06-26T05:40:54.3607380Z [4632/5905] Building C object sleef/src/libm/CMakeFiles/mkalias.dir/mkalias.c.o 2024-06-26T05:40:54.3675180Z [4633/5905] Linking C executable sleef/bin/addSuffix 2024-06-26T05:40:54.4054670Z [4634/5905] Building C object caffe2/CMakeFiles/torch_global_deps.dir/__/torch/csrc/empty.c.o 2024-06-26T05:40:54.4312260Z [4635/5905] Linking C executable sleef/bin/mkrename 2024-06-26T05:40:54.4343380Z [4636/5905] Linking C executable sleef/bin/mkmasked_gnuabi 2024-06-26T05:40:54.4389820Z [4637/5905] Building C object sleef/src/libm/CMakeFiles/mkdisp.dir/mkdisp.c.o 2024-06-26T05:40:54.4405850Z [4638/5905] Linking C executable sleef/bin/mkrename_gnuabi 2024-06-26T05:40:54.4775760Z [4639/5905] Linking C executable sleef/bin/mkalias 2024-06-26T05:40:54.5129190Z [4640/5905] Generating include/renamedspscalar.h 2024-06-26T05:40:54.5137470Z [4641/5905] Generating include/renameadvsimd.h 2024-06-26T05:40:54.5144380Z Generating renameadvsimd.h: mkrename finz_ 2 4 advsimd 2024-06-26T05:40:54.5151900Z [4642/5905] Generating sleeflibm_SVE.h.tmp 2024-06-26T05:40:54.5162550Z [4643/5905] Generating sleeflibm_SVENOFMA.h.tmp 2024-06-26T05:40:54.5174540Z [4644/5905] Generating include/renameadvsimdnofma.h 2024-06-26T05:40:54.5179730Z Generating renameadvsimdnofma.h: mkrename cinz_ 2 4 advsimdnofma 2024-06-26T05:40:54.5247140Z [4645/5905] Generating include/renamepurec_scalar.h 2024-06-26T05:40:54.5264720Z Generating renamepurec_scalar.h: mkrename cinz_ 1 1 purec 2024-06-26T05:40:54.5269100Z [4646/5905] Generating include/renamecuda.h 2024-06-26T05:40:54.5278500Z Generating renamecuda.h: mkrename finz_ 1 1 cuda 2024-06-26T05:40:54.5307090Z [4647/5905] Generating include/renamepurecfma_scalar.h 2024-06-26T05:40:54.5311390Z Generating renamepurecfma_scalar.h: mkrename finz_ 1 1 purecfma 2024-06-26T05:40:54.5312410Z [4648/5905] Generating sleeflibm_ADVSIMD.h.tmp 2024-06-26T05:40:54.5358350Z [4649/5905] Generating sleeflibm_ADVSIMDNOFMA.h.tmp 2024-06-26T05:40:54.5379320Z [4650/5905] Generating sleeflibm_ADVSIMD_.h.tmp 2024-06-26T05:40:54.5391760Z [4651/5905] Generating sleeflibm_PUREC_SCALAR.h.tmp 2024-06-26T05:40:54.5430380Z [4652/5905] Generating sleeflibm_DSP_SCALAR.h.tmp 2024-06-26T05:40:54.5503820Z [4653/5905] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2024-06-26T05:40:54.5515390Z [4654/5905] Generating alias_ADVSIMD_sp.h.tmp 2024-06-26T05:40:54.5610730Z [4655/5905] Generating alias_ADVSIMD_dp.h.tmp 2024-06-26T05:40:54.6033680Z [4656/5905] Generating ../../../include/sleef.h 2024-06-26T05:40:54.6035330Z [4657/5905] Generating include/alias_advsimd.h 2024-06-26T05:40:54.6244810Z [4658/5905] Linking C shared library lib/libtorch_global_deps.dylib 2024-06-26T05:40:54.6957400Z [4659/5905] Linking C executable sleef/bin/mkdisp 2024-06-26T05:40:54.7521420Z [4660/5905] Generating dispscalar.c.body 2024-06-26T05:40:54.7657360Z [4661/5905] Building C object sleef/src/libm/CMakeFiles/sleefadvsimdnofma.dir/sleefsimdsp.c.o 2024-06-26T05:40:54.7819550Z [4662/5905] Generating dispscalar.c 2024-06-26T05:40:54.7835630Z [4663/5905] Building C object sleef/src/libm/CMakeFiles/sleefadvsimdnofma.dir/sleefsimddp.c.o 2024-06-26T05:40:54.7867890Z [4664/5905] Building C object sleef/src/libm/CMakeFiles/sleefadvsimd.dir/sleefsimddp.c.o 2024-06-26T05:40:54.8055880Z [4665/5905] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimdnofma.dir/sleefsimddp.c.o 2024-06-26T05:40:54.8141010Z [4666/5905] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimdnofma.dir/sleefsimdsp.c.o 2024-06-26T05:40:54.8173620Z [4667/5905] Building C object sleef/src/libm/CMakeFiles/sleefadvsimd.dir/sleefsimdsp.c.o 2024-06-26T05:40:54.9510930Z [4668/5905] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimd.dir/sleefsimdsp.c.o 2024-06-26T05:40:54.9669020Z [4669/5905] Building C object sleef/src/libm/CMakeFiles/sleef.dir/rempitab.c.o 2024-06-26T05:40:54.9712820Z [4670/5905] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimd.dir/sleefsimddp.c.o 2024-06-26T05:40:54.9762630Z [4671/5905] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimdsp.c.o 2024-06-26T05:40:54.9903300Z [4672/5905] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimdsp.c.o 2024-06-26T05:40:54.9918460Z [4673/5905] Building C object sleef/src/libm/CMakeFiles/dispscalar_obj.dir/dispscalar.c.o 2024-06-26T05:40:55.0433350Z [4674/5905] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimddp.c.o 2024-06-26T05:40:55.1145250Z [4675/5905] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimddp.c.o 2024-06-26T05:40:55.1229590Z [4676/5905] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimdsp.c.o 2024-06-26T05:40:55.1235720Z [4677/5905] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimddp.c.o 2024-06-26T05:40:55.1399770Z [4678/5905] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimdsp.c.o 2024-06-26T05:40:55.1535400Z [4679/5905] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimddp.c.o 2024-06-26T05:40:55.2802190Z [4680/5905] Linking C static library sleef/lib/libsleef.a 2024-06-26T05:40:59.8491300Z [4681/5905] Generating ../../../torch/version.py 2024-06-26T05:41:00.1016070Z [4682/5905] Generating ../../../torch/_C/__init__.pyi, ../../../torch/_C/_VariableFunctions.pyi, ../../../torch/nn/functional.pyi 2024-06-26T05:41:01.2356820Z [4683/5905] 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 2024-06-26T05:41:01.6448420Z [4684/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/AccumulateType.cpp.o 2024-06-26T05:41:01.6662370Z [4685/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DeviceAccelerator.cpp.o 2024-06-26T05:41:01.6984200Z [4686/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CPUGeneratorImpl.cpp.o 2024-06-26T05:41:01.6992790Z [4687/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DynamicLibrary.cpp.o 2024-06-26T05:41:01.7229330Z [4688/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Context.cpp.o 2024-06-26T05:41:01.8566730Z [4689/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ConjugateFallback.cpp.o 2024-06-26T05:41:01.9007210Z [4690/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FuncTorchTLS.cpp.o 2024-06-26T05:41:02.0376260Z [4691/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Dispatch.cpp.o 2024-06-26T05:41:02.0503660Z [4692/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/EmptyTensor.cpp.o 2024-06-26T05:41:02.2048770Z [4693/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ExpandUtils.cpp.o 2024-06-26T05:41:02.2298300Z [4694/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CachedTensorUtils.cpp.o 2024-06-26T05:41:02.2606570Z [4695/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DLConvertor.cpp.o 2024-06-26T05:41:02.3690160Z [4696/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalStorageImpl.cpp.o 2024-06-26T05:41:02.3921740Z [4697/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalTensorWrapper.cpp.o 2024-06-26T05:41:02.4004140Z [4698/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalizeFallbackKernel.cpp.o 2024-06-26T05:41:02.5758480Z [4699/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapMode.cpp.o 2024-06-26T05:41:02.6045360Z [4700/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedTensorImpl.cpp.o 2024-06-26T05:41:02.6744050Z [4701/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalInverses.cpp.o 2024-06-26T05:41:02.6847190Z [4702/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MapAllocator.cpp.o 2024-06-26T05:41:02.7300690Z [4703/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelNative.cpp.o 2024-06-26T05:41:02.9594310Z [4704/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedFallback.cpp.o 2024-06-26T05:41:02.9669410Z [4705/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MemoryOverlap.cpp.o 2024-06-26T05:41:02.9958010Z [4706/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NamedTensorUtils.cpp.o 2024-06-26T05:41:02.9994210Z [4707/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelCommon.cpp.o 2024-06-26T05:41:03.2225890Z [4708/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchingRegistrations.cpp.o 2024-06-26T05:41:03.2306050Z [4709/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelOpenMP.cpp.o 2024-06-26T05:41:03.2334750Z [4710/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/PythonTorchFunctionTLS.cpp.o 2024-06-26T05:41:03.2699390Z [4711/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapTransforms.cpp.o 2024-06-26T05:41:03.3084300Z [4712/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SequenceNumber.cpp.o 2024-06-26T05:41:03.3194690Z [4713/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SavedTensorHooks.cpp.o 2024-06-26T05:41:03.3947010Z [4714/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelThreadPoolNative.cpp.o 2024-06-26T05:41:03.4933900Z [4715/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NestedTensorImpl.cpp.o 2024-06-26T05:41:03.5110510Z [4716/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ScalarOps.cpp.o 2024-06-26T05:41:03.6714640Z [4717/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorGeometry.cpp.o 2024-06-26T05:41:03.7758830Z [4718/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorMeta.cpp.o 2024-06-26T05:41:03.8037070Z [4719/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIndexing.cpp.o 2024-06-26T05:41:03.8707060Z [4720/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIterator.cpp.o 2024-06-26T05:41:03.9666770Z [4721/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorNames.cpp.o 2024-06-26T05:41:04.0017920Z [4722/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/StorageUtils.cpp.o 2024-06-26T05:41:04.1097140Z [4723/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalPythonObjects.cpp.o 2024-06-26T05:41:04.1821600Z [4724/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseTensorImpl.cpp.o 2024-06-26T05:41:04.2935740Z [4725/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalState.cpp.o 2024-06-26T05:41:04.3429970Z [4726/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseCsrTensorImpl.cpp.o 2024-06-26T05:41:04.3465930Z [4727/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Version.cpp.o 2024-06-26T05:41:04.3789520Z [4728/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/Utils.cpp.o 2024-06-26T05:41:04.3823360Z [4729/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/FlushDenormal.cpp.o 2024-06-26T05:41:04.5469100Z [4730/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/VmapModeRegistrations.cpp.o 2024-06-26T05:41:04.5606350Z [4731/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorUtils.cpp.o 2024-06-26T05:41:04.6123540Z [4732/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Utils.cpp.o 2024-06-26T05:41:04.6902780Z [4733/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CPUGuardImpl.cpp.o 2024-06-26T05:41:04.7181100Z [4734/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CUDAHooksInterface.cpp.o 2024-06-26T05:41:04.7873420Z [4735/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MAIAHooksInterface.cpp.o 2024-06-26T05:41:04.8105610Z [4736/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HIPHooksInterface.cpp.o 2024-06-26T05:41:04.8336820Z [4737/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/IPUHooksInterface.cpp.o 2024-06-26T05:41:04.9482680Z [4738/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MetaGuardImpl.cpp.o 2024-06-26T05:41:04.9668100Z [4739/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MTIAHooksInterface.cpp.o 2024-06-26T05:41:04.9818000Z [4740/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MPSHooksInterface.cpp.o 2024-06-26T05:41:05.1184160Z [4741/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ZeroTensorFallback.cpp.o 2024-06-26T05:41:05.1501250Z [4742/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/XPUHooksInterface.cpp.o 2024-06-26T05:41:05.1543080Z [4743/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/PrivateUse1HooksInterface.cpp.o 2024-06-26T05:41:05.2798930Z [4744/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/autocast_mode.cpp.o 2024-06-26T05:41:05.4112260Z [4745/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/ADInterpreters.cpp.o 2024-06-26T05:41:05.8720520Z [4746/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesActivation.cpp.o 2024-06-26T05:41:05.9457260Z [4747/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesBinaryOps.cpp.o 2024-06-26T05:41:06.0149690Z [4748/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDynamic.cpp.o 2024-06-26T05:41:06.0423600Z [4749/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDecompositions.cpp.o 2024-06-26T05:41:06.0891650Z [4750/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesConvolution.cpp.o 2024-06-26T05:41:06.1133080Z [4751/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesFactory.cpp.o 2024-06-26T05:41:06.1822640Z [4752/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesHelper.cpp.o 2024-06-26T05:41:06.3834770Z [4753/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesIndexing.cpp.o 2024-06-26T05:41:06.8452060Z [4754/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLoss.cpp.o 2024-06-26T05:41:06.8737040Z [4755/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLinearAlgebra.cpp.o 2024-06-26T05:41:06.9553860Z [4756/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesPooling.cpp.o 2024-06-26T05:41:06.9982790Z [4757/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesModules.cpp.o 2024-06-26T05:41:07.0458230Z [4758/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesReduceOps.cpp.o 2024-06-26T05:41:07.0773580Z [4759/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesRandomness.cpp.o 2024-06-26T05:41:07.0964190Z [4760/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesNorm.cpp.o 2024-06-26T05:41:07.4102300Z [4761/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesScatterOps.cpp.o 2024-06-26T05:41:07.4202610Z [4762/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedTensorImpl.cpp.o 2024-06-26T05:41:07.5716200Z [4763/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/FunctionalizeInterpreter.cpp.o 2024-06-26T05:41:07.6017120Z [4764/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/Interpreter.cpp.o 2024-06-26T05:41:07.8034910Z [4765/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesViews.cpp.o 2024-06-26T05:41:07.8295160Z [4766/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesUnaryOps.cpp.o 2024-06-26T05:41:07.9440720Z [4767/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedFallback.cpp.o 2024-06-26T05:41:07.9815750Z [4768/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PlumbingHelper.cpp.o 2024-06-26T05:41:08.1463390Z [4769/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/DynamicLayer.cpp.o 2024-06-26T05:41:08.1500740Z [4770/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenGeneral.cpp.o 2024-06-26T05:41:08.2227690Z [4771/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapInterpreter.cpp.o 2024-06-26T05:41:08.2328100Z [4772/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/TensorWrapper.cpp.o 2024-06-26T05:41:08.3339850Z [4773/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyVmapTransforms.cpp.o 2024-06-26T05:41:08.4199480Z [4774/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyBatchingRegistrations.cpp.o 2024-06-26T05:41:08.4510240Z [4775/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/record_function.cpp.o 2024-06-26T05:41:08.5647550Z [4776/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypePropertiesRegistry.cpp.o 2024-06-26T05:41:08.6188560Z [4777/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PyTorchOperatorHacks.cpp.o 2024-06-26T05:41:08.6292600Z [4778/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dimname.cpp.o 2024-06-26T05:41:08.6497180Z [4779/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/BackendSelectFallbackKernel.cpp.o 2024-06-26T05:41:08.6528220Z [4780/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypeProperties.cpp.o 2024-06-26T05:41:08.8241420Z [4781/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dict.cpp.o 2024-06-26T05:41:08.8753350Z [4782/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Formatting.cpp.o 2024-06-26T05:41:08.9350180Z [4783/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapModeRegistrations.cpp.o 2024-06-26T05:41:08.9468770Z [4784/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/GeneratorForPrivateuseone.cpp.o 2024-06-26T05:41:08.9732790Z [4785/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Generator.cpp.o 2024-06-26T05:41:09.0667990Z [4786/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NestedIntSymNodeImpl.cpp.o 2024-06-26T05:41:09.1063790Z [4787/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedTensor.cpp.o 2024-06-26T05:41:09.1252300Z [4788/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/List.cpp.o 2024-06-26T05:41:09.2241800Z [4789/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedRegistrations.cpp.o 2024-06-26T05:41:09.2500590Z [4790/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/MetaFallbackKernel.cpp.o 2024-06-26T05:41:09.3316770Z [4791/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Range.cpp.o 2024-06-26T05:41:09.4714870Z [4792/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Vitals.cpp.o 2024-06-26T05:41:09.4971200Z [4793/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonFallbackKernel.cpp.o 2024-06-26T05:41:09.5816360Z [4794/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonOpRegistrationTrampoline.cpp.o 2024-06-26T05:41:09.6417990Z [4795/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableHooksInterface.cpp.o 2024-06-26T05:41:09.6523190Z [4796/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableFallbackKernel.cpp.o 2024-06-26T05:41:09.6769510Z [4797/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Tensor.cpp.o 2024-06-26T05:41:09.6807470Z [4798/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TorchDispatchUtils.cpp.o 2024-06-26T05:41:09.7737980Z [4799/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/adaption.cpp.o 2024-06-26T05:41:09.7791100Z [4800/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/blob.cpp.o 2024-06-26T05:41:10.0081320Z [4801/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/boxing/KernelFunction.cpp.o 2024-06-26T05:41:10.0372360Z [4802/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/ObservedOperators.cpp.o 2024-06-26T05:41:10.0621040Z [4803/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/class_type.cpp.o 2024-06-26T05:41:10.0978520Z [4804/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/custom_class.cpp.o 2024-06-26T05:41:10.1735460Z [4805/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/DispatchKeyExtractor.cpp.o 2024-06-26T05:41:10.2988180Z [4806/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/Dispatcher.cpp.o 2024-06-26T05:41:10.3193730Z [4807/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dynamic_type.cpp.o 2024-06-26T05:41:10.3471260Z [4808/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/OperatorEntry.cpp.o 2024-06-26T05:41:10.3774610Z [4809/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/interned_strings.cpp.o 2024-06-26T05:41:10.5569830Z [4810/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/operator_name.cpp.o 2024-06-26T05:41:10.5626160Z [4811/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/function_schema.cpp.o 2024-06-26T05:41:10.6253490Z [4812/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ivalue.cpp.o 2024-06-26T05:41:10.6304830Z [4813/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/library.cpp.o 2024-06-26T05:41:10.6707990Z [4814/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/infer_schema.cpp.o 2024-06-26T05:41:10.6912950Z [4815/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/register_symbols.cpp.o 2024-06-26T05:41:10.7910900Z [4816/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/op_registration.cpp.o 2024-06-26T05:41:10.8736980Z [4817/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/tensor_type.cpp.o 2024-06-26T05:41:10.9837280Z [4818/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type_factory.cpp.o 2024-06-26T05:41:10.9991990Z [4819/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/error_report.cpp.o 2024-06-26T05:41:11.0313080Z [4820/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/lexer.cpp.o 2024-06-26T05:41:11.0411300Z [4821/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/strtod.cpp.o 2024-06-26T05:41:11.0606730Z [4822/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type.cpp.o 2024-06-26T05:41:11.1834790Z [4823/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/union_type.cpp.o 2024-06-26T05:41:11.2897920Z [4824/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/function_schema_parser.cpp.o 2024-06-26T05:41:11.2939590Z [4825/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_type_parser.cpp.o 2024-06-26T05:41:11.4277190Z [4826/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/source_range.cpp.o 2024-06-26T05:41:11.5364710Z [4827/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Activation.cpp.o 2024-06-26T05:41:11.5492340Z [4828/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling.cpp.o 2024-06-26T05:41:11.6015410Z [4829/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_prepack.cpp.o 2024-06-26T05:41:11.6941730Z [4830/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ParamUtils.cpp.o 2024-06-26T05:41:11.8625030Z [4831/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/FlattenIndicesKernel.cpp.o 2024-06-26T05:41:11.8869980Z [4832/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_unpack.cpp.o 2024-06-26T05:41:11.9377670Z [4833/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SoftMax.cpp.o 2024-06-26T05:41:12.0056580Z [4834/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_serialize.cpp.o 2024-06-26T05:41:12.0318590Z [4835/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlasImpl.cpp.o 2024-06-26T05:41:12.0411490Z [4836/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBinaryOpIntersectionKernel.cpp.o 2024-06-26T05:41:12.1688560Z [4837/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensor.cpp.o 2024-06-26T05:41:12.1878690Z [4838/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlas.cpp.o 2024-06-26T05:41:12.3518560Z [4839/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseFactories.cpp.o 2024-06-26T05:41:12.4978110Z [4840/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensorMath.cpp.o 2024-06-26T05:41:12.5265880Z [4841/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseUnaryOps.cpp.o 2024-06-26T05:41:12.5722800Z [4842/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseMatMul.cpp.o 2024-06-26T05:41:12.5783200Z [4843/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensor.cpp.o 2024-06-26T05:41:12.5887350Z [4844/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o 2024-06-26T05:41:12.6792840Z [4845/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ValidateCompressedIndicesKernel.cpp.o 2024-06-26T05:41:13.0608660Z [4846/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBackward.cpp.o 2024-06-26T05:41:13.1180640Z [4847/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUtils.cpp.o 2024-06-26T05:41:13.2857870Z [4848/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorAliases.cpp.o 2024-06-26T05:41:13.3901000Z [4849/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBinaryOps.cpp.o 2024-06-26T05:41:13.4168970Z [4850/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMatmul.cpp.o 2024-06-26T05:41:13.4588630Z [4851/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorFactories.cpp.o 2024-06-26T05:41:13.5086530Z [4852/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMath.cpp.o 2024-06-26T05:41:13.5409680Z [4853/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorTransformerFunctions.cpp.o 2024-06-26T05:41:13.5855070Z [4854/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizer.cpp.o 2024-06-26T05:41:13.5947630Z [4855/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o 2024-06-26T05:41:14.0059700Z [4856/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUnaryOps.cpp.o 2024-06-26T05:41:14.2401140Z [4857/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/Copy.cpp.o 2024-06-26T05:41:14.3035070Z [4858/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerChannelAffine.cpp.o 2024-06-26T05:41:14.4469420Z [4859/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorAdvancedIndexing.cpp.o 2024-06-26T05:41:14.4787450Z [4860/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerTensorAffine.cpp.o 2024-06-26T05:41:14.5020480Z [4861/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/QTensor.cpp.o 2024-06-26T05:41:14.5080100Z [4862/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AdaptiveAveragePooling.cpp.o 2024-06-26T05:41:14.5785490Z [4863/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorFactories.cpp.o 2024-06-26T05:41:14.6102480Z [4864/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorCompare.cpp.o 2024-06-26T05:41:14.8375820Z [4865/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool3d.cpp.o 2024-06-26T05:41:14.8507930Z [4866/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool2d.cpp.o 2024-06-26T05:41:15.0384330Z [4867/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/BinaryOps.cpp.o 2024-06-26T05:41:15.0604010Z [4868/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/RuyUtils.cpp.o 2024-06-26T05:41:15.1267850Z [4869/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ChannelShuffle.cpp.o 2024-06-26T05:41:15.1461490Z [4870/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Normalization.cpp.o 2024-06-26T05:41:15.1560740Z [4871/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/LinearUnpackImpl.cpp.o 2024-06-26T05:41:15.1884720Z [4872/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/IntReprQuant.cpp.o 2024-06-26T05:41:15.2089740Z [4873/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/MakePerTensorQuantizedTensor.cpp.o 2024-06-26T05:41:15.2927280Z [4874/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ReduceOps.cpp.o 2024-06-26T05:41:15.3261200Z [4875/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Pooling.cpp.o 2024-06-26T05:41:15.6226730Z [4876/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Sorting.cpp.o 2024-06-26T05:41:15.7118840Z [4877/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorOperators.cpp.o 2024-06-26T05:41:15.7191440Z [4878/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorShape.cpp.o 2024-06-26T05:41:15.7606060Z [4879/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleBilinear2d.cpp.o 2024-06-26T05:41:15.8346810Z [4880/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest3d.cpp.o 2024-06-26T05:41:15.8625800Z [4881/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest2d.cpp.o 2024-06-26T05:41:15.9635250Z [4882/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fbgemm_utils.cpp.o 2024-06-26T05:41:16.0461260Z [4883/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/init_qnnpack.cpp.o 2024-06-26T05:41:16.1899530Z [4884/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fused_obs_fake_quant.cpp.o 2024-06-26T05:41:16.2400480Z [4885/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qclamp.cpp.o 2024-06-26T05:41:16.3350690Z [4886/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/XnnpackUtils.cpp.o 2024-06-26T05:41:16.3661130Z [4887/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_dynamic.cpp.o 2024-06-26T05:41:16.4400170Z [4888/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv.cpp.o 2024-06-26T05:41:16.4816670Z [4889/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_prepack.cpp.o 2024-06-26T05:41:16.7183700Z [4890/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qelu.cpp.o 2024-06-26T05:41:16.7432930Z [4891/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag.cpp.o 2024-06-26T05:41:16.7798930Z [4892/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_prepack.cpp.o 2024-06-26T05:41:16.9233860Z [4893/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardsigmoid.cpp.o 2024-06-26T05:41:16.9615800Z [4894/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_unpack.cpp.o 2024-06-26T05:41:16.9723210Z [4895/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qgelu.cpp.o 2024-06-26T05:41:17.0182060Z [4896/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_unpack_impl.cpp.o 2024-06-26T05:41:17.1021760Z [4897/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qdropout.cpp.o 2024-06-26T05:41:17.2863240Z [4898/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardswish.cpp.o 2024-06-26T05:41:17.3493050Z [4899/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear.cpp.o 2024-06-26T05:41:17.3715120Z [4900/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Unfold2d.cpp.DEFAULT.cpp.o 2024-06-26T05:41:17.4130670Z [4901/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_dynamic.cpp.o 2024-06-26T05:41:17.4423620Z [4902/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_prepack.cpp.o 2024-06-26T05:41:17.6073830Z [4903/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling2d.cpp.o 2024-06-26T05:41:17.6319190Z [4904/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling3d.cpp.o 2024-06-26T05:41:17.6523870Z [4905/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qnormalization.cpp.o 2024-06-26T05:41:17.7850550Z [4906/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling3d.cpp.o 2024-06-26T05:41:17.8718510Z [4907/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AffineGridGenerator.cpp.o 2024-06-26T05:41:17.9140580Z [4908/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AmpKernels.cpp.o 2024-06-26T05:41:17.9591250Z [4909/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AutogradComposite.cpp.o 2024-06-26T05:41:18.0848060Z [4910/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool2d.cpp.o 2024-06-26T05:41:18.1190760Z [4911/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool3d.cpp.o 2024-06-26T05:41:18.2737440Z [4912/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebra.cpp.o 2024-06-26T05:41:18.2940050Z [4913/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BlasKernel.cpp.o 2024-06-26T05:41:18.3637290Z [4914/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Blas.cpp.o 2024-06-26T05:41:18.3762710Z [4915/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BinaryOps.cpp.o 2024-06-26T05:41:18.4598050Z [4916/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebraKernel.cpp.o 2024-06-26T05:41:18.5004640Z [4917/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Bucketization.cpp.o 2024-06-26T05:41:18.5581820Z [4918/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUBlas.cpp.o 2024-06-26T05:41:18.7373380Z [4919/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUFallback.cpp.o 2024-06-26T05:41:18.7840200Z [4920/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ChanelShuffle.cpp.o 2024-06-26T05:41:18.8687600Z [4921/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Col2Im.cpp.o 2024-06-26T05:41:18.8730520Z [4922/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ComparisonUtils.cpp.o 2024-06-26T05:41:18.9230010Z [4923/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Constraints.cpp.o 2024-06-26T05:41:19.0351880Z [4924/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM2d.cpp.o 2024-06-26T05:41:19.0917700Z [4925/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM3d.cpp.o 2024-06-26T05:41:19.1372890Z [4926/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Convolution.cpp.o 2024-06-26T05:41:19.2857890Z [4927/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionTBC.cpp.o 2024-06-26T05:41:19.3117330Z [4928/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Copy.cpp.o 2024-06-26T05:41:19.3408080Z [4929/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DispatchStub.cpp.o 2024-06-26T05:41:19.3677260Z [4930/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Correlation.cpp.o 2024-06-26T05:41:19.4022020Z [4931/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Cross.cpp.o 2024-06-26T05:41:19.4782150Z [4932/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool3d.cpp.o 2024-06-26T05:41:19.5683290Z [4933/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool2d.cpp.o 2024-06-26T05:41:19.7148250Z [4934/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distance.cpp.o 2024-06-26T05:41:19.8210680Z [4935/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Dropout.cpp.o 2024-06-26T05:41:19.8559550Z [4936/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distributions.cpp.o 2024-06-26T05:41:19.9360920Z [4937/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Fill.cpp.o 2024-06-26T05:41:19.9680160Z [4938/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ForeachOpsKernels.cpp.o 2024-06-26T05:41:19.9703820Z [4939/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Embedding.cpp.o 2024-06-26T05:41:19.9732830Z [4940/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool2d.cpp.o 2024-06-26T05:41:20.0029630Z [4941/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/EmbeddingBag.cpp.o 2024-06-26T05:41:20.3412020Z [4942/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FunctionOfAMatrixUtils.cpp.o 2024-06-26T05:41:20.3529240Z [4943/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool3d.cpp.o 2024-06-26T05:41:20.3761300Z [4944/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedAdagrad.cpp.o 2024-06-26T05:41:20.3990890Z [4945/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedSGD.cpp.o 2024-06-26T05:41:20.4446500Z [4946/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedAdam.cpp.o 2024-06-26T05:41:20.5371860Z [4947/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GatedLinearUnit.cpp.o 2024-06-26T05:41:20.5510030Z [4948/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LegacyBridge.cpp.o 2024-06-26T05:41:20.5778890Z [4949/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Im2Col.cpp.o 2024-06-26T05:41:20.6137550Z [4950/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GridSampler.cpp.o 2024-06-26T05:41:20.8415810Z [4951/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Histogram.cpp.o 2024-06-26T05:41:20.8521970Z [4952/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/IndexingUtils.cpp.o 2024-06-26T05:41:20.9169220Z [4953/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Integration.cpp.o 2024-06-26T05:41:20.9714670Z [4954/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Itertools.cpp.o 2024-06-26T05:41:20.9812640Z [4955/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Lerp.cpp.o 2024-06-26T05:41:20.9917140Z [4956/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LegacyBatching.cpp.o 2024-06-26T05:41:21.1564580Z [4957/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Linear.cpp.o 2024-06-26T05:41:21.3167730Z [4958/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LinearAlgebra.cpp.o 2024-06-26T05:41:21.4081200Z [4959/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossCTC.cpp.o 2024-06-26T05:41:21.4228700Z [4960/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Loss.cpp.o 2024-06-26T05:41:21.4611630Z [4961/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiMargin.cpp.o 2024-06-26T05:41:21.4989550Z [4962/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiLabelMargin.cpp.o 2024-06-26T05:41:21.5414010Z [4963/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL.cpp.o 2024-06-26T05:41:21.5568350Z [4964/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL2d.cpp.o 2024-06-26T05:41:21.6615460Z [4965/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxPooling.cpp.o 2024-06-26T05:41:21.7003590Z [4966/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxUnpooling.cpp.o 2024-06-26T05:41:21.8641600Z [4967/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MetaTensor.cpp.o 2024-06-26T05:41:21.8833970Z [4968/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Memory.cpp.o 2024-06-26T05:41:22.0630720Z [4969/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose2d.cpp.o 2024-06-26T05:41:22.0831410Z [4970/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose3d.cpp.o 2024-06-26T05:41:22.1481150Z [4971/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveDilatedConvolution.cpp.o 2024-06-26T05:41:22.1547120Z [4972/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NamedTensor.cpp.o 2024-06-26T05:41:22.1630870Z [4973/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NNPACK.cpp.o 2024-06-26T05:41:22.2376590Z [4974/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NegateFallback.cpp.o 2024-06-26T05:41:22.3456070Z [4975/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Onehot.cpp.o 2024-06-26T05:41:22.3889090Z [4976/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Normalization.cpp.o 2024-06-26T05:41:22.4734210Z [4977/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PackedSequence.cpp.o 2024-06-26T05:41:22.5899530Z [4978/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PadNd.cpp.o 2024-06-26T05:41:22.6687520Z [4979/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PixelShuffle.cpp.o 2024-06-26T05:41:22.6740750Z [4980/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PointwiseOps.cpp.o 2024-06-26T05:41:22.8174940Z [4981/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pooling.cpp.o 2024-06-26T05:41:22.8370500Z [4982/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/QuantizedLinear.cpp.o 2024-06-26T05:41:22.8529460Z [4983/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pow.cpp.o 2024-06-26T05:41:22.8969990Z [4984/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RNN.cpp.o 2024-06-26T05:41:23.0089460Z [4985/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RangeFactories.cpp.o 2024-06-26T05:41:23.0510800Z [4986/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceAllOps.cpp.o 2024-06-26T05:41:23.1809890Z [4987/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReflectionPad.cpp.o 2024-06-26T05:41:23.2366780Z [4988/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceOps.cpp.o 2024-06-26T05:41:23.2534020Z [4989/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReplicationPadding.cpp.o 2024-06-26T05:41:23.2763740Z [4990/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Repeat.cpp.o 2024-06-26T05:41:23.4327530Z [4991/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Scalar.cpp.o 2024-06-26T05:41:23.4616640Z [4992/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RowwisePrune.cpp.o 2024-06-26T05:41:23.4837910Z [4993/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Resize.cpp.o 2024-06-26T05:41:23.5624260Z [4994/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SegmentReduce.cpp.o 2024-06-26T05:41:23.6810330Z [4995/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOps.cpp.o 2024-06-26T05:41:23.7396850Z [4996/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SoftMax.cpp.o 2024-06-26T05:41:23.7872680Z [4997/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Sorting.cpp.o 2024-06-26T05:41:23.8842840Z [4998/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOpsUtils.cpp.o 2024-06-26T05:41:23.9158330Z [4999/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SpectralOps.cpp.o 2024-06-26T05:41:23.9961470Z [5000/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SummaryOps.cpp.o 2024-06-26T05:41:24.2006260Z [5001/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorCompare.cpp.o 2024-06-26T05:41:24.3477580Z [5002/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorFactories.cpp.o 2024-06-26T05:41:24.3804020Z [5003/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorIteratorReduce.cpp.o 2024-06-26T05:41:24.3961270Z [5004/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorProperties.cpp.o 2024-06-26T05:41:24.4376170Z [5005/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SparseTensorUtils.cpp.o 2024-06-26T05:41:24.5490980Z [5006/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorShape.cpp.o 2024-06-26T05:41:24.6030280Z [5007/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorTransformations.cpp.o 2024-06-26T05:41:24.6470120Z [5008/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorAdvancedIndexing.cpp.o 2024-06-26T05:41:24.7080820Z [5009/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorConversions.cpp.o 2024-06-26T05:41:24.7970330Z [5010/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold2d.cpp.o 2024-06-26T05:41:24.8635620Z [5011/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TriangularOps.cpp.o 2024-06-26T05:41:24.9105160Z [5012/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TestOps.cpp.o 2024-06-26T05:41:24.9367220Z [5013/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TypeProperties.cpp.o 2024-06-26T05:41:24.9606360Z [5014/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold3d.cpp.o 2024-06-26T05:41:25.1381100Z [5015/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnaryOps.cpp.o 2024-06-26T05:41:25.1989550Z [5016/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unique.cpp.o 2024-06-26T05:41:25.2170560Z [5017/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnfoldBackward.cpp.o 2024-06-26T05:41:25.2367650Z [5018/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSample.cpp.o 2024-06-26T05:41:25.3667940Z [5019/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBicubic2d.cpp.o 2024-06-26T05:41:25.4310430Z [5020/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBilinear2d.cpp.o 2024-06-26T05:41:25.4920590Z [5021/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleLinear1d.cpp.o 2024-06-26T05:41:25.5291340Z [5022/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest1d.cpp.o 2024-06-26T05:41:25.6227440Z [5023/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest2d.cpp.o 2024-06-26T05:41:25.6331210Z [5024/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest3d.cpp.o 2024-06-26T05:41:25.6407190Z [5025/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/verbose_wrapper.cpp.o 2024-06-26T05:41:25.7755240Z [5026/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleTrilinear3d.cpp.o 2024-06-26T05:41:25.8111820Z [5027/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/VariableMethodStubs.cpp.o 2024-06-26T05:41:25.8451840Z [5028/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/WeightNorm.cpp.o 2024-06-26T05:41:25.8865590Z [5029/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/prim_native_functions.cpp.o 2024-06-26T05:41:25.9071840Z [5030/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/group_norm.cpp.o 2024-06-26T05:41:25.9339760Z [5031/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/layer_norm.cpp.o 2024-06-26T05:41:26.1927920Z [5032/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.cpp.o 2024-06-26T05:41:26.2139200Z [5033/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/library.cpp.o 2024-06-26T05:41:26.2934290Z [5034/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear.cpp.o 2024-06-26T05:41:26.4033310Z [5035/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_dynamic.cpp.o 2024-06-26T05:41:26.4583110Z [5036/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmul.cpp.o 2024-06-26T05:41:26.4987560Z [5037/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qrelu.cpp.o 2024-06-26T05:41:26.6179790Z [5038/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_deserialize.cpp.o 2024-06-26T05:41:26.6434700Z [5039/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsigmoid.cpp.o 2024-06-26T05:41:26.7261300Z [5040/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmatmul.cpp.o 2024-06-26T05:41:26.8448180Z [5041/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qtanh.cpp.o 2024-06-26T05:41:26.8797400Z [5042/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qthreshold.cpp.o 2024-06-26T05:41:26.9647080Z [5043/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/library.cpp.o 2024-06-26T05:41:27.0069740Z [5044/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o 2024-06-26T05:41:27.1248500Z [5045/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qconv_unpack.cpp.o 2024-06-26T05:41:27.1734900Z [5046/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsoftmax.cpp.o 2024-06-26T05:41:27.2779560Z [5047/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseBlasImpl.cpp.o 2024-06-26T05:41:27.3540640Z [5048/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseCsrLinearAlgebra.cpp.o 2024-06-26T05:41:27.4070280Z [5049/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SpectralOps.cpp.o 2024-06-26T05:41:27.4507840Z [5050/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/BinaryOps.cpp.o 2024-06-26T05:41:27.5421210Z [5051/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Copy.cpp.o 2024-06-26T05:41:27.5832070Z [5052/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Conv.cpp.o 2024-06-26T05:41:27.5894460Z [5053/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/IDeepRegistration.cpp.o 2024-06-26T05:41:27.6492370Z [5054/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qlinear_unpack.cpp.o 2024-06-26T05:41:27.6592350Z [5055/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Gelu.cpp.o 2024-06-26T05:41:27.8888830Z [5056/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Linear.cpp.o 2024-06-26T05:41:27.9345420Z [5057/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNCommon.cpp.o 2024-06-26T05:41:28.0082580Z [5058/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNConversions.cpp.o 2024-06-26T05:41:28.0494300Z [5059/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Matmul.cpp.o 2024-06-26T05:41:28.0783380Z [5060/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RegisterMkldnnOpContextClass.cpp.o 2024-06-26T05:41:28.1249760Z [5061/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/ConvPrepack.cpp.o 2024-06-26T05:41:28.1385940Z [5062/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MkldnnTensorMath.cpp.o 2024-06-26T05:41:28.1761010Z [5063/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Normalization.cpp.o 2024-06-26T05:41:28.4198050Z [5064/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Pooling.cpp.o 2024-06-26T05:41:28.5608620Z [5065/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Relu.cpp.o 2024-06-26T05:41:28.5806240Z [5066/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorFactories.cpp.o 2024-06-26T05:41:28.5910020Z [5067/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/SoftMax.cpp.o 2024-06-26T05:41:28.6071070Z [5068/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorShape.cpp.o 2024-06-26T05:41:28.6428290Z [5069/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/OpContext.cpp.o 2024-06-26T05:41:28.7802610Z [5070/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Prelu.cpp.o 2024-06-26T05:41:28.8233010Z [5071/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/UnaryOps.cpp.o 2024-06-26T05:41:28.9021200Z [5072/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RNN.cpp.o 2024-06-26T05:41:29.0280410Z [5073/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Utils.cpp.o 2024-06-26T05:41:29.0529520Z [5074/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/attention.cpp.o 2024-06-26T05:41:29.1752700Z [5075/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/utils/Factory.cpp.o 2024-06-26T05:41:29.1847510Z [5076/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Activation.cpp.o 2024-06-26T05:41:29.2024340Z [5077/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/AveragePooling.cpp.o 2024-06-26T05:41:29.2440420Z [5078/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/sdp_utils_cpp.cpp.o 2024-06-26T05:41:29.2478360Z [5079/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/transformer.cpp.o 2024-06-26T05:41:29.2985850Z [5080/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/ChannelShuffle.cpp.o 2024-06-26T05:41:29.3224690Z [5081/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Shim.cpp.o 2024-06-26T05:41:29.4635140Z [5082/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Init.cpp.o 2024-06-26T05:41:29.6353450Z [5083/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/MaxPooling.cpp.o 2024-06-26T05:41:29.6453550Z [5084/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Convolution.cpp.o 2024-06-26T05:41:29.7277270Z [5085/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Linear.cpp.o 2024-06-26T05:41:29.7591680Z [5086/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/OpContext.cpp.o 2024-06-26T05:41:29.8001850Z [5087/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/RegisterOpContextClass.cpp.o 2024-06-26T05:41:29.9915610Z [5088/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CompositeViewCopyKernels.cpp.o 2024-06-26T05:41:30.0025930Z [5089/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_0.cpp.o 2024-06-26T05:41:30.1918560Z [5090/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Functions.cpp.o 2024-06-26T05:41:30.2626900Z [5091/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_1.cpp.o 2024-06-26T05:41:30.2954980Z [5092/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterBackendSelect.cpp.o 2024-06-26T05:41:30.3094230Z [5093/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_2.cpp.o 2024-06-26T05:41:30.3450350Z [5094/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_4.cpp.o 2024-06-26T05:41:30.3666960Z [5095/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_3.cpp.o 2024-06-26T05:41:30.6275450Z [5096/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutograd.cpp.o 2024-06-26T05:41:30.6435180Z [5097/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU.cpp.o 2024-06-26T05:41:30.8189440Z [5098/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutograd.cpp.o 2024-06-26T05:41:30.8871050Z [5099/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutogradNestedTensor.cpp.o 2024-06-26T05:41:30.8977590Z [5100/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutogradNonFunctional.cpp.o 2024-06-26T05:41:31.0082100Z [5101/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_0.cpp.o 2024-06-26T05:41:31.1038250Z [5102/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_2.cpp.o 2024-06-26T05:41:31.1833740Z [5103/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_1.cpp.o 2024-06-26T05:41:31.1932870Z [5104/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_3.cpp.o 2024-06-26T05:41:31.2309120Z [5105/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMPS.cpp.o 2024-06-26T05:41:31.4030550Z [5106/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMkldnnCPU.cpp.o 2024-06-26T05:41:31.4759560Z [5107/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMeta.cpp.o 2024-06-26T05:41:31.4997380Z [5108/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorMeta.cpp.o 2024-06-26T05:41:31.5589320Z [5109/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedMeta.cpp.o 2024-06-26T05:41:31.6066490Z [5110/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorCPU.cpp.o 2024-06-26T05:41:31.6227720Z [5111/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedCPU.cpp.o 2024-06-26T05:41:31.7978090Z [5112/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSchema.cpp.o 2024-06-26T05:41:31.9148850Z [5113/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrMeta.cpp.o 2024-06-26T05:41:31.9208820Z [5114/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPU_add.cpp.o 2024-06-26T05:41:31.9219280Z [5115/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenOpList.cpp.o 2024-06-26T05:41:31.9508380Z [5116/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrCPU.cpp.o 2024-06-26T05:41:31.9632840Z [5117/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCPU.cpp.o 2024-06-26T05:41:32.0048180Z [5118/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMeta.cpp.o 2024-06-26T05:41:32.0405480Z [5119/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterZeroTensor.cpp.o 2024-06-26T05:41:32.1428860Z [5120/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TensorMethods.cpp.o 2024-06-26T05:41:32.2881730Z [5121/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/QTensorImpl.cpp.o 2024-06-26T05:41:32.3697500Z [5122/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_model_loader.cpp.o 2024-06-26T05:41:32.3897850Z [5123/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_wrapper.cpp.o 2024-06-26T05:41:32.5369350Z [5124/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPUKernel_add.cpp.DEFAULT.cpp.o 2024-06-26T05:41:32.6787380Z [5125/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/spherical_bessel_j0.cpp.DEFAULT.cpp.o 2024-06-26T05:41:32.7134700Z [5126/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k1.cpp.DEFAULT.cpp.o 2024-06-26T05:41:32.7263730Z [5127/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k0.cpp.DEFAULT.cpp.o 2024-06-26T05:41:32.7606640Z [5128/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/kernels/QuantizedOpKernels.cpp.DEFAULT.cpp.o 2024-06-26T05:41:32.8633650Z [5129/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/Quantizer.cpp.o 2024-06-26T05:41:33.0145860Z [5130/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_register.cpp.o 2024-06-26T05:41:33.0403130Z [5131/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_bind.cpp.o 2024-06-26T05:41:33.0440680Z [5132/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/layer_norm_kernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:33.1634820Z [5133/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/int4mm_kernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:33.1729670Z [5134/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/int8mm_kernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:33.1955120Z [5135/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/airy_ai.cpp.DEFAULT.cpp.o 2024-06-26T05:41:33.3582300Z [5136/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/WeightNormKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:33.3686000Z [5137/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/group_norm_kernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:33.4275610Z [5138/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/batch_norm_kernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:33.5708780Z [5139/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:33.6918280Z [5140/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:33.7223410Z [5141/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:33.7633050Z [5142/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp.o 2024-06-26T05:41:34.2737810Z [5143/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_0.cpp.o 2024-06-26T05:41:34.2943180Z [5144/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_2.cpp.o 2024-06-26T05:41:34.3012410Z [5145/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_variable_methods.cpp.o 2024-06-26T05:41:34.3245340Z [5146/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_0.cpp.o 2024-06-26T05:41:34.3526620Z [5147/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_1.cpp.o 2024-06-26T05:41:34.3705490Z [5148/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_4.cpp.o 2024-06-26T05:41:34.4105960Z [5149/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_3.cpp.o 2024-06-26T05:41:34.5209290Z [5150/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_1.cpp.o 2024-06-26T05:41:34.8805700Z [5151/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nn_functions.cpp.o 2024-06-26T05:41:34.9389290Z [5152/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_2.cpp.o 2024-06-26T05:41:34.9593450Z [5153/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nested_functions.cpp.o 2024-06-26T05:41:34.9793600Z [5154/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_return_types.cpp.o 2024-06-26T05:41:35.0426500Z [5155/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_linalg_functions.cpp.o 2024-06-26T05:41:35.0496040Z [5156/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_sparse_functions.cpp.o 2024-06-26T05:41:35.0619510Z [5157/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_special_functions.cpp.o 2024-06-26T05:41:35.0780180Z [5158/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_fft_functions.cpp.o 2024-06-26T05:41:35.2820330Z [5159/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_enum_tag.cpp.o 2024-06-26T05:41:35.3678170Z [5160/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DataLoader.cpp.o 2024-06-26T05:41:35.5035790Z [5161/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Device.cpp.o 2024-06-26T05:41:35.5722110Z [5162/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Dtype.cpp.o 2024-06-26T05:41:35.7477550Z [5163/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/MemoryFormat.cpp.o 2024-06-26T05:41:35.7795220Z [5164/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Layout.cpp.o 2024-06-26T05:41:35.8318130Z [5165/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/QScheme.cpp.o 2024-06-26T05:41:36.0497620Z [5166/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DynamicTypes.cpp.o 2024-06-26T05:41:36.0904590Z [5167/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Exceptions.cpp.o 2024-06-26T05:41:36.2263950Z [5168/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/python_dimname.cpp.o 2024-06-26T05:41:36.3390730Z [5169/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Generator.cpp.o 2024-06-26T05:41:36.3493600Z [5170/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Size.cpp.o 2024-06-26T05:41:36.6587790Z [5171/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/PyInterpreter.cpp.o 2024-06-26T05:41:36.7043160Z [5172/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Module.cpp.o 2024-06-26T05:41:36.9218120Z [5173/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Storage.cpp.o 2024-06-26T05:41:37.0535720Z [5174/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageSharing.cpp.o 2024-06-26T05:41:37.0827750Z [5175/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageMethods.cpp.o 2024-06-26T05:41:37.2696010Z [5176/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Stream.cpp.o 2024-06-26T05:41:37.3081540Z [5177/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Event.cpp.o 2024-06-26T05:41:37.4583690Z [5178/5905] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/shm.dir/core.cpp.o 2024-06-26T05:41:37.5046480Z [5179/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/TypeInfo.cpp.o 2024-06-26T05:41:37.5080460Z [5180/5905] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/torch_shm_manager.dir/manager.cpp.o 2024-06-26T05:41:37.5311990Z [5181/5905] Building C object functorch/CMakeFiles/functorch.dir/csrc/dim/dim_opcode.c.o 2024-06-26T05:41:37.5926650Z [5182/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_anomaly_mode.cpp.o 2024-06-26T05:41:37.6553530Z [5183/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/profiler_python.cpp.o 2024-06-26T05:41:37.7467820Z [5184/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/functions/init.cpp.o 2024-06-26T05:41:37.7974260Z [5185/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/api/src/python/init.cpp.o 2024-06-26T05:41:38.0046210Z [5186/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/init.cpp.o 2024-06-26T05:41:38.2291510Z [5187/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_cpp_function.cpp.o 2024-06-26T05:41:38.4838990Z [5188/5905] Building CXX object functorch/CMakeFiles/functorch.dir/csrc/dim/dim.cpp.o 2024-06-26T05:41:38.6335910Z [5189/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_saved_variable_hooks.cpp.o 2024-06-26T05:41:38.6827390Z [5190/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_engine.cpp.o 2024-06-26T05:41:38.7132670Z [5191/5905] Building CXX object functorch/CMakeFiles/functorch.dir/csrc/init_dim_only.cpp.o 2024-06-26T05:41:38.8127210Z [5192/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_function.cpp.o 2024-06-26T05:41:38.8858790Z [5193/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_hook.cpp.o 2024-06-26T05:41:38.9436990Z [5194/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_legacy_variable.cpp.o 2024-06-26T05:41:39.0538790Z [5195/5905] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cpython_defs.c.o 2024-06-26T05:41:39.1324470Z [5196/5905] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/eval_frame.c.o 2024-06-26T05:41:39.2866580Z [5197/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cpp_shim.cpp.o 2024-06-26T05:41:39.3199660Z [5198/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cache_entry.cpp.o 2024-06-26T05:41:39.4837830Z [5199/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_nested_functions_manual.cpp.o 2024-06-26T05:41:39.5787280Z [5200/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_torch_functions_manual.cpp.o 2024-06-26T05:41:39.6265290Z [5201/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable_indexing.cpp.o 2024-06-26T05:41:39.6515240Z [5202/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/extra_state.cpp.o 2024-06-26T05:41:39.7478760Z [5203/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable.cpp.o 2024-06-26T05:41:39.8076780Z [5204/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/fx/node.cpp.o 2024-06-26T05:41:39.9075200Z [5205/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/init.cpp.o 2024-06-26T05:41:39.9602750Z [5206/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/python_compiled_autograd.cpp.o 2024-06-26T05:41:40.3936440Z [5207/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_runner/pybind.cpp.o 2024-06-26T05:41:40.4841980Z [5208/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/resize_storage_bytes.cpp.o 2024-06-26T05:41:40.5245460Z [5209/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/guards.cpp.o 2024-06-26T05:41:40.6174800Z [5210/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mps/Module.cpp.o 2024-06-26T05:41:40.6554970Z [5211/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mtia/Module.cpp.o 2024-06-26T05:41:40.7073370Z [5212/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_eager/kernel_meta_info.cpp.o 2024-06-26T05:41:40.7346940Z [5213/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/functorch/init.cpp.o 2024-06-26T05:41:40.7566130Z [5214/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_eager/kernel_holder.cpp.o 2024-06-26T05:41:41.1024840Z [5215/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/cast_all_constant_to_floating.cpp.o 2024-06-26T05:41:41.2254690Z [5216/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/deduplicate_initializers.cpp.o 2024-06-26T05:41:41.4230770Z [5217/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_map.cpp.o 2024-06-26T05:41:41.5207670Z [5218/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/backends/backend_init.cpp.o 2024-06-26T05:41:41.5628000Z [5219/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_fold.cpp.o 2024-06-26T05:41:41.6994100Z [5220/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eval_peephole.cpp.o 2024-06-26T05:41:41.7045220Z [5221/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eliminate_unused_items.cpp.o 2024-06-26T05:41:41.7416420Z [5222/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/init.cpp.o 2024-06-26T05:41:41.7922240Z [5223/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx.cpp.o 2024-06-26T05:41:41.9916380Z [5224/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/list_model_parameters.cpp.o 2024-06-26T05:41:41.9919160Z [5225/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_substitution.cpp.o 2024-06-26T05:41:42.1523640Z [5226/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/helper.cpp.o 2024-06-26T05:41:42.1902280Z [5227/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/peephole.cpp.o 2024-06-26T05:41:42.2681140Z [5228/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/preprocess_for_onnx.cpp.o 2024-06-26T05:41:42.3306680Z [5229/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/fixup_onnx_controlflow.cpp.o 2024-06-26T05:41:42.4408830Z [5230/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/prepare_division_for_onnx.cpp.o 2024-06-26T05:41:42.4435940Z [5231/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/scalar_type_analysis.cpp.o 2024-06-26T05:41:42.4802910Z [5232/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/onnx_log.cpp.o 2024-06-26T05:41:42.6135560Z [5233/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.cpp.o 2024-06-26T05:41:42.8022620Z [5234/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_extraction.cpp.o 2024-06-26T05:41:42.8506600Z [5235/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/unpack_quantized_weights.cpp.o 2024-06-26T05:41:42.8746770Z [5236/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/naming.cpp.o 2024-06-26T05:41:42.9458830Z [5237/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.cpp.o 2024-06-26T05:41:43.0732790Z [5238/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/pybind_utils.cpp.o 2024-06-26T05:41:43.1256670Z [5239/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.cpp.o 2024-06-26T05:41:43.1864760Z [5240/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/common.cpp.o 2024-06-26T05:41:43.3981530Z [5241/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.cpp.o 2024-06-26T05:41:43.4414880Z [5242/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/shape_type_inference.cpp.o 2024-06-26T05:41:43.6357190Z [5243/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_dict.cpp.o 2024-06-26T05:41:43.7136660Z [5244/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_custom_class.cpp.o 2024-06-26T05:41:43.8525540Z [5245/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/tree_views.cpp.o 2024-06-26T05:41:43.8965870Z [5246/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_arg_flatten.cpp.o 2024-06-26T05:41:43.9070560Z [5247/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_list.cpp.o 2024-06-26T05:41:44.0747220Z [5248/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_interpreter.cpp.o 2024-06-26T05:41:44.2546840Z [5249/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/concrete_module_type.cpp.o 2024-06-26T05:41:44.3057620Z [5250/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_ir.cpp.o 2024-06-26T05:41:44.4454690Z [5251/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tracer.cpp.o 2024-06-26T05:41:44.4497700Z [5252/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tree_views.cpp.o 2024-06-26T05:41:44.5366150Z [5253/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/script_init.cpp.o 2024-06-26T05:41:44.5463060Z [5254/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_sugared_value.cpp.o 2024-06-26T05:41:44.6991860Z [5255/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/runtime/static/init.cpp.o 2024-06-26T05:41:44.7943070Z [5256/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/multiprocessing/init.cpp.o 2024-06-26T05:41:44.8046200Z [5257/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/monitor/python_init.cpp.o 2024-06-26T05:41:45.0885110Z [5258/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/tensorexpr/tensorexpr_init.cpp.o 2024-06-26T05:41:45.1134990Z [5259/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/profiler/python/combined_traceback.cpp.o 2024-06-26T05:41:45.1545500Z [5260/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/profiler/python/init.cpp.o 2024-06-26T05:41:45.3845810Z [5261/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/init.cpp.o 2024-06-26T05:41:45.4110720Z [5262/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/throughput_benchmark.cpp.o 2024-06-26T05:41:45.5721550Z [5263/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/tensor/python_tensor.cpp.o 2024-06-26T05:41:45.6545300Z [5264/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/serialization.cpp.o 2024-06-26T05:41:45.6802370Z [5265/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/onnx/init.cpp.o 2024-06-26T05:41:45.6921370Z [5266/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/device_lazy_init.cpp.o 2024-06-26T05:41:45.7027590Z [5267/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/object_ptr.cpp.o 2024-06-26T05:41:45.7081710Z [5268/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/invalid_arguments.cpp.o 2024-06-26T05:41:45.9453050Z [5269/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils.cpp.o 2024-06-26T05:41:46.0971610Z [5270/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pyobject_preservation.cpp.o 2024-06-26T05:41:46.1855870Z [5271/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_symnode.cpp.o 2024-06-26T05:41:46.3614940Z [5272/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/nested.cpp.o 2024-06-26T05:41:46.3697240Z [5273/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pybind.cpp.o 2024-06-26T05:41:46.3803390Z [5274/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_dtypes.cpp.o 2024-06-26T05:41:46.5001430Z [5275/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_arg_parser.cpp.o 2024-06-26T05:41:46.5304320Z [5276/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/structseq.cpp.o 2024-06-26T05:41:46.5634250Z [5277/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_dispatch.cpp.o 2024-06-26T05:41:46.7255850Z [5278/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_layouts.cpp.o 2024-06-26T05:41:46.8578260Z [5279/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_memoryformats.cpp.o 2024-06-26T05:41:46.8678550Z [5280/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_qschemes.cpp.o 2024-06-26T05:41:46.8918640Z [5281/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_apply.cpp.o 2024-06-26T05:41:47.3767380Z [5282/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_types.cpp.o 2024-06-26T05:41:47.4029300Z [5283/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/disable_torch_function.cpp.o 2024-06-26T05:41:47.4415190Z [5284/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/cpu/Module.cpp.o 2024-06-26T05:41:47.4503590Z [5285/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/verbose.cpp.o 2024-06-26T05:41:47.5177530Z [5286/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_list.cpp.o 2024-06-26T05:41:47.5463310Z [5287/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_new.cpp.o 2024-06-26T05:41:47.6133090Z [5288/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_numpy.cpp.o 2024-06-26T05:41:47.6202140Z [5289/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/python_util.cpp.o 2024-06-26T05:41:48.3571950Z [5290/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNUtils.mm.o 2024-06-26T05:41:48.3881930Z [5291/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNNeuronOp.mm.o 2024-06-26T05:41:48.4141590Z [5292/5905] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/init.cpp.o 2024-06-26T05:41:48.5116540Z [5293/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImage+Tensor.mm.o 2024-06-26T05:41:48.6363100Z [5294/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImageWrapper.mm.o 2024-06-26T05:41:49.1233090Z [5295/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.mm.o 2024-06-26T05:41:49.1586290Z [5296/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalAddmm.mm.o 2024-06-26T05:41:49.1771510Z [5297/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImageUtils.mm.o 2024-06-26T05:41:49.3849250Z [5298/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalBinaryElementwise.mm.o 2024-06-26T05:41:49.4028840Z [5299/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalChunk.mm.o 2024-06-26T05:41:49.4550560Z [5300/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalClamp.mm.o 2024-06-26T05:41:49.4800440Z [5301/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalConcat.mm.o 2024-06-26T05:41:50.0064880Z [5302/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalConvolution.mm.o 2024-06-26T05:41:50.0437780Z [5303/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalHardshrink.mm.o 2024-06-26T05:41:50.0916880Z [5304/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalCopy.mm.o 2024-06-26T05:41:50.1138680Z [5305/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalHardswish.mm.o 2024-06-26T05:41:50.2988040Z [5306/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalLeakyReLU.mm.o 2024-06-26T05:41:50.3189310Z [5307/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalNeurons.mm.o 2024-06-26T05:41:50.4616870Z [5308/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalPooling.mm.o 2024-06-26T05:41:50.4847870Z [5309/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalPadding.mm.o 2024-06-26T05:41:50.5271750Z [5310/5905] Building C object caffe2/CMakeFiles/torch_cpu.dir/__/third_party/miniz-2.1.0/miniz.c.o 2024-06-26T05:41:50.7938280Z [5311/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/inline_container.cc.o 2024-06-26T05:41:50.8763840Z [5312/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/file_adapter.cc.o 2024-06-26T05:41:50.9798400Z [5313/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/istream_adapter.cc.o 2024-06-26T05:41:51.0122790Z [5314/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalReshape.mm.o 2024-06-26T05:41:51.0600540Z [5315/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/read_adapter_interface.cc.o 2024-06-26T05:41:51.1107550Z [5316/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/crc.cc.o 2024-06-26T05:41:51.2438710Z [5317/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/string_utils.cc.o 2024-06-26T05:41:51.2786890Z [5318/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalUpsamplingNearest.mm.o 2024-06-26T05:41:51.2790680Z [5319/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/thread_pool_guard.cpp.o 2024-06-26T05:41:51.3990810Z [5320/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalReduce.mm.o 2024-06-26T05:41:51.4017930Z [5321/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/pthreadpool-cpp.cc.o 2024-06-26T05:41:51.4041390Z [5322/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/ThreadPool.cc.o 2024-06-26T05:41:51.5002950Z [5323/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalSoftmax.mm.o 2024-06-26T05:41:51.5314200Z [5324/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalTranspose.mm.o 2024-06-26T05:41:51.6212160Z [5325/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/proto_wrap.cc.o 2024-06-26T05:41:51.7599370Z [5326/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/perfkernels/embedding_lookup_idx.cc.o 2024-06-26T05:41:51.7746780Z [5327/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/core/common.cc.o 2024-06-26T05:41:51.9169370Z [5328/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ViewFuncs.cpp.o 2024-06-26T05:41:52.4054360Z [5329/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/Functions.cpp.o 2024-06-26T05:41:52.4086920Z [5330/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_0.cpp.o 2024-06-26T05:41:52.4948130Z [5331/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_0.cpp.o 2024-06-26T05:41:52.5236580Z [5332/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_1.cpp.o 2024-06-26T05:41:52.5442990Z [5333/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_2.cpp.o 2024-06-26T05:41:52.5762830Z [5334/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_3.cpp.o 2024-06-26T05:41:52.5873880Z [5335/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_1.cpp.o 2024-06-26T05:41:52.7098000Z [5336/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_4.cpp.o 2024-06-26T05:41:52.9598390Z [5337/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_3.cpp.o 2024-06-26T05:41:52.9698070Z [5338/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_2.cpp.o 2024-06-26T05:41:53.1337550Z [5339/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_4.cpp.o 2024-06-26T05:41:53.1438220Z [5340/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp.o 2024-06-26T05:41:53.1680900Z [5341/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp.o 2024-06-26T05:41:53.1925970Z [5342/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp.o 2024-06-26T05:41:53.2868460Z [5343/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterLazy.cpp.o 2024-06-26T05:41:53.4025720Z [5344/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp.o 2024-06-26T05:41:53.4125910Z [5345/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/anomaly_mode.cpp.o 2024-06-26T05:41:53.5995400Z [5346/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_meta.cpp.o 2024-06-26T05:41:53.6100070Z [5347/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd.cpp.o 2024-06-26T05:41:53.7108500Z [5348/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/cpp_hook.cpp.o 2024-06-26T05:41:53.7536270Z [5349/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_not_implemented_fallback.cpp.o 2024-06-26T05:41:53.7846910Z [5350/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/forward_grad.cpp.o 2024-06-26T05:41:53.8397920Z [5351/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/LazyNativeFunctions.cpp.o 2024-06-26T05:41:53.9253860Z [5352/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/engine.cpp.o 2024-06-26T05:41:54.2694460Z [5353/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/custom_function.cpp.o 2024-06-26T05:41:54.2788310Z [5354/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/utils.cpp.o 2024-06-26T05:41:54.2931430Z [5355/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_metadata.cpp.o 2024-06-26T05:41:54.5159950Z [5356/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/function.cpp.o 2024-06-26T05:41:54.5425810Z [5357/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/accumulate_grad.cpp.o 2024-06-26T05:41:54.5928400Z [5358/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/basic_ops.cpp.o 2024-06-26T05:41:54.6183260Z [5359/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/tensor.cpp.o 2024-06-26T05:41:54.7437510Z [5360/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/jit_decomp_interface.cpp.o 2024-06-26T05:41:54.7860360Z [5361/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_buffer.cpp.o 2024-06-26T05:41:54.8865560Z [5362/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_kineto.cpp.o 2024-06-26T05:41:54.9183790Z [5363/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/utils/warnings.cpp.o 2024-06-26T05:41:54.9408340Z [5364/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_legacy.cpp.o 2024-06-26T05:41:55.0990750Z [5365/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/record_function_ops.cpp.o 2024-06-26T05:41:55.1091530Z [5366/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/saved_variable.cpp.o 2024-06-26T05:41:55.2442060Z [5367/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner.cpp.o 2024-06-26T05:41:55.2882430Z [5368/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable_info.cpp.o 2024-06-26T05:41:55.3917770Z [5369/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.cpp.o 2024-06-26T05:41:55.4021380Z [5370/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/mkldnn_tensor.cpp.o 2024-06-26T05:41:55.4138090Z [5371/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_common.cpp.o 2024-06-26T05:41:55.5121460Z [5372/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/tensor_converter.cpp.o 2024-06-26T05:41:55.6969060Z [5373/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable.cpp.o 2024-06-26T05:41:55.8802900Z [5374/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/object.cpp.o 2024-06-26T05:41:55.8924620Z [5375/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module.cpp.o 2024-06-26T05:41:55.9582600Z [5376/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_handler.cpp.o 2024-06-26T05:41:55.9872050Z [5377/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_info.cpp.o 2024-06-26T05:41:56.1213720Z [5378/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/inductor_ops.cpp.o 2024-06-26T05:41:56.1221120Z [5379/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_detail.cpp.o 2024-06-26T05:41:56.1328250Z [5380/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_interface.cpp.o 2024-06-26T05:41:56.2374980Z [5381/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/function_impl.cpp.o 2024-06-26T05:41:56.4431710Z [5382/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_resolver.cpp.o 2024-06-26T05:41:56.7554380Z [5383/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/builtin_functions.cpp.o 2024-06-26T05:41:56.8391120Z [5384/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/codegen.cpp.o 2024-06-26T05:41:56.8800910Z [5385/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/compiler.cpp.o 2024-06-26T05:41:56.9067320Z [5386/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/executor.cpp.o 2024-06-26T05:41:56.9726840Z [5387/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp.o 2024-06-26T05:41:56.9979290Z [5388/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/interface.cpp.o 2024-06-26T05:41:57.0134900Z [5389/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/edit_distance.cpp.o 2024-06-26T05:41:57.0369200Z [5390/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/fallback.cpp.o 2024-06-26T05:41:57.1767970Z [5391/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/kernel_cache.cpp.o 2024-06-26T05:41:57.2982600Z [5392/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/convert_to_ssa.cpp.o 2024-06-26T05:41:57.3723830Z [5393/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/parser.cpp.o 2024-06-26T05:41:57.3831540Z [5394/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/name_mangler.cpp.o 2024-06-26T05:41:57.4810510Z [5395/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/exit_transforms.cpp.o 2024-06-26T05:41:57.6142450Z [5396/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/inline_loop_condition.cpp.o 2024-06-26T05:41:57.6741620Z [5397/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_matching.cpp.o 2024-06-26T05:41:57.6976660Z [5398/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/ir_emitter.cpp.o 2024-06-26T05:41:57.7666970Z [5399/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/script_type_parser.cpp.o 2024-06-26T05:41:57.9072430Z [5400/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/versioned_symbols.cpp.o 2024-06-26T05:41:57.9515660Z [5401/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/sugared_value.cpp.o 2024-06-26T05:41:57.9780400Z [5402/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/tracer.cpp.o 2024-06-26T05:41:58.0995150Z [5403/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/attributes.cpp.o 2024-06-26T05:41:58.1302610Z [5404/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/alias_analysis.cpp.o 2024-06-26T05:41:58.2947870Z [5405/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/graph_utils.cpp.o 2024-06-26T05:41:58.3836710Z [5406/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/irparser.cpp.o 2024-06-26T05:41:58.4441100Z [5407/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/node_hashing.cpp.o 2024-06-26T05:41:58.4681030Z [5408/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/ir.cpp.o 2024-06-26T05:41:58.6088170Z [5409/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/scope.cpp.o 2024-06-26T05:41:58.6138420Z [5410/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/subgraph_matcher.cpp.o 2024-06-26T05:41:58.6675890Z [5411/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/constants.cpp.o 2024-06-26T05:41:58.7155190Z [5412/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/type_hashing.cpp.o 2024-06-26T05:41:58.8836530Z [5413/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_log.cpp.o 2024-06-26T05:41:59.0720440Z [5414/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_opt_limit.cpp.o 2024-06-26T05:41:59.1215540Z [5415/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SumKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:59.1376930Z [5416/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/StackKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:59.1714520Z [5417/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:59.2689860Z [5418/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:59.4489180Z [5419/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SparseFactories.cpp.DEFAULT.cpp.o 2024-06-26T05:41:59.5074790Z [5420/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/xnnpack_rewrite.cpp.o 2024-06-26T05:41:59.5253070Z [5421/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:59.5406230Z [5422/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SortingKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:59.6548050Z [5423/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/vulkan_rewrite.cpp.o 2024-06-26T05:41:59.6992650Z [5424/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:59.8802880Z [5425/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RenormKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:59.9178250Z [5426/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:41:59.9211720Z [5427/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:00.0048370Z [5428/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PowKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:00.0219190Z [5429/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SampledAddmmKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:00.0255540Z [5430/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:00.0799160Z [5431/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:00.1578560Z [5432/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:00.3380320Z [5433/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PixelShuffleKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:00.4126270Z [5434/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:00.5282170Z [5435/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxUnpoolKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:00.5620810Z [5436/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PaddingKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:00.5899840Z [5437/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MultinomialKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:00.5951270Z [5438/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPooling.cpp.DEFAULT.cpp.o 2024-06-26T05:42:00.6052690Z [5439/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:00.7856100Z [5440/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LerpKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:00.8433180Z [5441/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPoolKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:00.9115850Z [5442/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/IndexKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:01.0502030Z [5443/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/HistogramKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:01.0537390Z [5444/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:01.1342070Z [5445/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedSGDKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:01.1755820Z [5446/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedAdamKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:01.2348700Z [5447/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:01.3064160Z [5448/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FillKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:01.3559840Z [5449/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedAdagradKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:01.4426940Z [5450/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FlashAttentionKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:01.5051170Z [5451/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DepthwiseConvKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:01.5504890Z [5452/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistributionKernels.cpp.DEFAULT.cpp.o 2024-06-26T05:42:01.6888430Z [5453/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:01.7043990Z [5454/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CrossKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:01.7944690Z [5455/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ChannelShuffleKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:01.9148490Z [5456/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ComplexKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:01.9891170Z [5457/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BlasKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:02.0889080Z [5458/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CatKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:02.1673270Z [5459/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AvgPoolKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:02.2420450Z [5460/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:02.2542060Z [5461/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AmpGradScalerKernels.cpp.DEFAULT.cpp.o 2024-06-26T05:42:02.3004940Z [5462/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CopyKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:02.3420970Z [5463/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:02.3769770Z [5464/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o 2024-06-26T05:42:02.4172670Z [5465/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.o 2024-06-26T05:42:02.4710980Z [5466/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/vulkan/Context.cpp.o 2024-06-26T05:42:02.5783350Z [5467/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/metal/Context.cpp.o 2024-06-26T05:42:02.6666130Z [5468/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalConvParams.mm.o 2024-06-26T05:42:02.7330810Z [5469/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalGuardImpl.cpp.o 2024-06-26T05:42:03.0475840Z [5470/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalCommandBuffer.mm.o 2024-06-26T05:42:03.1243470Z [5471/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/update_graph_executor_opt.cpp.o 2024-06-26T05:42:03.1753550Z [5472/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/utf8_decoding_ignore.cpp.o 2024-06-26T05:42:03.2037870Z [5473/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalContext.mm.o 2024-06-26T05:42:03.5006560Z [5474/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalPrepackOpRegister.cpp.o 2024-06-26T05:42:03.5110470Z [5475/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalTensorImplStorage.mm.o 2024-06-26T05:42:03.5844570Z [5476/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalTensorUtils.mm.o 2024-06-26T05:42:03.6395910Z [5477/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNClampOp.mm.o 2024-06-26T05:42:03.6643740Z [5478/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/argument_spec.cpp.o 2024-06-26T05:42:03.7063070Z [5479/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalAten.mm.o 2024-06-26T05:42:03.7618310Z [5480/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/autodiff.cpp.o 2024-06-26T05:42:03.9004560Z [5481/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/instruction.cpp.o 2024-06-26T05:42:04.0412800Z [5482/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry_util.cpp.o 2024-06-26T05:42:04.0517490Z [5483/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry.cpp.o 2024-06-26T05:42:04.0991600Z [5484/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_exception.cpp.o 2024-06-26T05:42:04.2382290Z [5485/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNConvOp.mm.o 2024-06-26T05:42:04.3314660Z [5486/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp.o 2024-06-26T05:42:04.3428800Z [5487/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/logging.cpp.o 2024-06-26T05:42:04.4771820Z [5488/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/print_handler.cpp.o 2024-06-26T05:42:04.7076730Z [5489/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/graph_executor.cpp.o 2024-06-26T05:42:04.7863650Z [5490/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/frame.cpp.o 2024-06-26T05:42:04.9031590Z [5491/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter.cpp.o 2024-06-26T05:42:05.0861470Z [5492/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_trace.cpp.o 2024-06-26T05:42:05.0957460Z [5493/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/slice_indices_adjust.cpp.o 2024-06-26T05:42:05.1965770Z [5494/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/operator.cpp.o 2024-06-26T05:42:05.2013300Z [5495/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/script_profile.cpp.o 2024-06-26T05:42:05.2549470Z [5496/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_record.cpp.o 2024-06-26T05:42:05.2650560Z [5497/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp.o 2024-06-26T05:42:05.3023190Z [5498/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp.o 2024-06-26T05:42:05.6018670Z [5499/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_ops_utils.cpp.o 2024-06-26T05:42:05.6530200Z [5500/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/fusion.cpp.o 2024-06-26T05:42:05.8517460Z [5501/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/memory_planner.cpp.o 2024-06-26T05:42:05.8818320Z [5502/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/impl.cpp.o 2024-06-26T05:42:06.0606910Z [5503/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/passes.cpp.o 2024-06-26T05:42:06.0960340Z [5504/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp.o 2024-06-26T05:42:06.3165160Z [5505/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_script.cpp.o 2024-06-26T05:42:06.3689840Z [5506/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry.cpp.o 2024-06-26T05:42:06.4003050Z [5507/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/generated_ops.cpp.o 2024-06-26T05:42:06.4277060Z [5508/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/native_ops.cpp.o 2024-06-26T05:42:06.5300920Z [5509/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/ops.cpp.o 2024-06-26T05:42:06.5432310Z [5510/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp.o 2024-06-26T05:42:06.6206020Z [5511/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/te_wrapper.cpp.o 2024-06-26T05:42:06.8391210Z [5512/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/vararg_functions.cpp.o 2024-06-26T05:42:06.8535870Z [5513/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp.o 2024-06-26T05:42:06.9212470Z [5514/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_export_helpers.cpp.o 2024-06-26T05:42:07.0310740Z [5515/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_read.cpp.o 2024-06-26T05:42:07.1334520Z [5516/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_source.cpp.o 2024-06-26T05:42:07.1569110Z [5517/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickle.cpp.o 2024-06-26T05:42:07.3438660Z [5518/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import.cpp.o 2024-06-26T05:42:07.4169850Z [5519/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/python_print.cpp.o 2024-06-26T05:42:07.4225410Z [5520/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/source_range_serialization.cpp.o 2024-06-26T05:42:07.5352770Z [5521/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/type_name_uniquer.cpp.o 2024-06-26T05:42:07.7304950Z [5522/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler.cpp.o 2024-06-26T05:42:07.9950710Z [5523/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/block_codegen.cpp.o 2024-06-26T05:42:08.0426310Z [5524/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_overlap.cpp.o 2024-06-26T05:42:08.0780650Z [5525/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/unpickler.cpp.o 2024-06-26T05:42:08.1086910Z [5526/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_inference.cpp.o 2024-06-26T05:42:08.1825260Z [5527/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/codegen.cpp.o 2024-06-26T05:42:08.3025760Z [5528/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/cpp_codegen.cpp.o 2024-06-26T05:42:08.3856200Z [5529/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/expr.cpp.o 2024-06-26T05:42:08.3902080Z [5530/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp.o 2024-06-26T05:42:08.4187790Z [5531/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_registry.cpp.o 2024-06-26T05:42:08.5721210Z [5532/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/eval.cpp.o 2024-06-26T05:42:08.8039180Z [5533/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir.cpp.o 2024-06-26T05:42:08.9460540Z [5534/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp.o 2024-06-26T05:42:08.9695160Z [5535/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_core.cpp.o 2024-06-26T05:42:09.0157400Z [5536/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions.cpp.o 2024-06-26T05:42:09.2234190Z [5537/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/hash_provider.cpp.o 2024-06-26T05:42:09.2534760Z [5538/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/graph_opt.cpp.o 2024-06-26T05:42:09.2570580Z [5539/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_codegen.cpp.o 2024-06-26T05:42:09.3640500Z [5540/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_cloner.cpp.o 2024-06-26T05:42:09.4113170Z [5541/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_mutator.cpp.o 2024-06-26T05:42:09.4182720Z [5542/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_jit.cpp.o 2024-06-26T05:42:09.7240010Z [5543/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_printer.cpp.o 2024-06-26T05:42:09.7875930Z [5544/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_verifier.cpp.o 2024-06-26T05:42:09.8309490Z [5545/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_simplifier.cpp.o 2024-06-26T05:42:09.8819830Z [5546/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_visitor.cpp.o 2024-06-26T05:42:10.1809650Z [5547/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/kernel.cpp.o 2024-06-26T05:42:10.2701770Z [5548/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp.o 2024-06-26T05:42:10.3100770Z [5549/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest.cpp.o 2024-06-26T05:42:10.5459220Z [5550/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/lowerings.cpp.o 2024-06-26T05:42:10.7171900Z [5551/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/conv2d.cpp.o 2024-06-26T05:42:10.7573130Z [5552/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp.o 2024-06-26T05:42:10.7977480Z [5553/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/matmul.cpp.o 2024-06-26T05:42:10.8677760Z [5554/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/misc.cpp.o 2024-06-26T05:42:11.0330930Z [5555/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/norm.cpp.o 2024-06-26T05:42:11.0904550Z [5556/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/reduction.cpp.o 2024-06-26T05:42:11.1511410Z [5557/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/pointwise.cpp.o 2024-06-26T05:42:11.2617440Z [5558/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/quantization.cpp.o 2024-06-26T05:42:11.2927540Z [5559/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/types.cpp.o 2024-06-26T05:42:11.3027870Z [5560/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/tensor.cpp.o 2024-06-26T05:42:11.4604500Z [5561/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/reduction.cpp.o 2024-06-26T05:42:11.5460150Z [5562/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/unique_name_manager.cpp.o 2024-06-26T05:42:11.6349310Z [5563/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/file_check.cpp.o 2024-06-26T05:42:11.7314760Z [5564/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/softmax.cpp.o 2024-06-26T05:42:11.7546330Z [5565/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/registerizer.cpp.o 2024-06-26T05:42:11.7624410Z [5566/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/hooks_for_testing.cpp.o 2024-06-26T05:42:11.7734030Z [5567/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/config.cpp.o 2024-06-26T05:42:11.7981800Z [5568/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_device.cpp.o 2024-06-26T05:42:11.9219210Z [5569/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_interface.cpp.o 2024-06-26T05:42:11.9819670Z [5570/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/lowering_context.cpp.o 2024-06-26T05:42:12.1335540Z [5571/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/hash.cpp.o 2024-06-26T05:42:12.1636310Z [5572/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/debug_util.cpp.o 2024-06-26T05:42:12.2938910Z [5573/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/helpers.cpp.o 2024-06-26T05:42:12.3401290Z [5574/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_dump_util.cpp.o 2024-06-26T05:42:12.3651990Z [5575/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/multi_wait.cpp.o 2024-06-26T05:42:12.3955720Z [5576/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir.cpp.o 2024-06-26T05:42:12.4209320Z [5577/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_util.cpp.o 2024-06-26T05:42:12.4234840Z [5578/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_metadata.cpp.o 2024-06-26T05:42:12.5117980Z [5579/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/lazy_graph_executor.cpp.o 2024-06-26T05:42:12.6456690Z [5580/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/permutation_util.cpp.o 2024-06-26T05:42:12.7094670Z [5581/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/metrics.cpp.o 2024-06-26T05:42:12.8679030Z [5582/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp.o 2024-06-26T05:42:12.9296160Z [5583/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/thread_pool.cpp.o 2024-06-26T05:42:12.9496690Z [5584/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/utils.cpp.o 2024-06-26T05:42:12.9727870Z [5585/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape.cpp.o 2024-06-26T05:42:13.0013630Z [5586/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor.cpp.o 2024-06-26T05:42:13.0287530Z [5587/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_impl.cpp.o 2024-06-26T05:42:13.1606550Z [5588/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_util.cpp.o 2024-06-26T05:42:13.2006130Z [5589/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/counters.cpp.o 2024-06-26T05:42:13.2939890Z [5590/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/events.cpp.o 2024-06-26T05:42:13.3959550Z [5591/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/trie.cpp.o 2024-06-26T05:42:13.5080560Z [5592/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape_inference.cpp.o 2024-06-26T05:42:13.5946660Z [5593/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/combined_traceback.cpp.o 2024-06-26T05:42:13.6028160Z [5594/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/data_flow.cpp.o 2024-06-26T05:42:13.6370270Z [5595/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_client_interface.cpp.o 2024-06-26T05:42:13.6688840Z [5596/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_shim.cpp.o 2024-06-26T05:42:13.7251570Z [5597/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/observer.cpp.o 2024-06-26T05:42:13.7870590Z [5598/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/collection.cpp.o 2024-06-26T05:42:13.8117310Z [5599/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/python_tracer.cpp.o 2024-06-26T05:42:13.9320440Z [5600/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/perf.cpp.o 2024-06-26T05:42:13.9724490Z [5601/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/vulkan.cpp.o 2024-06-26T05:42:14.1340130Z [5602/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp.o 2024-06-26T05:42:14.2525420Z [5603/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/function.cpp.o 2024-06-26T05:42:14.3156770Z [5604/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import.cpp.o 2024-06-26T05:42:14.4532810Z [5605/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/backend.cpp.o 2024-06-26T05:42:14.4643400Z [5606/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/module.cpp.o 2024-06-26T05:42:14.4777940Z [5607/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/interpreter.cpp.o 2024-06-26T05:42:14.5200510Z [5608/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/observer.cpp.o 2024-06-26T05:42:14.5316740Z [5609/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/registry.cpp.o 2024-06-26T05:42:14.7752670Z [5610/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/flatbuffer_loader.cpp.o 2024-06-26T05:42:14.8671440Z [5611/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/context.cpp.o 2024-06-26T05:42:14.9057790Z [5612/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_bytecode.cpp.o 2024-06-26T05:42:14.9158260Z [5613/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_operators.cpp.o 2024-06-26T05:42:14.9581740Z [5614/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/aot_compiler.cpp.o 2024-06-26T05:42:15.1180410Z [5615/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/prim_ops_registery.cpp.o 2024-06-26T05:42:15.1903630Z [5616/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/quantization.cpp.o 2024-06-26T05:42:15.2400140Z [5617/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/promoted_prim_ops.cpp.o 2024-06-26T05:42:15.2876190Z [5618/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/utils.cpp.o 2024-06-26T05:42:15.3177170Z [5619/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/upgrader_mobile.cpp.o 2024-06-26T05:42:15.3268420Z [5620/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/register_ops_common_utils.cpp.o 2024-06-26T05:42:15.3333470Z [5621/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/type_parser.cpp.o 2024-06-26T05:42:15.4202380Z [5622/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/version_map.cpp.o 2024-06-26T05:42:15.5530670Z [5623/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders.cpp.o 2024-06-26T05:42:15.7532520Z [5624/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp.o 2024-06-26T05:42:15.7858460Z [5625/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/add_if_then_else.cpp.o 2024-06-26T05:42:15.8905990Z [5626/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/annotate_warns.cpp.o 2024-06-26T05:42:15.9152770Z [5627/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/check_strict_fusion.cpp.o 2024-06-26T05:42:15.9310080Z [5628/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize.cpp.o 2024-06-26T05:42:16.0498300Z [5629/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp.o 2024-06-26T05:42:16.3129190Z [5630/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/batch_mm.cpp.o 2024-06-26T05:42:16.3330070Z [5631/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/bailout_graph.cpp.o 2024-06-26T05:42:16.4357820Z [5632/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/concat_opt.cpp.o 2024-06-26T05:42:16.4478510Z [5633/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/common_subexpression_elimination.cpp.o 2024-06-26T05:42:16.5061170Z [5634/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_pooling.cpp.o 2024-06-26T05:42:16.5819370Z [5635/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_propagation.cpp.o 2024-06-26T05:42:16.6555970Z [5636/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_profiling.cpp.o 2024-06-26T05:42:16.7894710Z [5637/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_undefinedness.cpp.o 2024-06-26T05:42:16.8362430Z [5638/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp.o 2024-06-26T05:42:16.8387300Z [5639/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_functional_graphs.cpp.o 2024-06-26T05:42:16.9875860Z [5640/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp.o 2024-06-26T05:42:17.0319860Z [5641/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dead_code_elimination.cpp.o 2024-06-26T05:42:17.0813670Z [5642/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/device_type_analysis.cpp.o 2024-06-26T05:42:17.0876640Z [5643/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/decompose_ops.cpp.o 2024-06-26T05:42:17.1332220Z [5644/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dtype_analysis.cpp.o 2024-06-26T05:42:17.3258870Z [5645/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/eliminate_no_ops.cpp.o 2024-06-26T05:42:17.3661080Z [5646/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/erase_number_types.cpp.o 2024-06-26T05:42:17.4472900Z [5647/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp.o 2024-06-26T05:42:17.5223250Z [5648/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_linear_bn.cpp.o 2024-06-26T05:42:17.6805800Z [5649/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_conv_bn.cpp.o 2024-06-26T05:42:17.6909130Z [5650/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_concat_linear.cpp.o 2024-06-26T05:42:17.7271010Z [5651/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp.o 2024-06-26T05:42:17.9185460Z [5652/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_graph_optimizations.cpp.o 2024-06-26T05:42:17.9934410Z [5653/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_folding.cpp.o 2024-06-26T05:42:18.0034600Z [5654/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_folding.cpp.o 2024-06-26T05:42:18.0550950Z [5655/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_transpose.cpp.o 2024-06-26T05:42:18.2265610Z [5656/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_linear.cpp.o 2024-06-26T05:42:18.2667070Z [5657/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/freeze_module.cpp.o 2024-06-26T05:42:18.3719810Z [5658/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_relu.cpp.o 2024-06-26T05:42:18.5029070Z [5659/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_rewrite_helper.cpp.o 2024-06-26T05:42:18.6040120Z [5660/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/hoist_conv_packed_params.cpp.o 2024-06-26T05:42:18.6764130Z [5661/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp.o 2024-06-26T05:42:18.7168280Z [5662/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp.o 2024-06-26T05:42:18.7377290Z [5663/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_fork_wait.cpp.o 2024-06-26T05:42:18.9084030Z [5664/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_forked_closures.cpp.o 2024-06-26T05:42:18.9427490Z [5665/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_fuser.cpp.o 2024-06-26T05:42:18.9631090Z [5666/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/guard_elimination.cpp.o 2024-06-26T05:42:19.0721700Z [5667/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inliner.cpp.o 2024-06-26T05:42:19.1920380Z [5668/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inplace_check.cpp.o 2024-06-26T05:42:19.3413380Z [5669/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/integer_value_refinement.cpp.o 2024-06-26T05:42:19.4280460Z [5670/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lift_closures.cpp.o 2024-06-26T05:42:19.4552740Z [5671/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/loop_unrolling.cpp.o 2024-06-26T05:42:19.5752290Z [5672/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_tuples.cpp.o 2024-06-26T05:42:19.6120490Z [5673/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_grad_of.cpp.o 2024-06-26T05:42:19.7245810Z [5674/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/insert_guards.cpp.o 2024-06-26T05:42:19.9542830Z [5675/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/liveness.cpp.o 2024-06-26T05:42:19.9572630Z [5676/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/normalize_ops.cpp.o 2024-06-26T05:42:19.9656560Z [5677/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/pass_manager.cpp.o 2024-06-26T05:42:20.1075460Z [5678/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole.cpp.o 2024-06-26T05:42:20.1659530Z [5679/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/metal_rewrite.cpp.o 2024-06-26T05:42:20.1764130Z [5680/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_alias_sensitive.cpp.o 2024-06-26T05:42:20.3326750Z [5681/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_dict_idioms.cpp.o 2024-06-26T05:42:20.3930680Z [5682/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/mkldnn_rewrite.cpp.o 2024-06-26T05:42:20.5751530Z [5683/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_list_idioms.cpp.o 2024-06-26T05:42:20.5830670Z [5684/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_non_tensor.cpp.o 2024-06-26T05:42:20.6068270Z [5685/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/prepack_folding.cpp.o 2024-06-26T05:42:20.6178550Z [5686/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp.o 2024-06-26T05:42:20.8049610Z [5687/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/fusion_passes.cpp.o 2024-06-26T05:42:20.8745480Z [5688/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/helper.cpp.o 2024-06-26T05:42:20.8803340Z [5689/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/quantization_type.cpp.o 2024-06-26T05:42:20.9464410Z [5690/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_observers.cpp.o 2024-06-26T05:42:21.1377980Z [5691/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp.o 2024-06-26T05:42:21.1909190Z [5692/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/finalize.cpp.o 2024-06-26T05:42:21.2745450Z [5693/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_dropout.cpp.o 2024-06-26T05:42:21.3410030Z [5694/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_exceptions.cpp.o 2024-06-26T05:42:21.4391420Z [5695/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/refine_tuple_types.cpp.o 2024-06-26T05:42:21.4689480Z [5696/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_expands.cpp.o 2024-06-26T05:42:21.5569140Z [5697/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_mutation.cpp.o 2024-06-26T05:42:21.6788740Z [5698/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_redundant_profiles.cpp.o 2024-06-26T05:42:21.6974100Z [5699/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/replacement_of_old_operators.cpp.o 2024-06-26T05:42:21.7383040Z [5700/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/register_packed_params.cpp.o 2024-06-26T05:42:21.8494660Z [5701/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/requires_grad_analysis.cpp.o 2024-06-26T05:42:21.9153280Z [5702/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/restore_mutation.cpp.o 2024-06-26T05:42:22.0262310Z [5703/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/shape_analysis.cpp.o 2024-06-26T05:42:22.1370870Z [5704/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/subgraph_rewrite.cpp.o 2024-06-26T05:42:22.2360090Z [5705/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_analysis.cpp.o 2024-06-26T05:42:22.3101680Z [5706/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_cache.cpp.o 2024-06-26T05:42:22.4695840Z [5707/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/specialize_autogradzero.cpp.o 2024-06-26T05:42:22.4995800Z [5708/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp.o 2024-06-26T05:42:22.5199900Z [5709/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/memory_dag.cpp.o 2024-06-26T05:42:22.6763350Z [5710/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/op_registry.cpp.o 2024-06-26T05:42:22.7826530Z [5711/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/optimization_utils.cpp.o 2024-06-26T05:42:22.9042250Z [5712/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/tensorexpr_fuser.cpp.o 2024-06-26T05:42:22.9077390Z [5713/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/subgraph_utils.cpp.o 2024-06-26T05:42:22.9670060Z [5714/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp.o 2024-06-26T05:42:23.0272150Z [5715/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/value_refinement_utils.cpp.o 2024-06-26T05:42:23.0489050Z [5716/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/variadic_ops.cpp.o 2024-06-26T05:42:23.6885150Z [5717/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BinaryOps.mm.o 2024-06-26T05:42:23.7331590Z [5718/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BitwiseOps.mm.o 2024-06-26T05:42:23.7478040Z [5719/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Blas.mm.o 2024-06-26T05:42:23.8419270Z [5720/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Bucketization.mm.o 2024-06-26T05:42:23.8628400Z [5721/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ConstantOps.mm.o 2024-06-26T05:42:23.9736030Z [5722/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Copy.mm.o 2024-06-26T05:42:24.0226410Z [5723/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/CrossKernel.mm.o 2024-06-26T05:42:24.0451870Z [5724/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Convolution.mm.o 2024-06-26T05:42:24.4146200Z [5725/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamKernel.mm.o 2024-06-26T05:42:24.7446140Z [5726/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Eye.mm.o 2024-06-26T05:42:24.7580920Z [5727/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Distributions.mm.o 2024-06-26T05:42:24.7848350Z [5728/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FastFourierTransform.mm.o 2024-06-26T05:42:24.7942200Z [5729/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamKernelImpl.mm.o 2024-06-26T05:42:24.7952600Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/FusedAdamKernelImpl.mm:7: 2024-06-26T05:42:24.7958150Z /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/MultiTensorApply.h:4:10: warning: non-portable path to file ''; specified path differs in case from file name on disk [-Wnonportable-include-path] 2024-06-26T05:42:24.7962720Z #include 2024-06-26T05:42:24.7966210Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2024-06-26T05:42:24.7966880Z 2024-06-26T05:42:24.7967420Z 1 warning generated. 2024-06-26T05:42:24.8220450Z [5730/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWKernel.mm.o 2024-06-26T05:42:24.8320100Z [5731/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.mm.o 2024-06-26T05:42:24.8323440Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.mm:7: 2024-06-26T05:42:24.8424060Z /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/MultiTensorApply.h:4:10: warning: non-portable path to file ''; specified path differs in case from file name on disk [-Wnonportable-include-path] 2024-06-26T05:42:24.8426700Z #include 2024-06-26T05:42:24.8428200Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2024-06-26T05:42:24.8429630Z 2024-06-26T05:42:24.8430760Z 1 warning generated. 2024-06-26T05:42:24.9818330Z [5732/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.mm.o 2024-06-26T05:42:24.9821910Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.mm:7: 2024-06-26T05:42:24.9854040Z /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/MultiTensorApply.h:4:10: warning: non-portable path to file ''; specified path differs in case from file name on disk [-Wnonportable-include-path] 2024-06-26T05:42:24.9906450Z #include 2024-06-26T05:42:25.0070530Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2024-06-26T05:42:25.0171590Z 2024-06-26T05:42:25.0271750Z 1 warning generated. 2024-06-26T05:42:25.0374780Z [5733/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWKernelImpl.mm.o 2024-06-26T05:42:25.0475340Z In file included from /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/FusedAdamWKernelImpl.mm:7: 2024-06-26T05:42:25.0580510Z /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/MultiTensorApply.h:4:10: warning: non-portable path to file ''; specified path differs in case from file name on disk [-Wnonportable-include-path] 2024-06-26T05:42:25.0684360Z #include 2024-06-26T05:42:25.0685490Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2024-06-26T05:42:25.0787310Z 2024-06-26T05:42:25.0889850Z 1 warning generated. 2024-06-26T05:42:25.6882700Z [5734/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/GridSampler.mm.o 2024-06-26T05:42:25.7528830Z [5735/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Gamma.mm.o 2024-06-26T05:42:25.8320120Z [5736/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Lerp.mm.o 2024-06-26T05:42:25.8443250Z [5737/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/HistogramKernel.mm.o 2024-06-26T05:42:25.8708970Z [5738/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Inverse.mm.o 2024-06-26T05:42:25.8991380Z [5739/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Indexing.mm.o 2024-06-26T05:42:25.9344270Z [5740/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Linear.mm.o 2024-06-26T05:42:25.9451770Z [5741/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/LinearAlgebra.mm.o 2024-06-26T05:42:26.6676800Z [5742/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/LossOps.mm.o 2024-06-26T05:42:26.7061340Z [5743/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Normalization.mm.o 2024-06-26T05:42:26.7458390Z [5744/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Pad.mm.o 2024-06-26T05:42:26.7868390Z [5745/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/PixelShuffle.mm.o 2024-06-26T05:42:26.8837930Z [5746/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RangeFactories.mm.o 2024-06-26T05:42:26.9148790Z [5747/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Pooling.mm.o 2024-06-26T05:42:26.9506400Z [5748/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/PointwiseOps.mm.o 2024-06-26T05:42:26.9610390Z [5749/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Quantized.mm.o 2024-06-26T05:42:27.5935690Z [5750/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RenormKernel.mm.o 2024-06-26T05:42:27.6493040Z [5751/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ReduceOps.mm.o 2024-06-26T05:42:27.8211990Z [5752/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ScatterGather.mm.o 2024-06-26T05:42:27.8285920Z [5753/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Scalar.mm.o 2024-06-26T05:42:27.8396980Z [5754/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RnnOps.mm.o 2024-06-26T05:42:27.8644490Z [5755/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Repeat.mm.o 2024-06-26T05:42:27.9188240Z [5756/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Shape.mm.o 2024-06-26T05:42:27.9535710Z [5757/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SoftMax.mm.o 2024-06-26T05:42:28.5986750Z [5758/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Sort.mm.o 2024-06-26T05:42:28.6296460Z [5759/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SummaryOps.mm.o 2024-06-26T05:42:28.6972110Z [5760/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/TriangularOps.mm.o 2024-06-26T05:42:28.7414850Z [5761/5905] Building CXX object caffe2/CMakeFiles/torch.dir/__/empty.cpp.o 2024-06-26T05:42:28.7818320Z [5762/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/TensorCompare.mm.o 2024-06-26T05:42:28.8576640Z [5763/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnaryOps.mm.o 2024-06-26T05:42:28.8754670Z [5764/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Unique.mm.o 2024-06-26T05:42:28.8854570Z [5765/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnaryKernel.mm.o 2024-06-26T05:42:28.8954820Z [5766/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UpSample.mm.o 2024-06-26T05:42:29.1943540Z [5767/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/stubs/base.cpp.o 2024-06-26T05:42:29.2236090Z [5768/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/unwind/unwind_fb.cpp.o 2024-06-26T05:42:29.2343130Z [5769/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/nvtx_observer.cpp.o 2024-06-26T05:42:29.2459990Z [5770/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/unwind/unwind.cpp.o 2024-06-26T05:42:29.3173720Z [5771/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/privateuse1_observer.cpp.o 2024-06-26T05:42:29.3279020Z [5772/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/itt_observer.cpp.o 2024-06-26T05:42:29.4297650Z [5773/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/execution_trace_observer.cpp.o 2024-06-26T05:42:29.5896490Z [5774/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/cpp_stacktraces.cpp.o 2024-06-26T05:42:29.7374340Z [5775/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/variadic.cpp.o 2024-06-26T05:42:29.7429220Z [5776/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/util.cpp.o 2024-06-26T05:42:29.7660290Z [5777/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/View.mm.o 2024-06-26T05:42:29.8096400Z [5778/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/schema_info.cpp.o 2024-06-26T05:42:29.8257470Z [5779/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/WeightNorm.mm.o 2024-06-26T05:42:30.2140240Z [5780/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_graph.cpp.o 2024-06-26T05:42:30.2417900Z [5781/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_inplace_ops.cpp.o 2024-06-26T05:42:30.2929070Z [5782/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/tensor_flatten.cpp.o 2024-06-26T05:42:30.3170310Z [5783/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/cuda/interface.cpp.o 2024-06-26T05:42:30.3267730Z [5784/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/check_alias_annotation.cpp.o 2024-06-26T05:42:30.3311140Z [5785/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_c10_ops.cpp.o 2024-06-26T05:42:30.6605490Z [5786/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/config.cpp.o 2024-06-26T05:42:30.7539560Z [5787/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/autocast.cpp.o 2024-06-26T05:42:30.8350430Z [5788/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops.cpp.o 2024-06-26T05:42:30.8811410Z [5789/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/dynamic_ir.cpp.o 2024-06-26T05:42:30.8881110Z [5790/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/debug_info.cpp.o 2024-06-26T05:42:30.9634280Z [5791/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/device_data.cpp.o 2024-06-26T05:42:31.1093110Z [5792/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp.o 2024-06-26T05:42:31.1619300Z [5793/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_special_ops.cpp.o 2024-06-26T05:42:31.2042040Z [5794/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/generic.cpp.o 2024-06-26T05:42:31.2601800Z [5795/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp.o 2024-06-26T05:42:31.4706490Z [5796/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp.o 2024-06-26T05:42:31.5120860Z [5797/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp.o 2024-06-26T05:42:31.6440080Z [5798/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node.cpp.o 2024-06-26T05:42:31.7193590Z [5799/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp.o 2024-06-26T05:42:31.7427670Z [5800/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp.o 2024-06-26T05:42:31.9689040Z [5801/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/export_data.cpp.o 2024-06-26T05:42:32.1037680Z [5802/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp.o 2024-06-26T05:42:32.1258090Z [5803/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_native_functions.cpp.o 2024-06-26T05:42:32.1649300Z [5804/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import_data.cpp.o 2024-06-26T05:42:32.4427400Z [5805/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/optim/sgd.cpp.o 2024-06-26T05:42:32.4526010Z [5806/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/out_types.cpp.o 2024-06-26T05:42:32.5395410Z [5807/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/random.cpp.o 2024-06-26T05:42:32.5802430Z [5808/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/sequential.cpp.o 2024-06-26T05:42:32.5829510Z [5809/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/TraceTypeManual.cpp.o 2024-06-26T05:42:32.7614260Z [5810/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/flatbuffer_serializer.cpp.o 2024-06-26T05:42:32.9327130Z [5811/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport.cpp.o 2024-06-26T05:42:32.9781200Z [5812/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/jit.cpp.o 2024-06-26T05:42:33.0249000Z [5813/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/FunctionsManual.cpp.o 2024-06-26T05:42:33.0785340Z [5814/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport_manager.cpp.o 2024-06-26T05:42:33.1425240Z [5815/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/onnx.cpp.o 2024-06-26T05:42:33.3309010Z [5816/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_bytecode.cpp.o 2024-06-26T05:42:33.3551120Z [5817/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/VariableTypeManual.cpp.o 2024-06-26T05:42:33.3597350Z [5818/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/byte_order.cpp.o 2024-06-26T05:42:33.4457010Z [5819/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/cuda.cpp.o 2024-06-26T05:42:33.5714860Z [5820/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module_save.cpp.o 2024-06-26T05:42:33.8436710Z [5821/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export.cpp.o 2024-06-26T05:42:33.8824080Z [5822/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp.o 2024-06-26T05:42:33.9501690Z [5823/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_module.cpp.o 2024-06-26T05:42:34.0740270Z [5824/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/enum.cpp.o 2024-06-26T05:42:34.2441180Z [5825/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/datasets/mnist.cpp.o 2024-06-26T05:42:34.2836560Z [5826/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/distributed.cpp.o 2024-06-26T05:42:34.2870090Z [5827/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/imethod.cpp.o 2024-06-26T05:42:34.3505280Z [5828/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/sequential.cpp.o 2024-06-26T05:42:34.3871140Z [5829/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/mps.cpp.o 2024-06-26T05:42:34.4305400Z [5830/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/stream.cpp.o 2024-06-26T05:42:34.4518010Z [5831/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/random.cpp.o 2024-06-26T05:42:35.0428420Z [5832/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize.cpp.o 2024-06-26T05:42:35.1785340Z [5833/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/init.cpp.o 2024-06-26T05:42:35.2038590Z [5834/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/module.cpp.o 2024-06-26T05:42:35.2340070Z [5835/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/_functions.cpp.o 2024-06-26T05:42:35.2715280Z [5836/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/adaptive.cpp.o 2024-06-26T05:42:35.3271750Z [5837/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/activation.cpp.o 2024-06-26T05:42:35.3970290Z [5838/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/batchnorm.cpp.o 2024-06-26T05:42:35.4316880Z [5839/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/normalization.cpp.o 2024-06-26T05:42:36.0249440Z [5840/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/conv.cpp.o 2024-06-26T05:42:36.0595410Z [5841/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/instancenorm.cpp.o 2024-06-26T05:42:36.0910040Z [5842/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/dropout.cpp.o 2024-06-26T05:42:36.2015030Z [5843/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/distance.cpp.o 2024-06-26T05:42:36.2363840Z [5844/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/embedding.cpp.o 2024-06-26T05:42:36.2787480Z [5845/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/fold.cpp.o 2024-06-26T05:42:36.3047360Z [5846/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/linear.cpp.o 2024-06-26T05:42:36.3562340Z [5847/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/loss.cpp.o 2024-06-26T05:42:36.9258500Z [5848/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pixelshuffle.cpp.o 2024-06-26T05:42:36.9562700Z [5849/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/padding.cpp.o 2024-06-26T05:42:37.2026490Z [5850/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/rnn.cpp.o 2024-06-26T05:42:37.2241900Z [5851/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pooling.cpp.o 2024-06-26T05:42:37.2485290Z [5852/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/activation.cpp.o 2024-06-26T05:42:37.2745000Z [5853/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/upsampling.cpp.o 2024-06-26T05:42:37.2975050Z [5854/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/transformer.cpp.o 2024-06-26T05:42:37.3164390Z [5855/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/container/functional.cpp.o 2024-06-26T05:42:37.7159980Z [5856/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/adaptive.cpp.o 2024-06-26T05:42:37.7621150Z [5857/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/batchnorm.cpp.o 2024-06-26T05:42:37.9779090Z [5858/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/embedding.cpp.o 2024-06-26T05:42:37.9928760Z [5859/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/instancenorm.cpp.o 2024-06-26T05:42:38.2472790Z [5860/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/normalization.cpp.o 2024-06-26T05:42:38.2768550Z [5861/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/conv.cpp.o 2024-06-26T05:42:38.2958080Z [5862/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/dropout.cpp.o 2024-06-26T05:42:38.3224990Z [5863/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/linear.cpp.o 2024-06-26T05:42:38.5759340Z [5864/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/padding.cpp.o 2024-06-26T05:42:38.5993970Z [5865/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/pooling.cpp.o 2024-06-26T05:42:38.9250490Z [5866/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/rnn.cpp.o 2024-06-26T05:42:38.9563690Z [5867/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/vision.cpp.o 2024-06-26T05:42:39.1166200Z [5868/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adagrad.cpp.o 2024-06-26T05:42:39.2111100Z [5869/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/transformer.cpp.o 2024-06-26T05:42:39.3983930Z [5870/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adam.cpp.o 2024-06-26T05:42:39.4276210Z [5871/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adamw.cpp.o 2024-06-26T05:42:39.4613720Z [5872/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/optimizer.cpp.o 2024-06-26T05:42:39.4817490Z [5873/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/lbfgs.cpp.o 2024-06-26T05:42:39.6172200Z [5874/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp.o 2024-06-26T05:42:39.7261370Z [5875/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/step_lr.cpp.o 2024-06-26T05:42:39.7785010Z [5876/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/reduce_on_plateau_scheduler.cpp.o 2024-06-26T05:42:39.8129030Z [5877/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/serialize.cpp.o 2024-06-26T05:42:39.9006090Z [5878/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/rmsprop.cpp.o 2024-06-26T05:42:39.9634190Z [5879/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/xpu.cpp.o 2024-06-26T05:42:40.0861460Z [5880/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/sgd.cpp.o 2024-06-26T05:42:40.4630020Z [5881/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSGeneratorImpl.mm.o 2024-06-26T05:42:40.5312560Z [5882/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/input-archive.cpp.o 2024-06-26T05:42:40.5906820Z [5883/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/output-archive.cpp.o 2024-06-26T05:42:40.6404780Z [5884/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/EmptyTensor.cpp.o 2024-06-26T05:42:40.6721160Z [5885/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSEvent.mm.o 2024-06-26T05:42:40.7229020Z [5886/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSDevice.mm.o 2024-06-26T05:42:40.8173060Z [5887/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSAllocator.mm.o 2024-06-26T05:42:41.0181490Z [5888/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSFallback.mm.o 2024-06-26T05:42:41.2039520Z [5889/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Equal.cpp.o 2024-06-26T05:42:41.4268780Z [5890/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSGuardImpl.mm.o 2024-06-26T05:42:41.4662830Z [5891/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSHooks.mm.o 2024-06-26T05:42:41.5524830Z [5892/5905] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/TensorFactory.cpp.o 2024-06-26T05:42:41.5653060Z [5893/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSStream.mm.o 2024-06-26T05:42:41.6401050Z [5894/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSProfiler.mm.o 2024-06-26T05:42:41.7191190Z [5895/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/OperationUtils.mm.o 2024-06-26T05:42:41.8556500Z [5896/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Activation.mm.o 2024-06-26T05:42:41.9320210Z [5897/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/AdaptivePooling.mm.o 2024-06-26T05:42:42.0719900Z [5898/5905] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BinaryKernel.mm.o 2024-06-26T05:42:43.1542870Z [5899/5905] Linking CXX shared library lib/libtorch_cpu.dylib 2024-06-26T05:42:43.1543660Z ld: warning: ignoring duplicate libraries: 'lib/libcpuinfo.a', 'lib/libnnpack.a', 'lib/libpthreadpool.a' 2024-06-26T05:42:43.2773080Z [5900/5905] Linking CXX shared library lib/libtorch.dylib 2024-06-26T05:42:43.2801310Z [5901/5905] Linking CXX shared library lib/libshm.dylib 2024-06-26T05:42:43.3540180Z [5902/5905] Linking CXX executable bin/torch_shm_manager 2024-06-26T05:42:43.5132890Z [5903/5905] Linking CXX shared library lib/libtorch_python.dylib 2024-06-26T05:42:43.6219310Z [5904/5905] Linking CXX shared module functorch/functorch.so 2024-06-26T05:42:43.6219710Z [5904/5905] Install the project... 2024-06-26T05:42:43.6368260Z -- Install configuration: "Release" 2024-06-26T05:42:49.7609130Z Building wheel torch-2.5.0a0+gitb8c4c54 2024-06-26T05:42:49.7609480Z -- Building version 2.5.0a0+gitb8c4c54 2024-06-26T05:42:49.7612270Z 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_9673646592/bin/cmake -DCMAKE_INSTALL_PREFIX=/Users/ec2-user/runner/_work/pytorch/pytorch/torch -DCMAKE_PREFIX_PATH=/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib/python3.9/site-packages -DPython_EXECUTABLE=/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/bin/python -DTORCH_BUILD_VERSION=2.5.0a0+gitb8c4c54 -DUSE_DISTRIBUTED=0 -DUSE_NUMPY=True -DUSE_OPENMP=1 -DUSE_PYTORCH_METAL=1 -DWERROR=1 /Users/ec2-user/runner/_work/pytorch/pytorch 2024-06-26T05:42:49.7614900Z cmake --build . --target install --config Release 2024-06-26T05:42:49.7615180Z running bdist_wheel 2024-06-26T05:42:52.2884670Z running build 2024-06-26T05:42:52.2884880Z running build_py 2024-06-26T05:42:52.3178360Z creating build/lib.macosx-11.1-arm64-3.9 2024-06-26T05:42:52.3178980Z creating build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3180140Z copying torch/_storage_docs.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3181820Z copying torch/_meta_registrations.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3184120Z copying torch/version.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3185930Z copying torch/library.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3187280Z copying torch/_jit_internal.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3188930Z copying torch/_custom_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3190680Z copying torch/return_types.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3191720Z copying torch/_size_docs.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3193090Z copying torch/_torch_docs.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3205390Z copying torch/_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3206840Z copying torch/_utils_internal.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3208360Z copying torch/quasirandom.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3209150Z copying torch/torch_version.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3210510Z copying torch/_VF.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3211280Z copying torch/_streambase.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3212630Z copying torch/_tensor_docs.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3214500Z copying torch/_weights_only_unpickler.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3216010Z copying torch/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3217660Z copying torch/overrides.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3219310Z copying torch/_namedtensor_internals.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3220120Z copying torch/types.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3221450Z copying torch/_linalg_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3222170Z copying torch/__config__.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3223510Z copying torch/_tensor.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3224870Z copying torch/random.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3225670Z copying torch/hub.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3227330Z copying torch/_tensor_str.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3228740Z copying torch/_sources.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3229370Z copying torch/_vmap_internals.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3231040Z copying torch/functional.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3232540Z copying torch/_lowrank.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3233310Z copying torch/_appdirs.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3234820Z copying torch/storage.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3236150Z copying torch/_compile.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3236940Z copying torch/_lobpcg.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3238430Z copying torch/__future__.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3239390Z copying torch/_guards.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3247270Z copying torch/_deploy.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3248190Z copying torch/_python_dispatcher.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3248720Z copying torch/_classes.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3249250Z copying torch/serialization.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3249760Z copying torch/_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.3251460Z creating build/lib.macosx-11.1-arm64-3.9/torchgen 2024-06-26T05:42:52.3252000Z copying torchgen/native_function_generation.py -> build/lib.macosx-11.1-arm64-3.9/torchgen 2024-06-26T05:42:52.3252730Z copying torchgen/gen_vmap_plumbing.py -> build/lib.macosx-11.1-arm64-3.9/torchgen 2024-06-26T05:42:52.3254930Z copying torchgen/gen.py -> build/lib.macosx-11.1-arm64-3.9/torchgen 2024-06-26T05:42:52.3266330Z copying torchgen/gen_executorch.py -> build/lib.macosx-11.1-arm64-3.9/torchgen 2024-06-26T05:42:52.3267060Z copying torchgen/local.py -> build/lib.macosx-11.1-arm64-3.9/torchgen 2024-06-26T05:42:52.3268580Z copying torchgen/gen_functionalization_type.py -> build/lib.macosx-11.1-arm64-3.9/torchgen 2024-06-26T05:42:52.3269580Z copying torchgen/code_template.py -> build/lib.macosx-11.1-arm64-3.9/torchgen 2024-06-26T05:42:52.3271580Z copying torchgen/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torchgen 2024-06-26T05:42:52.3272150Z copying torchgen/yaml_utils.py -> build/lib.macosx-11.1-arm64-3.9/torchgen 2024-06-26T05:42:52.3273010Z copying torchgen/gen_aoti_c_shim.py -> build/lib.macosx-11.1-arm64-3.9/torchgen 2024-06-26T05:42:52.3274000Z copying torchgen/model.py -> build/lib.macosx-11.1-arm64-3.9/torchgen 2024-06-26T05:42:52.3275930Z copying torchgen/context.py -> build/lib.macosx-11.1-arm64-3.9/torchgen 2024-06-26T05:42:52.3276650Z copying torchgen/utils.py -> build/lib.macosx-11.1-arm64-3.9/torchgen 2024-06-26T05:42:52.3278470Z copying torchgen/gen_backend_stubs.py -> build/lib.macosx-11.1-arm64-3.9/torchgen 2024-06-26T05:42:52.3279490Z copying torchgen/gen_lazy_tensor.py -> build/lib.macosx-11.1-arm64-3.9/torchgen 2024-06-26T05:42:52.3282170Z creating build/lib.macosx-11.1-arm64-3.9/functorch 2024-06-26T05:42:52.3282640Z copying functorch/__init__.py -> build/lib.macosx-11.1-arm64-3.9/functorch 2024-06-26T05:42:52.3291120Z creating build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops 2024-06-26T05:42:52.3291870Z copying torch/_higher_order_ops/effects.py -> build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops 2024-06-26T05:42:52.3299310Z copying torch/_higher_order_ops/while_loop.py -> build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops 2024-06-26T05:42:52.3300310Z copying torch/_higher_order_ops/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops 2024-06-26T05:42:52.3301410Z copying torch/_higher_order_ops/strict_mode.py -> build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops 2024-06-26T05:42:52.3302450Z copying torch/_higher_order_ops/torchbind.py -> build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops 2024-06-26T05:42:52.3303490Z copying torch/_higher_order_ops/cond.py -> build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops 2024-06-26T05:42:52.3305440Z copying torch/_higher_order_ops/map.py -> build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops 2024-06-26T05:42:52.3306990Z copying torch/_higher_order_ops/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops 2024-06-26T05:42:52.3307820Z copying torch/_higher_order_ops/out_dtype.py -> build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops 2024-06-26T05:42:52.3308990Z copying torch/_higher_order_ops/associative_scan.py -> build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops 2024-06-26T05:42:52.3309930Z copying torch/_higher_order_ops/auto_functionalize.py -> build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops 2024-06-26T05:42:52.3311080Z copying torch/_higher_order_ops/triton_kernel_wrap.py -> build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops 2024-06-26T05:42:52.3312710Z copying torch/_higher_order_ops/flex_attention.py -> build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops 2024-06-26T05:42:52.3313550Z copying torch/_higher_order_ops/wrap.py -> build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops 2024-06-26T05:42:52.3316180Z creating build/lib.macosx-11.1-arm64-3.9/torch/_prims 2024-06-26T05:42:52.3316690Z copying torch/_prims/debug_prims.py -> build/lib.macosx-11.1-arm64-3.9/torch/_prims 2024-06-26T05:42:52.3317440Z copying torch/_prims/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_prims 2024-06-26T05:42:52.3319350Z copying torch/_prims/context.py -> build/lib.macosx-11.1-arm64-3.9/torch/_prims 2024-06-26T05:42:52.3320170Z copying torch/_prims/rng_prims.py -> build/lib.macosx-11.1-arm64-3.9/torch/_prims 2024-06-26T05:42:52.3321700Z copying torch/_prims/executor.py -> build/lib.macosx-11.1-arm64-3.9/torch/_prims 2024-06-26T05:42:52.3324050Z creating build/lib.macosx-11.1-arm64-3.9/torch/_logging 2024-06-26T05:42:52.3324570Z copying torch/_logging/_internal.py -> build/lib.macosx-11.1-arm64-3.9/torch/_logging 2024-06-26T05:42:52.3325670Z copying torch/_logging/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_logging 2024-06-26T05:42:52.3326440Z copying torch/_logging/_registrations.py -> build/lib.macosx-11.1-arm64-3.9/torch/_logging 2024-06-26T05:42:52.3327900Z copying torch/_logging/structured.py -> build/lib.macosx-11.1-arm64-3.9/torch/_logging 2024-06-26T05:42:52.3331780Z creating build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3332340Z copying torch/_functorch/partitioners.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3333920Z copying torch/_functorch/compile_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3334670Z copying torch/_functorch/config.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3335860Z copying torch/_functorch/autograd_function.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3337700Z copying torch/_functorch/python_key.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3338370Z copying torch/_functorch/pytree_hacks.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3339250Z copying torch/_functorch/pyfunctorch.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3340740Z copying torch/_functorch/deprecated.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3341570Z copying torch/_functorch/top_operators_github_usage.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3343070Z copying torch/_functorch/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3343860Z copying torch/_functorch/batch_norm_replacement.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3344770Z copying torch/_functorch/fx_minifier.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3346340Z copying torch/_functorch/apis.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3347350Z copying torch/_functorch/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3348340Z copying torch/_functorch/aot_autograd.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3350010Z copying torch/_functorch/compilers.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3351510Z copying torch/_functorch/eager_transforms.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3353460Z copying torch/_functorch/vmap.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3354890Z copying torch/_functorch/benchmark_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3355720Z copying torch/_functorch/make_functional.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3357490Z copying torch/_functorch/functional_call.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch 2024-06-26T05:42:52.3361890Z creating build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3362430Z copying torch/_numpy/_reductions_impl.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3363420Z copying torch/_numpy/_getlimits.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3364890Z copying torch/_numpy/_unary_ufuncs_impl.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3365630Z copying torch/_numpy/_casting_dicts.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3367220Z copying torch/_numpy/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3368860Z copying torch/_numpy/_binary_ufuncs_impl.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3370430Z copying torch/_numpy/random.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3371450Z copying torch/_numpy/_dtypes.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3372960Z copying torch/_numpy/linalg.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3373650Z copying torch/_numpy/_ndarray.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3375240Z copying torch/_numpy/_ufuncs.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3376250Z copying torch/_numpy/_util.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3382350Z copying torch/_numpy/_normalizations.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3382970Z copying torch/_numpy/_dtypes_impl.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3383550Z copying torch/_numpy/fft.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3384110Z copying torch/_numpy/_funcs_impl.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3384690Z copying torch/_numpy/_funcs.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy 2024-06-26T05:42:52.3385170Z creating build/lib.macosx-11.1-arm64-3.9/torch/_export 2024-06-26T05:42:52.3386260Z copying torch/_export/exported_program.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export 2024-06-26T05:42:52.3387000Z copying torch/_export/error.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export 2024-06-26T05:42:52.3387890Z copying torch/_export/tools.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export 2024-06-26T05:42:52.3389310Z copying torch/_export/converter.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export 2024-06-26T05:42:52.3390130Z copying torch/_export/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export 2024-06-26T05:42:52.3391650Z copying torch/_export/pass_base.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export 2024-06-26T05:42:52.3392660Z copying torch/_export/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export 2024-06-26T05:42:52.3394160Z copying torch/_export/wrappers.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export 2024-06-26T05:42:52.3394890Z copying torch/_export/non_strict_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export 2024-06-26T05:42:52.3396330Z copying torch/_export/verifier.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export 2024-06-26T05:42:52.3398390Z creating build/lib.macosx-11.1-arm64-3.9/torch/monitor 2024-06-26T05:42:52.3398890Z copying torch/monitor/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/monitor 2024-06-26T05:42:52.3400860Z creating build/lib.macosx-11.1-arm64-3.9/torch/_dispatch 2024-06-26T05:42:52.3401370Z copying torch/_dispatch/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dispatch 2024-06-26T05:42:52.3402050Z copying torch/_dispatch/python.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dispatch 2024-06-26T05:42:52.3404580Z creating build/lib.macosx-11.1-arm64-3.9/torch/_subclasses 2024-06-26T05:42:52.3405160Z copying torch/_subclasses/functional_tensor.py -> build/lib.macosx-11.1-arm64-3.9/torch/_subclasses 2024-06-26T05:42:52.3406690Z copying torch/_subclasses/meta_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_subclasses 2024-06-26T05:42:52.3407770Z copying torch/_subclasses/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_subclasses 2024-06-26T05:42:52.3408760Z copying torch/_subclasses/fake_impls.py -> build/lib.macosx-11.1-arm64-3.9/torch/_subclasses 2024-06-26T05:42:52.3410320Z copying torch/_subclasses/fake_tensor.py -> build/lib.macosx-11.1-arm64-3.9/torch/_subclasses 2024-06-26T05:42:52.3411940Z copying torch/_subclasses/schema_check_mode.py -> build/lib.macosx-11.1-arm64-3.9/torch/_subclasses 2024-06-26T05:42:52.3412910Z copying torch/_subclasses/fake_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_subclasses 2024-06-26T05:42:52.3414850Z creating build/lib.macosx-11.1-arm64-3.9/torch/futures 2024-06-26T05:42:52.3415350Z copying torch/futures/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/futures 2024-06-26T05:42:52.3417380Z creating build/lib.macosx-11.1-arm64-3.9/torch/linalg 2024-06-26T05:42:52.3418000Z copying torch/linalg/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/linalg 2024-06-26T05:42:52.3420770Z creating build/lib.macosx-11.1-arm64-3.9/torch/_custom_op 2024-06-26T05:42:52.3421300Z copying torch/_custom_op/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_custom_op 2024-06-26T05:42:52.3422110Z copying torch/_custom_op/functional.py -> build/lib.macosx-11.1-arm64-3.9/torch/_custom_op 2024-06-26T05:42:52.3422990Z copying torch/_custom_op/autograd.py -> build/lib.macosx-11.1-arm64-3.9/torch/_custom_op 2024-06-26T05:42:52.3424680Z copying torch/_custom_op/impl.py -> build/lib.macosx-11.1-arm64-3.9/torch/_custom_op 2024-06-26T05:42:52.3427500Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn 2024-06-26T05:42:52.3427980Z copying torch/nn/common_types.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn 2024-06-26T05:42:52.3428890Z copying torch/nn/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn 2024-06-26T05:42:52.3430280Z copying torch/nn/_reduction.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn 2024-06-26T05:42:52.3430950Z copying torch/nn/cpp.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn 2024-06-26T05:42:52.3432320Z copying torch/nn/functional.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn 2024-06-26T05:42:52.3434440Z copying torch/nn/init.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn 2024-06-26T05:42:52.3435380Z copying torch/nn/grad.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn 2024-06-26T05:42:52.3436950Z copying torch/nn/parameter.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn 2024-06-26T05:42:52.3438700Z creating build/lib.macosx-11.1-arm64-3.9/torch/mps 2024-06-26T05:42:52.3439160Z copying torch/mps/event.py -> build/lib.macosx-11.1-arm64-3.9/torch/mps 2024-06-26T05:42:52.3440680Z copying torch/mps/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/mps 2024-06-26T05:42:52.3441360Z copying torch/mps/profiler.py -> build/lib.macosx-11.1-arm64-3.9/torch/mps 2024-06-26T05:42:52.3446170Z creating build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3446660Z copying torch/onnx/_type_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3448200Z copying torch/onnx/_constants.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3449020Z copying torch/onnx/symbolic_opset15.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3450470Z copying torch/onnx/_onnx_supported_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3451200Z copying torch/onnx/symbolic_opset7.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3452190Z copying torch/onnx/symbolic_caffe2.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3453740Z copying torch/onnx/symbolic_opset11.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3455430Z copying torch/onnx/verification.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3457120Z copying torch/onnx/symbolic_opset10.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3458160Z copying torch/onnx/symbolic_opset20.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3459130Z copying torch/onnx/symbolic_opset14.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3460540Z copying torch/onnx/_globals.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3461300Z copying torch/onnx/symbolic_helper.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3463240Z copying torch/onnx/symbolic_opset9.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3465390Z copying torch/onnx/_deprecation.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3466140Z copying torch/onnx/_exporter_states.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3467110Z copying torch/onnx/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3468540Z copying torch/onnx/symbolic_opset8.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3470230Z copying torch/onnx/symbolic_opset19.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3470910Z copying torch/onnx/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3472760Z copying torch/onnx/_experimental.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3473500Z copying torch/onnx/symbolic_opset18.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3475000Z copying torch/onnx/errors.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3475800Z copying torch/onnx/symbolic_opset13.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3477350Z copying torch/onnx/operators.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3478120Z copying torch/onnx/symbolic_opset17.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3479560Z copying torch/onnx/symbolic_opset16.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3480310Z copying torch/onnx/symbolic_opset12.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx 2024-06-26T05:42:52.3482780Z creating build/lib.macosx-11.1-arm64-3.9/torch/_vendor 2024-06-26T05:42:52.3483280Z copying torch/_vendor/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_vendor 2024-06-26T05:42:52.3484610Z creating build/lib.macosx-11.1-arm64-3.9/torch/cpu 2024-06-26T05:42:52.3485070Z copying torch/cpu/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/cpu 2024-06-26T05:42:52.3489660Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3490250Z copying torch/distributed/_composable_state.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3490990Z copying torch/distributed/logging_handlers.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3491930Z copying torch/distributed/rendezvous.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3492980Z copying torch/distributed/run.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3494220Z copying torch/distributed/_state_dict_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3495560Z copying torch/distributed/distributed_c10d.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3497890Z copying torch/distributed/argparse_util.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3498710Z copying torch/distributed/_checkpointable.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3499660Z copying torch/distributed/constants.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3500690Z copying torch/distributed/c10d_logger.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3501700Z copying torch/distributed/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3502770Z copying torch/distributed/collective_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3503860Z copying torch/distributed/_functional_collectives.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3505400Z copying torch/distributed/launch.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3506240Z copying torch/distributed/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3508020Z copying torch/distributed/remote_device.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3508820Z copying torch/distributed/device_mesh.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3510400Z copying torch/distributed/_functional_collectives_impl.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed 2024-06-26T05:42:52.3513300Z creating build/lib.macosx-11.1-arm64-3.9/torch/autograd 2024-06-26T05:42:52.3513840Z copying torch/autograd/anomaly_mode.py -> build/lib.macosx-11.1-arm64-3.9/torch/autograd 2024-06-26T05:42:52.3514670Z copying torch/autograd/graph.py -> build/lib.macosx-11.1-arm64-3.9/torch/autograd 2024-06-26T05:42:52.3516350Z copying torch/autograd/forward_ad.py -> build/lib.macosx-11.1-arm64-3.9/torch/autograd 2024-06-26T05:42:52.3517260Z copying torch/autograd/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/autograd 2024-06-26T05:42:52.3518260Z copying torch/autograd/variable.py -> build/lib.macosx-11.1-arm64-3.9/torch/autograd 2024-06-26T05:42:52.3519250Z copying torch/autograd/functional.py -> build/lib.macosx-11.1-arm64-3.9/torch/autograd 2024-06-26T05:42:52.3520720Z copying torch/autograd/grad_mode.py -> build/lib.macosx-11.1-arm64-3.9/torch/autograd 2024-06-26T05:42:52.3522300Z copying torch/autograd/profiler_util.py -> build/lib.macosx-11.1-arm64-3.9/torch/autograd 2024-06-26T05:42:52.3523820Z copying torch/autograd/profiler_legacy.py -> build/lib.macosx-11.1-arm64-3.9/torch/autograd 2024-06-26T05:42:52.3524640Z copying torch/autograd/gradcheck.py -> build/lib.macosx-11.1-arm64-3.9/torch/autograd 2024-06-26T05:42:52.3526250Z copying torch/autograd/profiler.py -> build/lib.macosx-11.1-arm64-3.9/torch/autograd 2024-06-26T05:42:52.3527730Z copying torch/autograd/function.py -> build/lib.macosx-11.1-arm64-3.9/torch/autograd 2024-06-26T05:42:52.3531620Z creating build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3532070Z copying torch/fx/_pytree.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3533450Z copying torch/fx/graph_module.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3534360Z copying torch/fx/operator_schemas.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3535810Z copying torch/fx/config.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3536510Z copying torch/fx/proxy.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3538030Z copying torch/fx/_lazy_graph_module.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3538840Z copying torch/fx/traceback.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3540250Z copying torch/fx/graph.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3541690Z copying torch/fx/tensor_type.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3542330Z copying torch/fx/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3543790Z copying torch/fx/immutable_collections.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3544480Z copying torch/fx/annotate.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3545550Z copying torch/fx/subgraph_rewriter.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3547370Z copying torch/fx/interpreter.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3548230Z copying torch/fx/_symbolic_trace.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3549760Z copying torch/fx/node.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3551180Z copying torch/fx/_compatibility.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3551840Z copying torch/fx/_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.3554030Z creating build/lib.macosx-11.1-arm64-3.9/torch/_prims_common 2024-06-26T05:42:52.3554600Z copying torch/_prims_common/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_prims_common 2024-06-26T05:42:52.3555760Z copying torch/_prims_common/wrappers.py -> build/lib.macosx-11.1-arm64-3.9/torch/_prims_common 2024-06-26T05:42:52.3558790Z creating build/lib.macosx-11.1-arm64-3.9/torch/multiprocessing 2024-06-26T05:42:52.3559380Z copying torch/multiprocessing/queue.py -> build/lib.macosx-11.1-arm64-3.9/torch/multiprocessing 2024-06-26T05:42:52.3560180Z copying torch/multiprocessing/_atfork.py -> build/lib.macosx-11.1-arm64-3.9/torch/multiprocessing 2024-06-26T05:42:52.3561190Z copying torch/multiprocessing/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/multiprocessing 2024-06-26T05:42:52.3562130Z copying torch/multiprocessing/spawn.py -> build/lib.macosx-11.1-arm64-3.9/torch/multiprocessing 2024-06-26T05:42:52.3564160Z copying torch/multiprocessing/reductions.py -> build/lib.macosx-11.1-arm64-3.9/torch/multiprocessing 2024-06-26T05:42:52.3565060Z copying torch/multiprocessing/pool.py -> build/lib.macosx-11.1-arm64-3.9/torch/multiprocessing 2024-06-26T05:42:52.3568680Z creating build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3569180Z copying torch/cuda/streams.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3570690Z copying torch/cuda/error.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3571240Z copying torch/cuda/comm.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3572650Z copying torch/cuda/memory.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3574540Z copying torch/cuda/jiterator.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3575960Z copying torch/cuda/nccl.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3576930Z copying torch/cuda/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3578700Z copying torch/cuda/_gpu_trace.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3579550Z copying torch/cuda/_sanitizer.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3581080Z copying torch/cuda/random.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3582090Z copying torch/cuda/_memory_viz.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3583360Z copying torch/cuda/tunable.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3584810Z copying torch/cuda/sparse.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3585640Z copying torch/cuda/nvtx.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3587000Z copying torch/cuda/graphs.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3587940Z copying torch/cuda/profiler.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3589310Z copying torch/cuda/_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda 2024-06-26T05:42:52.3591340Z creating build/lib.macosx-11.1-arm64-3.9/torch/backends 2024-06-26T05:42:52.3591850Z copying torch/backends/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends 2024-06-26T05:42:52.3594360Z creating build/lib.macosx-11.1-arm64-3.9/torch/_decomp 2024-06-26T05:42:52.3594920Z copying torch/_decomp/decompositions_for_jvp.py -> build/lib.macosx-11.1-arm64-3.9/torch/_decomp 2024-06-26T05:42:52.3595840Z copying torch/_decomp/decompositions.py -> build/lib.macosx-11.1-arm64-3.9/torch/_decomp 2024-06-26T05:42:52.3600530Z copying torch/_decomp/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_decomp 2024-06-26T05:42:52.3601180Z copying torch/_decomp/decompositions_for_rng.py -> build/lib.macosx-11.1-arm64-3.9/torch/_decomp 2024-06-26T05:42:52.3601820Z creating build/lib.macosx-11.1-arm64-3.9/torch/xpu 2024-06-26T05:42:52.3602290Z copying torch/xpu/streams.py -> build/lib.macosx-11.1-arm64-3.9/torch/xpu 2024-06-26T05:42:52.3603710Z copying torch/xpu/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/xpu 2024-06-26T05:42:52.3605140Z copying torch/xpu/_gpu_trace.py -> build/lib.macosx-11.1-arm64-3.9/torch/xpu 2024-06-26T05:42:52.3605840Z copying torch/xpu/random.py -> build/lib.macosx-11.1-arm64-3.9/torch/xpu 2024-06-26T05:42:52.3607210Z copying torch/xpu/_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/xpu 2024-06-26T05:42:52.3609080Z creating build/lib.macosx-11.1-arm64-3.9/torch/masked 2024-06-26T05:42:52.3609560Z copying torch/masked/_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/masked 2024-06-26T05:42:52.3611090Z copying torch/masked/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/masked 2024-06-26T05:42:52.3611920Z copying torch/masked/_docs.py -> build/lib.macosx-11.1-arm64-3.9/torch/masked 2024-06-26T05:42:52.3616190Z creating build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3616690Z copying torch/optim/lr_scheduler.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3618530Z copying torch/optim/rmsprop.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3619550Z copying torch/optim/sparse_adam.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3620480Z copying torch/optim/rprop.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3621940Z copying torch/optim/sgd.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3623350Z copying torch/optim/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3624040Z copying torch/optim/adamax.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3625580Z copying torch/optim/adagrad.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3626500Z copying torch/optim/adamw.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3628170Z copying torch/optim/swa_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3630100Z copying torch/optim/lbfgs.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3631520Z copying torch/optim/radam.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3632580Z copying torch/optim/adam.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3634510Z copying torch/optim/optimizer.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3635960Z copying torch/optim/nadam.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3637400Z copying torch/optim/asgd.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3639090Z copying torch/optim/_functional.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3640150Z copying torch/optim/adadelta.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim 2024-06-26T05:42:52.3647960Z creating build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3648510Z copying torch/_inductor/cudagraph_trees.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3650090Z copying torch/_inductor/select_algorithm.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3651590Z copying torch/_inductor/ops_handler.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3652580Z copying torch/_inductor/metrics.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3654290Z copying torch/_inductor/codecache.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3656020Z copying torch/_inductor/optimize_indexing.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3656770Z copying torch/_inductor/hooks.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3658210Z copying torch/_inductor/cpp_builder.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3659290Z copying torch/_inductor/config.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3660920Z copying torch/_inductor/comms.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3662440Z copying torch/_inductor/mkldnn_lowerings.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3663390Z copying torch/_inductor/async_compile.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3664870Z copying torch/_inductor/pattern_matcher.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3666050Z copying torch/_inductor/quantized_lowerings.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3667100Z copying torch/_inductor/graph.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3668840Z copying torch/_inductor/lowering.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3671060Z copying torch/_inductor/jagged_lowerings.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3671930Z copying torch/_inductor/test_operators.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3673050Z copying torch/_inductor/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3674110Z copying torch/_inductor/compile_fx.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3675770Z copying torch/_inductor/cudagraph_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3676560Z copying torch/_inductor/sizevars.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3678660Z copying torch/_inductor/ir.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3680930Z copying torch/_inductor/index_propagation.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3682580Z copying torch/_inductor/constant_folding.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3683490Z copying torch/_inductor/inductor_prims.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3685000Z copying torch/_inductor/virtualized.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3685880Z copying torch/_inductor/test_case.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3687370Z copying torch/_inductor/autotune_process.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3688210Z copying torch/_inductor/exc.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3689800Z copying torch/_inductor/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3690740Z copying torch/_inductor/debug.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3692280Z copying torch/_inductor/decomposition.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3693360Z copying torch/_inductor/fx_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3694460Z copying torch/_inductor/scheduler.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3696360Z copying torch/_inductor/mkldnn_ir.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3697860Z copying torch/_inductor/wrapper_benchmark.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3698760Z copying torch/_inductor/remote_cache.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3699760Z copying torch/_inductor/comm_analysis.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3701200Z copying torch/_inductor/bounds.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3701980Z copying torch/_inductor/freezing.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3703160Z copying torch/_inductor/dependencies.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3704490Z copying torch/_inductor/subgraph_lowering.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor 2024-06-26T05:42:52.3710940Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3711410Z copying torch/utils/_pytree.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3713430Z copying torch/utils/_foreach_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3714010Z copying torch/utils/hooks.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3715390Z copying torch/utils/_traceback.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3716390Z copying torch/utils/_cpp_extension_versioner.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3717520Z copying torch/utils/_mode_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3718550Z copying torch/utils/checkpoint.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3720190Z copying torch/utils/show_pickle.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3721100Z copying torch/utils/deterministic.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3726270Z copying torch/utils/file_baton.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3727040Z copying torch/utils/_freeze.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3727680Z copying torch/utils/backend_registration.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3728320Z copying torch/utils/module_tracker.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3728920Z copying torch/utils/model_zoo.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3729480Z copying torch/utils/_zip.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3730050Z copying torch/utils/collect_env.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3730790Z copying torch/utils/throughput_benchmark.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3731920Z copying torch/utils/dlpack.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3732970Z copying torch/utils/_cxx_pytree.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3734860Z copying torch/utils/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3735580Z copying torch/utils/_import_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3736480Z copying torch/utils/bundled_inputs.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3738110Z copying torch/utils/mkldnn.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3738960Z copying torch/utils/cpp_backtrace.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3740070Z copying torch/utils/_contextlib.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3741520Z copying torch/utils/_python_dispatch.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3742360Z copying torch/utils/_exposed_in.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3743790Z copying torch/utils/_config_module.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3745260Z copying torch/utils/_device.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3746060Z copying torch/utils/flop_counter.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3747310Z copying torch/utils/_typing_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3748780Z copying torch/utils/_stats.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3749580Z copying torch/utils/cpp_extension.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3751510Z copying torch/utils/_get_clean_triton.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3752270Z copying torch/utils/_triton.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3753350Z copying torch/utils/_content_store.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3754490Z copying torch/utils/weak.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3756010Z copying torch/utils/mobile_optimizer.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils 2024-06-26T05:42:52.3758060Z creating build/lib.macosx-11.1-arm64-3.9/torch/contrib 2024-06-26T05:42:52.3758570Z copying torch/contrib/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/contrib 2024-06-26T05:42:52.3759290Z copying torch/contrib/_tensorboard_vis.py -> build/lib.macosx-11.1-arm64-3.9/torch/contrib 2024-06-26T05:42:52.3762980Z creating build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3763580Z copying torch/quantization/observer.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3764490Z copying torch/quantization/fuse_modules.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3765650Z copying torch/quantization/quantization_mappings.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3766620Z copying torch/quantization/quantize.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3767670Z copying torch/quantization/_numeric_suite.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3769020Z copying torch/quantization/fake_quantize.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3769950Z copying torch/quantization/qconfig.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3770880Z copying torch/quantization/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3772020Z copying torch/quantization/_quantized_conversions.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3773010Z copying torch/quantization/stubs.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3774020Z copying torch/quantization/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3775150Z copying torch/quantization/fuser_method_mappings.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3776160Z copying torch/quantization/quantize_jit.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3777200Z copying torch/quantization/quant_type.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3778220Z copying torch/quantization/quantize_fx.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3779280Z copying torch/quantization/_numeric_suite_fx.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization 2024-06-26T05:42:52.3781190Z creating build/lib.macosx-11.1-arm64-3.9/torch/special 2024-06-26T05:42:52.3781690Z copying torch/special/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/special 2024-06-26T05:42:52.3783980Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing 2024-06-26T05:42:52.3784490Z copying torch/testing/_creation.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing 2024-06-26T05:42:52.3785390Z copying torch/testing/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing 2024-06-26T05:42:52.3786480Z copying torch/testing/_comparison.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing 2024-06-26T05:42:52.3788150Z copying torch/testing/_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing 2024-06-26T05:42:52.3790610Z creating build/lib.macosx-11.1-arm64-3.9/torch/_library 2024-06-26T05:42:52.3791130Z copying torch/_library/infer_schema.py -> build/lib.macosx-11.1-arm64-3.9/torch/_library 2024-06-26T05:42:52.3792030Z copying torch/_library/simple_registry.py -> build/lib.macosx-11.1-arm64-3.9/torch/_library 2024-06-26T05:42:52.3793030Z copying torch/_library/custom_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/_library 2024-06-26T05:42:52.3794620Z copying torch/_library/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_library 2024-06-26T05:42:52.3795330Z copying torch/_library/fake_impl.py -> build/lib.macosx-11.1-arm64-3.9/torch/_library 2024-06-26T05:42:52.3796380Z copying torch/_library/autograd.py -> build/lib.macosx-11.1-arm64-3.9/torch/_library 2024-06-26T05:42:52.3797580Z copying torch/_library/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_library 2024-06-26T05:42:52.3799080Z copying torch/_library/fake_class_registry.py -> build/lib.macosx-11.1-arm64-3.9/torch/_library 2024-06-26T05:42:52.3801150Z creating build/lib.macosx-11.1-arm64-3.9/torch/amp 2024-06-26T05:42:52.3801640Z copying torch/amp/autocast_mode.py -> build/lib.macosx-11.1-arm64-3.9/torch/amp 2024-06-26T05:42:52.3802590Z copying torch/amp/grad_scaler.py -> build/lib.macosx-11.1-arm64-3.9/torch/amp 2024-06-26T05:42:52.3804070Z copying torch/amp/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/amp 2024-06-26T05:42:52.3808590Z creating build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3809060Z copying torch/jit/_ir_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3810040Z copying torch/jit/_monkeytype_config.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3811520Z copying torch/jit/_decompositions.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3812220Z copying torch/jit/_recursive.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3813750Z copying torch/jit/_logging.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3814460Z copying torch/jit/_serialization.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3815880Z copying torch/jit/quantized.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3816740Z copying torch/jit/_script.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3818480Z copying torch/jit/_shape_functions.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3819550Z copying torch/jit/_decomposition_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3820520Z copying torch/jit/_freeze.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3821920Z copying torch/jit/_pickle.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3822670Z copying torch/jit/_check.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3828570Z copying torch/jit/unsupported_tensor_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3829210Z copying torch/jit/frontend.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3829790Z copying torch/jit/supported_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3830340Z copying torch/jit/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3830870Z copying torch/jit/_fuser.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3831400Z copying torch/jit/_builtins.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3831970Z copying torch/jit/_dataclass_impls.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3832520Z copying torch/jit/_trace.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3833190Z copying torch/jit/generate_bytecode.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3834130Z copying torch/jit/_state.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3835160Z copying torch/jit/_async.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3836680Z copying torch/jit/annotations.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3837400Z copying torch/jit/_await.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit 2024-06-26T05:42:52.3844050Z creating build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3844560Z copying torch/_dynamo/cache_size.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3845320Z copying torch/_dynamo/callback.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3846800Z copying torch/_dynamo/comptime.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3847830Z copying torch/_dynamo/logging.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3848940Z copying torch/_dynamo/_trace_wrapped_higher_order_op.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3849870Z copying torch/_dynamo/hooks.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3851320Z copying torch/_dynamo/config.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3852190Z copying torch/_dynamo/guards.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3854190Z copying torch/_dynamo/test_minifier_common.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3855130Z copying torch/_dynamo/create_parameter_op.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3856170Z copying torch/_dynamo/device_interface.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3857250Z copying torch/_dynamo/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3858840Z copying torch/_dynamo/mutation_guard.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3859610Z copying torch/_dynamo/types.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3860470Z copying torch/_dynamo/bytecode_analysis.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3862030Z copying torch/_dynamo/tensor_version_op.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3862780Z copying torch/_dynamo/external_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3863680Z copying torch/_dynamo/test_case.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3865180Z copying torch/_dynamo/resume_execution.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3866160Z copying torch/_dynamo/output_graph.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3867940Z copying torch/_dynamo/compiled_autograd.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3869410Z copying torch/_dynamo/exc.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3870260Z copying torch/_dynamo/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3872120Z copying torch/_dynamo/replay_record.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3873050Z copying torch/_dynamo/side_effects.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3874510Z copying torch/_dynamo/trace_rules.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3876270Z copying torch/_dynamo/bytecode_transformation.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3877320Z copying torch/_dynamo/convert_frame.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3878870Z copying torch/_dynamo/funcname_cache.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3879690Z copying torch/_dynamo/polyfill.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3881180Z copying torch/_dynamo/testing.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3881890Z copying torch/_dynamo/profiler.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3883060Z copying torch/_dynamo/symbolic_convert.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3884890Z copying torch/_dynamo/codegen.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3885760Z copying torch/_dynamo/source.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3887320Z copying torch/_dynamo/eval_frame.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3888800Z copying torch/_dynamo/code_context.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3889570Z copying torch/_dynamo/current_scope_id.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3890610Z copying torch/_dynamo/debug_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3892130Z copying torch/_dynamo/decorators.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo 2024-06-26T05:42:52.3895500Z creating build/lib.macosx-11.1-arm64-3.9/torch/_lazy 2024-06-26T05:42:52.3895970Z copying torch/_lazy/metrics.py -> build/lib.macosx-11.1-arm64-3.9/torch/_lazy 2024-06-26T05:42:52.3896740Z copying torch/_lazy/config.py -> build/lib.macosx-11.1-arm64-3.9/torch/_lazy 2024-06-26T05:42:52.3897810Z copying torch/_lazy/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_lazy 2024-06-26T05:42:52.3899400Z copying torch/_lazy/tensor_factory_functions.py -> build/lib.macosx-11.1-arm64-3.9/torch/_lazy 2024-06-26T05:42:52.3900110Z copying torch/_lazy/debug.py -> build/lib.macosx-11.1-arm64-3.9/torch/_lazy 2024-06-26T05:42:52.3900870Z copying torch/_lazy/extract_compiled_graph.py -> build/lib.macosx-11.1-arm64-3.9/torch/_lazy 2024-06-26T05:42:52.3902340Z copying torch/_lazy/ir_cache.py -> build/lib.macosx-11.1-arm64-3.9/torch/_lazy 2024-06-26T05:42:52.3903020Z copying torch/_lazy/ts_backend.py -> build/lib.macosx-11.1-arm64-3.9/torch/_lazy 2024-06-26T05:42:52.3904460Z copying torch/_lazy/computation.py -> build/lib.macosx-11.1-arm64-3.9/torch/_lazy 2024-06-26T05:42:52.3905080Z copying torch/_lazy/closure.py -> build/lib.macosx-11.1-arm64-3.9/torch/_lazy 2024-06-26T05:42:52.3906540Z copying torch/_lazy/device_context.py -> build/lib.macosx-11.1-arm64-3.9/torch/_lazy 2024-06-26T05:42:52.3908060Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao 2024-06-26T05:42:52.3908520Z copying torch/ao/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao 2024-06-26T05:42:52.3910500Z creating build/lib.macosx-11.1-arm64-3.9/torch/mtia 2024-06-26T05:42:52.3910970Z copying torch/mtia/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/mtia 2024-06-26T05:42:52.3911820Z copying torch/mtia/_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/mtia 2024-06-26T05:42:52.3913990Z creating build/lib.macosx-11.1-arm64-3.9/torch/_refs 2024-06-26T05:42:52.3914470Z copying torch/_refs/_conversions.py -> build/lib.macosx-11.1-arm64-3.9/torch/_refs 2024-06-26T05:42:52.3915300Z copying torch/_refs/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_refs 2024-06-26T05:42:52.3917680Z copying torch/_refs/fft.py -> build/lib.macosx-11.1-arm64-3.9/torch/_refs 2024-06-26T05:42:52.3919520Z creating build/lib.macosx-11.1-arm64-3.9/torch/fft 2024-06-26T05:42:52.3919970Z copying torch/fft/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/fft 2024-06-26T05:42:52.3922750Z creating build/lib.macosx-11.1-arm64-3.9/torch/profiler 2024-06-26T05:42:52.3923300Z copying torch/profiler/_memory_profiler.py -> build/lib.macosx-11.1-arm64-3.9/torch/profiler 2024-06-26T05:42:52.3924730Z copying torch/profiler/itt.py -> build/lib.macosx-11.1-arm64-3.9/torch/profiler 2024-06-26T05:42:52.3925460Z copying torch/profiler/_pattern_matcher.py -> build/lib.macosx-11.1-arm64-3.9/torch/profiler 2024-06-26T05:42:52.3926920Z copying torch/profiler/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/profiler 2024-06-26T05:42:52.3927670Z copying torch/profiler/profiler.py -> build/lib.macosx-11.1-arm64-3.9/torch/profiler 2024-06-26T05:42:52.3929210Z copying torch/profiler/python_tracer.py -> build/lib.macosx-11.1-arm64-3.9/torch/profiler 2024-06-26T05:42:52.3929950Z copying torch/profiler/_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/profiler 2024-06-26T05:42:52.3932890Z creating build/lib.macosx-11.1-arm64-3.9/torch/sparse 2024-06-26T05:42:52.3933420Z copying torch/sparse/_semi_structured_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/sparse 2024-06-26T05:42:52.3934300Z copying torch/sparse/_semi_structured_conversions.py -> build/lib.macosx-11.1-arm64-3.9/torch/sparse 2024-06-26T05:42:52.3935760Z copying torch/sparse/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/sparse 2024-06-26T05:42:52.3937570Z copying torch/sparse/semi_structured.py -> build/lib.macosx-11.1-arm64-3.9/torch/sparse 2024-06-26T05:42:52.3938590Z copying torch/sparse/_triton_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/sparse 2024-06-26T05:42:52.3940320Z copying torch/sparse/_triton_ops_meta.py -> build/lib.macosx-11.1-arm64-3.9/torch/sparse 2024-06-26T05:42:52.3943730Z creating build/lib.macosx-11.1-arm64-3.9/torch/_awaits 2024-06-26T05:42:52.3944230Z copying torch/_awaits/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_awaits 2024-06-26T05:42:52.3947130Z creating build/lib.macosx-11.1-arm64-3.9/torch/export 2024-06-26T05:42:52.3947650Z copying torch/export/_safeguard.py -> build/lib.macosx-11.1-arm64-3.9/torch/export 2024-06-26T05:42:52.3948500Z copying torch/export/exported_program.py -> build/lib.macosx-11.1-arm64-3.9/torch/export 2024-06-26T05:42:52.3950530Z copying torch/export/unflatten.py -> build/lib.macosx-11.1-arm64-3.9/torch/export 2024-06-26T05:42:52.3951550Z copying torch/export/custom_obj.py -> build/lib.macosx-11.1-arm64-3.9/torch/export 2024-06-26T05:42:52.3952770Z copying torch/export/_remove_effect_tokens_pass.py -> build/lib.macosx-11.1-arm64-3.9/torch/export 2024-06-26T05:42:52.3953760Z copying torch/export/_remove_auto_functionalized_pass.py -> build/lib.macosx-11.1-arm64-3.9/torch/export 2024-06-26T05:42:52.3954710Z copying torch/export/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/export 2024-06-26T05:42:52.3960240Z copying torch/export/_unlift.py -> build/lib.macosx-11.1-arm64-3.9/torch/export 2024-06-26T05:42:52.3960920Z copying torch/export/_trace.py -> build/lib.macosx-11.1-arm64-3.9/torch/export 2024-06-26T05:42:52.3961540Z copying torch/export/graph_signature.py -> build/lib.macosx-11.1-arm64-3.9/torch/export 2024-06-26T05:42:52.3962160Z copying torch/export/dynamic_shapes.py -> build/lib.macosx-11.1-arm64-3.9/torch/export 2024-06-26T05:42:52.3962770Z copying torch/export/_tree_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/export 2024-06-26T05:42:52.3963260Z creating build/lib.macosx-11.1-arm64-3.9/torch/nested 2024-06-26T05:42:52.3963740Z copying torch/nested/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nested 2024-06-26T05:42:52.3965580Z creating build/lib.macosx-11.1-arm64-3.9/torch/_strobelight 2024-06-26T05:42:52.3966200Z copying torch/_strobelight/cli_function_profiler.py -> build/lib.macosx-11.1-arm64-3.9/torch/_strobelight 2024-06-26T05:42:52.3967250Z copying torch/_strobelight/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_strobelight 2024-06-26T05:42:52.3968110Z copying torch/_strobelight/compile_time_profiler.py -> build/lib.macosx-11.1-arm64-3.9/torch/_strobelight 2024-06-26T05:42:52.3969950Z creating build/lib.macosx-11.1-arm64-3.9/torch/compiler 2024-06-26T05:42:52.3970470Z copying torch/compiler/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/compiler 2024-06-26T05:42:52.3972200Z creating build/lib.macosx-11.1-arm64-3.9/torch/signal 2024-06-26T05:42:52.3972680Z copying torch/signal/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/signal 2024-06-26T05:42:52.3979730Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3980340Z copying torch/distributions/inverse_gamma.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3981170Z copying torch/distributions/laplace.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3982180Z copying torch/distributions/relaxed_bernoulli.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3983220Z copying torch/distributions/categorical.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3984340Z copying torch/distributions/transforms.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3985640Z copying torch/distributions/dirichlet.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3986700Z copying torch/distributions/log_normal.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3987830Z copying torch/distributions/transformed_distribution.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3989100Z copying torch/distributions/geometric.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3990070Z copying torch/distributions/weibull.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3991170Z copying torch/distributions/studentT.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3992170Z copying torch/distributions/multivariate_normal.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3993870Z copying torch/distributions/normal.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3995570Z copying torch/distributions/poisson.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3996240Z copying torch/distributions/beta.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3997560Z copying torch/distributions/kumaraswamy.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3998370Z copying torch/distributions/half_normal.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.3999400Z copying torch/distributions/relaxed_categorical.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4000590Z copying torch/distributions/lowrank_multivariate_normal.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4002340Z copying torch/distributions/half_cauchy.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4003150Z copying torch/distributions/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4003980Z copying torch/distributions/lkj_cholesky.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4004930Z copying torch/distributions/independent.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4005990Z copying torch/distributions/multinomial.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4007060Z copying torch/distributions/exponential.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4008070Z copying torch/distributions/pareto.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4009110Z copying torch/distributions/negative_binomial.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4010130Z copying torch/distributions/cauchy.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4011180Z copying torch/distributions/von_mises.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4012230Z copying torch/distributions/distribution.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4013920Z copying torch/distributions/gumbel.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4014860Z copying torch/distributions/constraint_registry.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4016070Z copying torch/distributions/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4017000Z copying torch/distributions/kl.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4018590Z copying torch/distributions/mixture_same_family.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4019500Z copying torch/distributions/continuous_bernoulli.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4021160Z copying torch/distributions/fishersnedecor.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4022010Z copying torch/distributions/constraints.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4023040Z copying torch/distributions/uniform.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4024050Z copying torch/distributions/bernoulli.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4025070Z copying torch/distributions/exp_family.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4026210Z copying torch/distributions/logistic_normal.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4027250Z copying torch/distributions/one_hot_categorical.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4028780Z copying torch/distributions/wishart.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4029720Z copying torch/distributions/gamma.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4030780Z copying torch/distributions/chi2.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4031860Z copying torch/distributions/binomial.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributions 2024-06-26T05:42:52.4035990Z creating build/lib.macosx-11.1-arm64-3.9/torch/package 2024-06-26T05:42:52.4036530Z copying torch/package/package_exporter.py -> build/lib.macosx-11.1-arm64-3.9/torch/package 2024-06-26T05:42:52.4038230Z copying torch/package/file_structure_representation.py -> build/lib.macosx-11.1-arm64-3.9/torch/package 2024-06-26T05:42:52.4039320Z copying torch/package/_mock.py -> build/lib.macosx-11.1-arm64-3.9/torch/package 2024-06-26T05:42:52.4040750Z copying torch/package/importer.py -> build/lib.macosx-11.1-arm64-3.9/torch/package 2024-06-26T05:42:52.4041760Z copying torch/package/_stdlib.py -> build/lib.macosx-11.1-arm64-3.9/torch/package 2024-06-26T05:42:52.4043200Z copying torch/package/_mangling.py -> build/lib.macosx-11.1-arm64-3.9/torch/package 2024-06-26T05:42:52.4043940Z copying torch/package/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/package 2024-06-26T05:42:52.4044990Z copying torch/package/package_importer.py -> build/lib.macosx-11.1-arm64-3.9/torch/package 2024-06-26T05:42:52.4046490Z copying torch/package/_package_unpickler.py -> build/lib.macosx-11.1-arm64-3.9/torch/package 2024-06-26T05:42:52.4047250Z copying torch/package/glob_group.py -> build/lib.macosx-11.1-arm64-3.9/torch/package 2024-06-26T05:42:52.4048320Z copying torch/package/find_file_dependencies.py -> build/lib.macosx-11.1-arm64-3.9/torch/package 2024-06-26T05:42:52.4049260Z copying torch/package/_package_pickler.py -> build/lib.macosx-11.1-arm64-3.9/torch/package 2024-06-26T05:42:52.4050320Z copying torch/package/_importlib.py -> build/lib.macosx-11.1-arm64-3.9/torch/package 2024-06-26T05:42:52.4051410Z copying torch/package/_directory_reader.py -> build/lib.macosx-11.1-arm64-3.9/torch/package 2024-06-26T05:42:52.4052410Z copying torch/package/_digraph.py -> build/lib.macosx-11.1-arm64-3.9/torch/package 2024-06-26T05:42:52.4054550Z creating build/lib.macosx-11.1-arm64-3.9/torch/func 2024-06-26T05:42:52.4055020Z copying torch/func/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/func 2024-06-26T05:42:52.4058190Z creating build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd 2024-06-26T05:42:52.4058940Z copying torch/_functorch/_aot_autograd/input_output_analysis.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd 2024-06-26T05:42:52.4060090Z copying torch/_functorch/_aot_autograd/runtime_wrappers.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd 2024-06-26T05:42:52.4066900Z copying torch/_functorch/_aot_autograd/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd 2024-06-26T05:42:52.4067830Z copying torch/_functorch/_aot_autograd/dispatch_and_compile_graph.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd 2024-06-26T05:42:52.4068730Z copying torch/_functorch/_aot_autograd/functional_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd 2024-06-26T05:42:52.4069590Z copying torch/_functorch/_aot_autograd/autograd_cache.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd 2024-06-26T05:42:52.4070480Z copying torch/_functorch/_aot_autograd/traced_function_transforms.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd 2024-06-26T05:42:52.4071350Z copying torch/_functorch/_aot_autograd/schemas.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd 2024-06-26T05:42:52.4072230Z copying torch/_functorch/_aot_autograd/jit_compile_runtime_wrappers.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd 2024-06-26T05:42:52.4073220Z copying torch/_functorch/_aot_autograd/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd 2024-06-26T05:42:52.4074090Z copying torch/_functorch/_aot_autograd/collect_metadata_analysis.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd 2024-06-26T05:42:52.4074960Z copying torch/_functorch/_aot_autograd/subclass_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd 2024-06-26T05:42:52.4075820Z copying torch/_functorch/_aot_autograd/logging_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd 2024-06-26T05:42:52.4077810Z creating build/lib.macosx-11.1-arm64-3.9/torch/_numpy/testing 2024-06-26T05:42:52.4078400Z copying torch/_numpy/testing/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy/testing 2024-06-26T05:42:52.4079170Z copying torch/_numpy/testing/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_numpy/testing 2024-06-26T05:42:52.4081870Z creating build/lib.macosx-11.1-arm64-3.9/torch/_export/pass_infra 2024-06-26T05:42:52.4082490Z copying torch/_export/pass_infra/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/pass_infra 2024-06-26T05:42:52.4083320Z copying torch/_export/pass_infra/proxy_value.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/pass_infra 2024-06-26T05:42:52.4084200Z copying torch/_export/pass_infra/node_metadata.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/pass_infra 2024-06-26T05:42:52.4087210Z creating build/lib.macosx-11.1-arm64-3.9/torch/_export/passes 2024-06-26T05:42:52.4087900Z copying torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/passes 2024-06-26T05:42:52.4088940Z copying torch/_export/passes/collect_tracepoints_pass.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/passes 2024-06-26T05:42:52.4089840Z copying torch/_export/passes/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/passes 2024-06-26T05:42:52.4090740Z copying torch/_export/passes/_node_metadata_hook.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/passes 2024-06-26T05:42:52.4091790Z copying torch/_export/passes/lift_constants_pass.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/passes 2024-06-26T05:42:52.4093640Z copying torch/_export/passes/constant_folding.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/passes 2024-06-26T05:42:52.4094650Z copying torch/_export/passes/add_runtime_assertions_for_constraints_pass.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/passes 2024-06-26T05:42:52.4095960Z copying torch/_export/passes/functionalize_side_effectful_ops_pass.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/passes 2024-06-26T05:42:52.4097000Z copying torch/_export/passes/replace_set_grad_with_hop_pass.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/passes 2024-06-26T05:42:52.4098090Z copying torch/_export/passes/remove_runtime_assertions.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/passes 2024-06-26T05:42:52.4100330Z creating build/lib.macosx-11.1-arm64-3.9/torch/_export/db 2024-06-26T05:42:52.4100870Z copying torch/_export/db/logging.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db 2024-06-26T05:42:52.4102000Z copying torch/_export/db/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db 2024-06-26T05:42:52.4102790Z copying torch/_export/db/gen_example.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db 2024-06-26T05:42:52.4103790Z copying torch/_export/db/case.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db 2024-06-26T05:42:52.4106460Z creating build/lib.macosx-11.1-arm64-3.9/torch/_export/serde 2024-06-26T05:42:52.4107060Z copying torch/_export/serde/serialize.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/serde 2024-06-26T05:42:52.4108640Z copying torch/_export/serde/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/serde 2024-06-26T05:42:52.4109320Z copying torch/_export/serde/upgrade.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/serde 2024-06-26T05:42:52.4110230Z copying torch/_export/serde/schema_check.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/serde 2024-06-26T05:42:52.4111810Z copying torch/_export/serde/union.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/serde 2024-06-26T05:42:52.4112580Z copying torch/_export/serde/schema.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/serde 2024-06-26T05:42:52.4118880Z creating build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4119550Z copying torch/_export/db/examples/list_unpack.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4120530Z copying torch/_export/db/examples/torch_sym_min.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4121640Z copying torch/_export/db/examples/specialized_attribute.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4122770Z copying torch/_export/db/examples/static_for_loop.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4124060Z copying torch/_export/db/examples/cond_closed_over_variable.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4125130Z copying torch/_export/db/examples/fn_with_kwargs.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4126070Z copying torch/_export/db/examples/constrain_as_value_example.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4127060Z copying torch/_export/db/examples/dynamic_shape_slicing.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4128160Z copying torch/_export/db/examples/cond_branch_nonlocal_variables.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4129230Z copying torch/_export/db/examples/autograd_function.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4130250Z copying torch/_export/db/examples/type_reflection_method.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4131300Z copying torch/_export/db/examples/cond_operands.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4132390Z copying torch/_export/db/examples/decorator.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4133380Z copying torch/_export/db/examples/dynamic_shape_view.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4134680Z copying torch/_export/db/examples/dynamic_shape_map.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4135830Z copying torch/_export/db/examples/nested_function.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4136880Z copying torch/_export/db/examples/dynamic_shape_constructor.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4137840Z copying torch/_export/db/examples/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4138940Z copying torch/_export/db/examples/dynamic_shape_if_guard.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4140010Z copying torch/_export/db/examples/assume_constant_result.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4141070Z copying torch/_export/db/examples/cond_branch_class_method.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4142440Z copying torch/_export/db/examples/class_method.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4143460Z copying torch/_export/db/examples/pytree_flatten.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4144390Z copying torch/_export/db/examples/scalar_output.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4145410Z copying torch/_export/db/examples/cond_predicate.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4146500Z copying torch/_export/db/examples/dynamic_shape_assert.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4147820Z copying torch/_export/db/examples/tensor_setattr.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4148750Z copying torch/_export/db/examples/optional_input.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4149730Z copying torch/_export/db/examples/constrain_as_size_example.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4150770Z copying torch/_export/db/examples/static_if.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4151850Z copying torch/_export/db/examples/dictionary.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4152870Z copying torch/_export/db/examples/list_contains.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4153870Z copying torch/_export/db/examples/dynamic_shape_round.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4155030Z copying torch/_export/db/examples/user_input_mutation.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4156030Z copying torch/_export/db/examples/null_context_manager.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4157120Z copying torch/_export/db/examples/cond_branch_nested_function.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4158150Z copying torch/_export/db/examples/model_attr_mutation.py -> build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples 2024-06-26T05:42:52.4160380Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/attention 2024-06-26T05:42:52.4160940Z copying torch/nn/attention/bias.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/attention 2024-06-26T05:42:52.4162730Z copying torch/nn/attention/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/attention 2024-06-26T05:42:52.4163570Z copying torch/nn/attention/_flex_attention.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/attention 2024-06-26T05:42:52.4164430Z copying torch/nn/attention/_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/attention 2024-06-26T05:42:52.4168840Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel 2024-06-26T05:42:52.4169440Z copying torch/nn/parallel/parallel_apply.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel 2024-06-26T05:42:52.4170120Z copying torch/nn/parallel/comm.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel 2024-06-26T05:42:52.4170810Z copying torch/nn/parallel/scatter_gather.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel 2024-06-26T05:42:52.4171500Z copying torch/nn/parallel/replicate.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel 2024-06-26T05:42:52.4172500Z copying torch/nn/parallel/_functions.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel 2024-06-26T05:42:52.4173300Z copying torch/nn/parallel/data_parallel.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel 2024-06-26T05:42:52.4174240Z copying torch/nn/parallel/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel 2024-06-26T05:42:52.4175780Z copying torch/nn/parallel/distributed.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel 2024-06-26T05:42:52.4177930Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/qat 2024-06-26T05:42:52.4178420Z copying torch/nn/qat/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/qat 2024-06-26T05:42:52.4180330Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized 2024-06-26T05:42:52.4180890Z copying torch/nn/quantized/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized 2024-06-26T05:42:52.4181760Z copying torch/nn/quantized/functional.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized 2024-06-26T05:42:52.4184390Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/backends 2024-06-26T05:42:52.4184930Z copying torch/nn/backends/thnn.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/backends 2024-06-26T05:42:52.4185830Z copying torch/nn/backends/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/backends 2024-06-26T05:42:52.4189340Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4189910Z copying torch/nn/utils/_named_member_accessor.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4191530Z copying torch/nn/utils/spectral_norm.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4193020Z copying torch/nn/utils/convert_parameters.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4193790Z copying torch/nn/utils/stateless.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4195300Z copying torch/nn/utils/parametrize.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4196330Z copying torch/nn/utils/memory_format.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4197380Z copying torch/nn/utils/_per_sample_grad.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4198420Z copying torch/nn/utils/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4199550Z copying torch/nn/utils/weight_norm.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4200460Z copying torch/nn/utils/fusion.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4201950Z copying torch/nn/utils/prune.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4203440Z copying torch/nn/utils/parametrizations.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4204220Z copying torch/nn/utils/init.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4205690Z copying torch/nn/utils/_deprecation_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4206420Z copying torch/nn/utils/rnn.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4207480Z copying torch/nn/utils/clip_grad.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils 2024-06-26T05:42:52.4209260Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/quantizable 2024-06-26T05:42:52.4209840Z copying torch/nn/quantizable/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantizable 2024-06-26T05:42:52.4211950Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic 2024-06-26T05:42:52.4212530Z copying torch/nn/intrinsic/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic 2024-06-26T05:42:52.4216990Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4217790Z copying torch/nn/modules/upsampling.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4218750Z copying torch/nn/modules/channelshuffle.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4219550Z copying torch/nn/modules/instancenorm.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4221090Z copying torch/nn/modules/flatten.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4221920Z copying torch/nn/modules/batchnorm.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4223620Z copying torch/nn/modules/linear.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4224410Z copying torch/nn/modules/_functions.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4225880Z copying torch/nn/modules/pooling.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4226950Z copying torch/nn/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4228020Z copying torch/nn/modules/distance.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4229060Z copying torch/nn/modules/container.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4230710Z copying torch/nn/modules/pixelshuffle.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4231590Z copying torch/nn/modules/adaptive.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4233180Z copying torch/nn/modules/loss.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4234590Z copying torch/nn/modules/activation.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4236080Z copying torch/nn/modules/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4236870Z copying torch/nn/modules/transformer.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4238440Z copying torch/nn/modules/sparse.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4239900Z copying torch/nn/modules/module.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4241950Z copying torch/nn/modules/dropout.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4243410Z copying torch/nn/modules/conv.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4245120Z copying torch/nn/modules/lazy.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4246140Z copying torch/nn/modules/normalization.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4247890Z copying torch/nn/modules/rnn.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4249350Z copying torch/nn/modules/padding.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4250290Z copying torch/nn/modules/fold.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/modules 2024-06-26T05:42:52.4252840Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/dynamic 2024-06-26T05:42:52.4253430Z copying torch/nn/qat/dynamic/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/dynamic 2024-06-26T05:42:52.4255630Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/modules 2024-06-26T05:42:52.4256240Z copying torch/nn/qat/modules/linear.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/modules 2024-06-26T05:42:52.4257220Z copying torch/nn/qat/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/modules 2024-06-26T05:42:52.4258030Z copying torch/nn/qat/modules/conv.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/modules 2024-06-26T05:42:52.4259150Z copying torch/nn/qat/modules/embedding_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/modules 2024-06-26T05:42:52.4261390Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/dynamic/modules 2024-06-26T05:42:52.4262150Z copying torch/nn/qat/dynamic/modules/linear.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/dynamic/modules 2024-06-26T05:42:52.4263030Z copying torch/nn/qat/dynamic/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/dynamic/modules 2024-06-26T05:42:52.4264930Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/_reference 2024-06-26T05:42:52.4265610Z copying torch/nn/quantized/_reference/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/_reference 2024-06-26T05:42:52.4266860Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/dynamic 2024-06-26T05:42:52.4267530Z copying torch/nn/quantized/dynamic/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/dynamic 2024-06-26T05:42:52.4270620Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules 2024-06-26T05:42:52.4271300Z copying torch/nn/quantized/modules/batchnorm.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules 2024-06-26T05:42:52.4272210Z copying torch/nn/quantized/modules/functional_modules.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules 2024-06-26T05:42:52.4273120Z copying torch/nn/quantized/modules/linear.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules 2024-06-26T05:42:52.4277650Z copying torch/nn/quantized/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules 2024-06-26T05:42:52.4278500Z copying torch/nn/quantized/modules/activation.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules 2024-06-26T05:42:52.4279430Z copying torch/nn/quantized/modules/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules 2024-06-26T05:42:52.4280240Z copying torch/nn/quantized/modules/dropout.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules 2024-06-26T05:42:52.4281050Z copying torch/nn/quantized/modules/conv.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules 2024-06-26T05:42:52.4281880Z copying torch/nn/quantized/modules/normalization.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules 2024-06-26T05:42:52.4282690Z copying torch/nn/quantized/modules/rnn.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules 2024-06-26T05:42:52.4283490Z copying torch/nn/quantized/modules/embedding_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules 2024-06-26T05:42:52.4284310Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/_reference/modules 2024-06-26T05:42:52.4285100Z copying torch/nn/quantized/_reference/modules/linear.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/_reference/modules 2024-06-26T05:42:52.4286060Z copying torch/nn/quantized/_reference/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/_reference/modules 2024-06-26T05:42:52.4287350Z copying torch/nn/quantized/_reference/modules/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/_reference/modules 2024-06-26T05:42:52.4288320Z copying torch/nn/quantized/_reference/modules/sparse.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/_reference/modules 2024-06-26T05:42:52.4289400Z copying torch/nn/quantized/_reference/modules/conv.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/_reference/modules 2024-06-26T05:42:52.4290370Z copying torch/nn/quantized/_reference/modules/rnn.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/_reference/modules 2024-06-26T05:42:52.4292390Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/dynamic/modules 2024-06-26T05:42:52.4293160Z copying torch/nn/quantized/dynamic/modules/linear.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/dynamic/modules 2024-06-26T05:42:52.4294130Z copying torch/nn/quantized/dynamic/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/dynamic/modules 2024-06-26T05:42:52.4295200Z copying torch/nn/quantized/dynamic/modules/conv.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/dynamic/modules 2024-06-26T05:42:52.4296260Z copying torch/nn/quantized/dynamic/modules/rnn.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/dynamic/modules 2024-06-26T05:42:52.4299090Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights 2024-06-26T05:42:52.4299890Z copying torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights 2024-06-26T05:42:52.4300890Z copying torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights 2024-06-26T05:42:52.4301930Z copying torch/nn/utils/_expanded_weights/conv_expanded_weights.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights 2024-06-26T05:42:52.4302960Z copying torch/nn/utils/_expanded_weights/expanded_weights_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights 2024-06-26T05:42:52.4304050Z copying torch/nn/utils/_expanded_weights/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights 2024-06-26T05:42:52.4305020Z copying torch/nn/utils/_expanded_weights/embedding_expanded_weights.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights 2024-06-26T05:42:52.4306050Z copying torch/nn/utils/_expanded_weights/conv_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights 2024-06-26T05:42:52.4307160Z copying torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights 2024-06-26T05:42:52.4308250Z copying torch/nn/utils/_expanded_weights/linear_expanded_weights.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights 2024-06-26T05:42:52.4309430Z copying torch/nn/utils/_expanded_weights/expanded_weights_impl.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights 2024-06-26T05:42:52.4311590Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/quantizable/modules 2024-06-26T05:42:52.4312270Z copying torch/nn/quantizable/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantizable/modules 2024-06-26T05:42:52.4313260Z copying torch/nn/quantizable/modules/activation.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantizable/modules 2024-06-26T05:42:52.4314150Z copying torch/nn/quantizable/modules/rnn.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/quantizable/modules 2024-06-26T05:42:52.4315870Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/qat 2024-06-26T05:42:52.4316480Z copying torch/nn/intrinsic/qat/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/qat 2024-06-26T05:42:52.4318080Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized 2024-06-26T05:42:52.4318770Z copying torch/nn/intrinsic/quantized/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized 2024-06-26T05:42:52.4320350Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/modules 2024-06-26T05:42:52.4321080Z copying torch/nn/intrinsic/modules/fused.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/modules 2024-06-26T05:42:52.4321930Z copying torch/nn/intrinsic/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/modules 2024-06-26T05:42:52.4324020Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/qat/modules 2024-06-26T05:42:52.4324750Z copying torch/nn/intrinsic/qat/modules/conv_fused.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/qat/modules 2024-06-26T05:42:52.4325810Z copying torch/nn/intrinsic/qat/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/qat/modules 2024-06-26T05:42:52.4326800Z copying torch/nn/intrinsic/qat/modules/linear_relu.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/qat/modules 2024-06-26T05:42:52.4327860Z copying torch/nn/intrinsic/qat/modules/linear_fused.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/qat/modules 2024-06-26T05:42:52.4329580Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/dynamic 2024-06-26T05:42:52.4330360Z copying torch/nn/intrinsic/quantized/dynamic/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/dynamic 2024-06-26T05:42:52.4332280Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/modules 2024-06-26T05:42:52.4333060Z copying torch/nn/intrinsic/quantized/modules/bn_relu.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/modules 2024-06-26T05:42:52.4334040Z copying torch/nn/intrinsic/quantized/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/modules 2024-06-26T05:42:52.4335060Z copying torch/nn/intrinsic/quantized/modules/conv_relu.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/modules 2024-06-26T05:42:52.4336260Z copying torch/nn/intrinsic/quantized/modules/linear_relu.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/modules 2024-06-26T05:42:52.4337900Z creating build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/dynamic/modules 2024-06-26T05:42:52.4338800Z copying torch/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/dynamic/modules 2024-06-26T05:42:52.4339920Z copying torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/dynamic/modules 2024-06-26T05:42:52.4341860Z creating build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal 2024-06-26T05:42:52.4342460Z copying torch/onnx/_internal/registration.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal 2024-06-26T05:42:52.4343440Z copying torch/onnx/_internal/io_adapter.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal 2024-06-26T05:42:52.4345240Z copying torch/onnx/_internal/exporter.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal 2024-06-26T05:42:52.4346220Z copying torch/onnx/_internal/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal 2024-06-26T05:42:52.4347080Z copying torch/onnx/_internal/onnxruntime.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal 2024-06-26T05:42:52.4348680Z copying torch/onnx/_internal/_beartype.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal 2024-06-26T05:42:52.4349640Z copying torch/onnx/_internal/onnx_proto_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal 2024-06-26T05:42:52.4351190Z copying torch/onnx/_internal/jit_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal 2024-06-26T05:42:52.4354900Z creating build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx 2024-06-26T05:42:52.4355530Z copying torch/onnx/_internal/fx/registration.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx 2024-06-26T05:42:52.4356460Z copying torch/onnx/_internal/fx/fx_symbolic_graph_extractor.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx 2024-06-26T05:42:52.4357590Z copying torch/onnx/_internal/fx/onnxfunction_dispatcher.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx 2024-06-26T05:42:52.4359410Z copying torch/onnx/_internal/fx/decomposition_table.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx 2024-06-26T05:42:52.4360310Z copying torch/onnx/_internal/fx/decomposition_skip.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx 2024-06-26T05:42:52.4361330Z copying torch/onnx/_internal/fx/dynamo_graph_extractor.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx 2024-06-26T05:42:52.4362450Z copying torch/onnx/_internal/fx/diagnostics.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx 2024-06-26T05:42:52.4364040Z copying torch/onnx/_internal/fx/type_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx 2024-06-26T05:42:52.4364900Z copying torch/onnx/_internal/fx/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx 2024-06-26T05:42:52.4365780Z copying torch/onnx/_internal/fx/patcher.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx 2024-06-26T05:42:52.4366960Z copying torch/onnx/_internal/fx/torch_export_graph_extractor.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx 2024-06-26T05:42:52.4368070Z copying torch/onnx/_internal/fx/op_validation.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx 2024-06-26T05:42:52.4369650Z copying torch/onnx/_internal/fx/_pass.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx 2024-06-26T05:42:52.4370890Z copying torch/onnx/_internal/fx/fx_onnx_interpreter.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx 2024-06-26T05:42:52.4372620Z copying torch/onnx/_internal/fx/serialization.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx 2024-06-26T05:42:52.4374560Z creating build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics 2024-06-26T05:42:52.4375280Z copying torch/onnx/_internal/diagnostics/_rules.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics 2024-06-26T05:42:52.4380240Z copying torch/onnx/_internal/diagnostics/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics 2024-06-26T05:42:52.4381150Z copying torch/onnx/_internal/diagnostics/_diagnostic.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics 2024-06-26T05:42:52.4381850Z creating build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/analysis 2024-06-26T05:42:52.4382550Z copying torch/onnx/_internal/fx/analysis/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/analysis 2024-06-26T05:42:52.4383450Z copying torch/onnx/_internal/fx/analysis/unsupported_nodes.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/analysis 2024-06-26T05:42:52.4384180Z creating build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes 2024-06-26T05:42:52.4384900Z copying torch/onnx/_internal/fx/passes/readability.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes 2024-06-26T05:42:52.4385910Z copying torch/onnx/_internal/fx/passes/modularization.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes 2024-06-26T05:42:52.4386940Z copying torch/onnx/_internal/fx/passes/virtualization.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes 2024-06-26T05:42:52.4388130Z copying torch/onnx/_internal/fx/passes/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes 2024-06-26T05:42:52.4389200Z copying torch/onnx/_internal/fx/passes/functionalization.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes 2024-06-26T05:42:52.4390220Z copying torch/onnx/_internal/fx/passes/decomp.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes 2024-06-26T05:42:52.4391340Z copying torch/onnx/_internal/fx/passes/type_promotion.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes 2024-06-26T05:42:52.4393120Z copying torch/onnx/_internal/fx/passes/_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes 2024-06-26T05:42:52.4395400Z creating build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra 2024-06-26T05:42:52.4396270Z copying torch/onnx/_internal/diagnostics/infra/formatter.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra 2024-06-26T05:42:52.4397270Z copying torch/onnx/_internal/diagnostics/infra/decorator.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra 2024-06-26T05:42:52.4398450Z copying torch/onnx/_internal/diagnostics/infra/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra 2024-06-26T05:42:52.4399460Z copying torch/onnx/_internal/diagnostics/infra/context.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra 2024-06-26T05:42:52.4400570Z copying torch/onnx/_internal/diagnostics/infra/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra 2024-06-26T05:42:52.4401630Z copying torch/onnx/_internal/diagnostics/infra/_infra.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra 2024-06-26T05:42:52.4410280Z creating build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4411120Z copying torch/onnx/_internal/diagnostics/infra/sarif/_tool.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4412210Z copying torch/onnx/_internal/diagnostics/infra/sarif/_physical_location.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4413350Z copying torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4414490Z copying torch/onnx/_internal/diagnostics/infra/sarif/_special_locations.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4415620Z copying torch/onnx/_internal/diagnostics/infra/sarif/_thread_flow_location.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4416750Z copying torch/onnx/_internal/diagnostics/infra/sarif/_graph_traversal.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4417840Z copying torch/onnx/_internal/diagnostics/infra/sarif/_suppression.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4418910Z copying torch/onnx/_internal/diagnostics/infra/sarif/_artifact.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4420060Z copying torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor_reference.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4421250Z copying torch/onnx/_internal/diagnostics/infra/sarif/_reporting_configuration.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4422480Z copying torch/onnx/_internal/diagnostics/infra/sarif/_address.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4423570Z copying torch/onnx/_internal/diagnostics/infra/sarif/version.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4424610Z copying torch/onnx/_internal/diagnostics/infra/sarif/_node.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4425700Z copying torch/onnx/_internal/diagnostics/infra/sarif/_translation_metadata.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4426830Z copying torch/onnx/_internal/diagnostics/infra/sarif/_artifact_location.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4427930Z copying torch/onnx/_internal/diagnostics/infra/sarif/_conversion.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4429090Z copying torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor_relationship.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4430340Z copying torch/onnx/_internal/diagnostics/infra/sarif/_edge_traversal.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4431420Z copying torch/onnx/_internal/diagnostics/infra/sarif/_graph.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4432490Z copying torch/onnx/_internal/diagnostics/infra/sarif/_exception.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4433640Z copying torch/onnx/_internal/diagnostics/infra/sarif/_external_property_file_reference.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4434800Z copying torch/onnx/_internal/diagnostics/infra/sarif/_tool_component.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4435960Z copying torch/onnx/_internal/diagnostics/infra/sarif/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4437070Z copying torch/onnx/_internal/diagnostics/infra/sarif/_version_control_details.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4438250Z copying torch/onnx/_internal/diagnostics/infra/sarif/_fix.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4439310Z copying torch/onnx/_internal/diagnostics/infra/sarif/_web_request.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4440380Z copying torch/onnx/_internal/diagnostics/infra/sarif/_result.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4441560Z copying torch/onnx/_internal/diagnostics/infra/sarif/_location_relationship.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4442670Z copying torch/onnx/_internal/diagnostics/infra/sarif/_message.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4443740Z copying torch/onnx/_internal/diagnostics/infra/sarif/_sarif_log.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4444820Z copying torch/onnx/_internal/diagnostics/infra/sarif/_artifact_content.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4446000Z copying torch/onnx/_internal/diagnostics/infra/sarif/_external_property_file_references.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4447190Z copying torch/onnx/_internal/diagnostics/infra/sarif/_configuration_override.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4448420Z copying torch/onnx/_internal/diagnostics/infra/sarif/_result_provenance.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4449530Z copying torch/onnx/_internal/diagnostics/infra/sarif/_property_bag.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4450670Z copying torch/onnx/_internal/diagnostics/infra/sarif/_tool_component_reference.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4451790Z copying torch/onnx/_internal/diagnostics/infra/sarif/_replacement.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4452870Z copying torch/onnx/_internal/diagnostics/infra/sarif/_invocation.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4453960Z copying torch/onnx/_internal/diagnostics/infra/sarif/_web_response.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4455090Z copying torch/onnx/_internal/diagnostics/infra/sarif/_code_flow.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4456160Z copying torch/onnx/_internal/diagnostics/infra/sarif/_location.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4457220Z copying torch/onnx/_internal/diagnostics/infra/sarif/_region.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4458300Z copying torch/onnx/_internal/diagnostics/infra/sarif/_logical_location.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4459370Z copying torch/onnx/_internal/diagnostics/infra/sarif/_stack.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4460420Z copying torch/onnx/_internal/diagnostics/infra/sarif/_edge.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4461470Z copying torch/onnx/_internal/diagnostics/infra/sarif/_run.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4462560Z copying torch/onnx/_internal/diagnostics/infra/sarif/_run_automation_details.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4463670Z copying torch/onnx/_internal/diagnostics/infra/sarif/_rectangle.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4464800Z copying torch/onnx/_internal/diagnostics/infra/sarif/_multiformat_message_string.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4465930Z copying torch/onnx/_internal/diagnostics/infra/sarif/_stack_frame.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4467020Z copying torch/onnx/_internal/diagnostics/infra/sarif/_thread_flow.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4468110Z copying torch/onnx/_internal/diagnostics/infra/sarif/_artifact_change.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4469230Z copying torch/onnx/_internal/diagnostics/infra/sarif/_external_properties.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4470340Z copying torch/onnx/_internal/diagnostics/infra/sarif/_attachment.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4471410Z copying torch/onnx/_internal/diagnostics/infra/sarif/_notification.py -> build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:52.4472410Z creating build/lib.macosx-11.1-arm64-3.9/torch/_vendor/packaging 2024-06-26T05:42:52.4473030Z copying torch/_vendor/packaging/version.py -> build/lib.macosx-11.1-arm64-3.9/torch/_vendor/packaging 2024-06-26T05:42:52.4474350Z copying torch/_vendor/packaging/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_vendor/packaging 2024-06-26T05:42:52.4475390Z copying torch/_vendor/packaging/_structures.py -> build/lib.macosx-11.1-arm64-3.9/torch/_vendor/packaging 2024-06-26T05:42:52.4477690Z creating build/lib.macosx-11.1-arm64-3.9/torch/cpu/amp 2024-06-26T05:42:52.4478240Z copying torch/cpu/amp/autocast_mode.py -> build/lib.macosx-11.1-arm64-3.9/torch/cpu/amp 2024-06-26T05:42:52.4483110Z copying torch/cpu/amp/grad_scaler.py -> build/lib.macosx-11.1-arm64-3.9/torch/cpu/amp 2024-06-26T05:42:52.4483740Z copying torch/cpu/amp/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/cpu/amp 2024-06-26T05:42:52.4484280Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor 2024-06-26T05:42:52.4484940Z copying torch/distributed/_tensor/_shards_wrapper.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor 2024-06-26T05:42:52.4485760Z copying torch/distributed/_tensor/_redistribute.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor 2024-06-26T05:42:52.4486760Z copying torch/distributed/_tensor/_sharding_prop.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor 2024-06-26T05:42:52.4488020Z copying torch/distributed/_tensor/_collective_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor 2024-06-26T05:42:52.4489700Z copying torch/distributed/_tensor/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor 2024-06-26T05:42:52.4490860Z copying torch/distributed/_tensor/_dispatch.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor 2024-06-26T05:42:52.4492510Z copying torch/distributed/_tensor/random.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor 2024-06-26T05:42:52.4493690Z copying torch/distributed/_tensor/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor 2024-06-26T05:42:52.4495820Z copying torch/distributed/_tensor/_op_schema.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor 2024-06-26T05:42:52.4496930Z copying torch/distributed/_tensor/placement_types.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor 2024-06-26T05:42:52.4498560Z copying torch/distributed/_tensor/_tp_conv.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor 2024-06-26T05:42:52.4499450Z copying torch/distributed/_tensor/device_mesh.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor 2024-06-26T05:42:52.4500480Z copying torch/distributed/_tensor/_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor 2024-06-26T05:42:52.4502730Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_sharding_spec 2024-06-26T05:42:52.4503440Z copying torch/distributed/_sharding_spec/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_sharding_spec 2024-06-26T05:42:52.4505380Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/launcher 2024-06-26T05:42:52.4506040Z copying torch/distributed/launcher/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/launcher 2024-06-26T05:42:52.4506830Z copying torch/distributed/launcher/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/launcher 2024-06-26T05:42:52.4511730Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4512450Z copying torch/distributed/checkpoint/logging_handlers.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4513500Z copying torch/distributed/checkpoint/format_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4514470Z copying torch/distributed/checkpoint/planner.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4516210Z copying torch/distributed/checkpoint/_dedup_save_plans.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4517470Z copying torch/distributed/checkpoint/state_dict.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4518460Z copying torch/distributed/checkpoint/metadata.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4519560Z copying torch/distributed/checkpoint/_storage_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4520610Z copying torch/distributed/checkpoint/_traverse.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4521710Z copying torch/distributed/checkpoint/_sharded_tensor_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4522740Z copying torch/distributed/checkpoint/_dedup_tensors.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4523800Z copying torch/distributed/checkpoint/filesystem.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4525150Z copying torch/distributed/checkpoint/state_dict_saver.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4526830Z copying torch/distributed/checkpoint/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4527880Z copying torch/distributed/checkpoint/logger.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4528890Z copying torch/distributed/checkpoint/resharding.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4529810Z copying torch/distributed/checkpoint/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4530870Z copying torch/distributed/checkpoint/state_dict_loader.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4532060Z copying torch/distributed/checkpoint/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4533870Z copying torch/distributed/checkpoint/default_planner.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4534920Z copying torch/distributed/checkpoint/storage.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4536140Z copying torch/distributed/checkpoint/planner_helpers.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4537280Z copying torch/distributed/checkpoint/optimizer.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4539270Z copying torch/distributed/checkpoint/staging.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4540030Z copying torch/distributed/checkpoint/_checkpointer.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4541440Z copying torch/distributed/checkpoint/stateful.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4542110Z copying torch/distributed/checkpoint/_fsspec_filesystem.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4543410Z copying torch/distributed/checkpoint/_nested_dict.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint 2024-06-26T05:42:52.4545260Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_sharded_tensor 2024-06-26T05:42:52.4545690Z copying torch/distributed/_sharded_tensor/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_sharded_tensor 2024-06-26T05:42:52.4547520Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn 2024-06-26T05:42:52.4547860Z copying torch/distributed/nn/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn 2024-06-26T05:42:52.4549220Z copying torch/distributed/nn/functional.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn 2024-06-26T05:42:52.4551410Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic 2024-06-26T05:42:52.4551780Z copying torch/distributed/elastic/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic 2024-06-26T05:42:52.4553110Z copying torch/distributed/elastic/control_plane.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic 2024-06-26T05:42:52.4554820Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_cuda_p2p 2024-06-26T05:42:52.4555190Z copying torch/distributed/_cuda_p2p/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_cuda_p2p 2024-06-26T05:42:52.4557110Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/autograd 2024-06-26T05:42:52.4557480Z copying torch/distributed/autograd/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/autograd 2024-06-26T05:42:52.4560360Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining 2024-06-26T05:42:52.4560740Z copying torch/distributed/pipelining/_IR.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining 2024-06-26T05:42:52.4562410Z copying torch/distributed/pipelining/_unflatten.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining 2024-06-26T05:42:52.4563050Z copying torch/distributed/pipelining/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining 2024-06-26T05:42:52.4564530Z copying torch/distributed/pipelining/microbatch.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining 2024-06-26T05:42:52.4565870Z copying torch/distributed/pipelining/_backward.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining 2024-06-26T05:42:52.4566680Z copying torch/distributed/pipelining/_debug.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining 2024-06-26T05:42:52.4567960Z copying torch/distributed/pipelining/stage.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining 2024-06-26T05:42:52.4569410Z copying torch/distributed/pipelining/schedules.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining 2024-06-26T05:42:52.4570690Z copying torch/distributed/pipelining/_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining 2024-06-26T05:42:52.4573090Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms 2024-06-26T05:42:52.4573590Z copying torch/distributed/algorithms/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms 2024-06-26T05:42:52.4574530Z copying torch/distributed/algorithms/join.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms 2024-06-26T05:42:52.4578390Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim 2024-06-26T05:42:52.4578770Z copying torch/distributed/optim/named_optimizer.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim 2024-06-26T05:42:52.4580480Z copying torch/distributed/optim/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim 2024-06-26T05:42:52.4581330Z copying torch/distributed/optim/functional_sgd.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim 2024-06-26T05:42:52.4582700Z copying torch/distributed/optim/functional_adagrad.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim 2024-06-26T05:42:52.4583810Z copying torch/distributed/optim/functional_adamw.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim 2024-06-26T05:42:52.4584610Z copying torch/distributed/optim/apply_optimizer_in_backward.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim 2024-06-26T05:42:52.4586030Z copying torch/distributed/optim/functional_adam.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim 2024-06-26T05:42:52.4586670Z copying torch/distributed/optim/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim 2024-06-26T05:42:52.4588120Z copying torch/distributed/optim/functional_rprop.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim 2024-06-26T05:42:52.4588990Z copying torch/distributed/optim/post_localSGD_optimizer.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim 2024-06-26T05:42:52.4590390Z copying torch/distributed/optim/optimizer.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim 2024-06-26T05:42:52.4591230Z copying torch/distributed/optim/functional_adadelta.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim 2024-06-26T05:42:52.4592580Z copying torch/distributed/optim/functional_rmsprop.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim 2024-06-26T05:42:52.4593350Z copying torch/distributed/optim/zero_redundancy_optimizer.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim 2024-06-26T05:42:52.4595180Z copying torch/distributed/optim/functional_adamax.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim 2024-06-26T05:42:52.4597310Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable 2024-06-26T05:42:52.4597730Z copying torch/distributed/_composable/replicate.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable 2024-06-26T05:42:52.4599260Z copying torch/distributed/_composable/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable 2024-06-26T05:42:52.4600070Z copying torch/distributed/_composable/fully_shard.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable 2024-06-26T05:42:52.4601380Z copying torch/distributed/_composable/contract.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable 2024-06-26T05:42:52.4603260Z copying torch/distributed/_composable/checkpoint_activation.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable 2024-06-26T05:42:52.4605180Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tools 2024-06-26T05:42:52.4605620Z copying torch/distributed/_tools/mem_tracker.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tools 2024-06-26T05:42:52.4607320Z copying torch/distributed/_tools/fsdp2_mem_tracker.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tools 2024-06-26T05:42:52.4608580Z copying torch/distributed/_tools/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tools 2024-06-26T05:42:52.4609890Z copying torch/distributed/_tools/memory_tracker.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tools 2024-06-26T05:42:52.4610610Z copying torch/distributed/_tools/mod_tracker.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tools 2024-06-26T05:42:52.4615030Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4615420Z copying torch/distributed/fsdp/_exec_order_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4616950Z copying torch/distributed/fsdp/_traversal_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4618360Z copying torch/distributed/fsdp/sharded_grad_scaler.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4619670Z copying torch/distributed/fsdp/_state_dict_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4620920Z copying torch/distributed/fsdp/fully_sharded_data_parallel.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4622360Z copying torch/distributed/fsdp/_wrap_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4623570Z copying torch/distributed/fsdp/_optim_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4625190Z copying torch/distributed/fsdp/_trace_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4626490Z copying torch/distributed/fsdp/_common_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4627360Z copying torch/distributed/fsdp/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4628690Z copying torch/distributed/fsdp/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4629920Z copying torch/distributed/fsdp/_limiter_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4631140Z copying torch/distributed/fsdp/_dynamo_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4631800Z copying torch/distributed/fsdp/_unshard_param_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4633250Z copying torch/distributed/fsdp/_shard_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4634420Z copying torch/distributed/fsdp/wrap.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4635750Z copying torch/distributed/fsdp/_runtime_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4637500Z copying torch/distributed/fsdp/_fsdp_extensions.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4641960Z copying torch/distributed/fsdp/_init_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4642410Z copying torch/distributed/fsdp/_debug_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4642770Z copying torch/distributed/fsdp/_flat_param.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp 2024-06-26T05:42:52.4644690Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard 2024-06-26T05:42:52.4645070Z copying torch/distributed/_shard/metadata.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard 2024-06-26T05:42:52.4646220Z copying torch/distributed/_shard/op_registry_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard 2024-06-26T05:42:52.4647530Z copying torch/distributed/_shard/sharder.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard 2024-06-26T05:42:52.4648440Z copying torch/distributed/_shard/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard 2024-06-26T05:42:52.4649420Z copying torch/distributed/_shard/common_op_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard 2024-06-26T05:42:52.4650820Z copying torch/distributed/_shard/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard 2024-06-26T05:42:52.4652150Z copying torch/distributed/_shard/_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard 2024-06-26T05:42:52.4655400Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd 2024-06-26T05:42:52.4655830Z copying torch/distributed/_spmd/experimental_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd 2024-06-26T05:42:52.4657340Z copying torch/distributed/_spmd/iter_graph_module.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd 2024-06-26T05:42:52.4658420Z copying torch/distributed/_spmd/distribute.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd 2024-06-26T05:42:52.4659880Z copying torch/distributed/_spmd/batch_dim_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd 2024-06-26T05:42:52.4661070Z copying torch/distributed/_spmd/config.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd 2024-06-26T05:42:52.4661800Z copying torch/distributed/_spmd/gm_transformation.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd 2024-06-26T05:42:52.4663090Z copying torch/distributed/_spmd/log_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd 2024-06-26T05:42:52.4663870Z copying torch/distributed/_spmd/data_parallel.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd 2024-06-26T05:42:52.4665430Z copying torch/distributed/_spmd/graph_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd 2024-06-26T05:42:52.4666620Z copying torch/distributed/_spmd/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd 2024-06-26T05:42:52.4667010Z copying torch/distributed/_spmd/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd 2024-06-26T05:42:52.4668530Z copying torch/distributed/_spmd/partial_lower.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd 2024-06-26T05:42:52.4669950Z copying torch/distributed/_spmd/graph_optimization.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd 2024-06-26T05:42:52.4671140Z copying torch/distributed/_spmd/comm_tensor.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd 2024-06-26T05:42:52.4672350Z copying torch/distributed/_spmd/parallel_mode.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd 2024-06-26T05:42:52.4673990Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor 2024-06-26T05:42:52.4674410Z copying torch/distributed/tensor/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor 2024-06-26T05:42:52.4677050Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc 2024-06-26T05:42:52.4677460Z copying torch/distributed/rpc/functions.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc 2024-06-26T05:42:52.4678770Z copying torch/distributed/rpc/options.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc 2024-06-26T05:42:52.4679950Z copying torch/distributed/rpc/internal.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc 2024-06-26T05:42:52.4681130Z copying torch/distributed/rpc/constants.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc 2024-06-26T05:42:52.4682330Z copying torch/distributed/rpc/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc 2024-06-26T05:42:52.4683230Z copying torch/distributed/rpc/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc 2024-06-26T05:42:52.4684690Z copying torch/distributed/rpc/rref_proxy.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc 2024-06-26T05:42:52.4686170Z copying torch/distributed/rpc/server_process_global_profiler.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc 2024-06-26T05:42:52.4686730Z copying torch/distributed/rpc/_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc 2024-06-26T05:42:52.4688170Z copying torch/distributed/rpc/backend_registry.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc 2024-06-26T05:42:52.4690670Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/experimental 2024-06-26T05:42:52.4691150Z copying torch/distributed/_tensor/experimental/attention.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/experimental 2024-06-26T05:42:52.4692670Z copying torch/distributed/_tensor/experimental/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/experimental 2024-06-26T05:42:52.4693430Z copying torch/distributed/_tensor/experimental/local_map.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/experimental 2024-06-26T05:42:52.4694960Z copying torch/distributed/_tensor/experimental/tp_transform.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/experimental 2024-06-26T05:42:52.4698050Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops 2024-06-26T05:42:52.4698660Z copying torch/distributed/_tensor/ops/experimental_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops 2024-06-26T05:42:52.4700150Z copying torch/distributed/_tensor/ops/common_rules.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops 2024-06-26T05:42:52.4701040Z copying torch/distributed/_tensor/ops/basic_strategy.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops 2024-06-26T05:42:52.4702320Z copying torch/distributed/_tensor/ops/conv_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops 2024-06-26T05:42:52.4703770Z copying torch/distributed/_tensor/ops/tensor_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops 2024-06-26T05:42:52.4704990Z copying torch/distributed/_tensor/ops/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops 2024-06-26T05:42:52.4705710Z copying torch/distributed/_tensor/ops/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops 2024-06-26T05:42:52.4707340Z copying torch/distributed/_tensor/ops/pointwise_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops 2024-06-26T05:42:52.4708570Z copying torch/distributed/_tensor/ops/math_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops 2024-06-26T05:42:52.4709870Z copying torch/distributed/_tensor/ops/view_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops 2024-06-26T05:42:52.4711240Z copying torch/distributed/_tensor/ops/random_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops 2024-06-26T05:42:52.4711870Z copying torch/distributed/_tensor/ops/matrix_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops 2024-06-26T05:42:52.4713410Z copying torch/distributed/_tensor/ops/embedding_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops 2024-06-26T05:42:52.4715730Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/debug 2024-06-26T05:42:52.4716260Z copying torch/distributed/_tensor/debug/visualize_sharding.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/debug 2024-06-26T05:42:52.4717500Z copying torch/distributed/_tensor/debug/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/debug 2024-06-26T05:42:52.4718740Z copying torch/distributed/_tensor/debug/comm_mode.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/debug 2024-06-26T05:42:52.4719640Z copying torch/distributed/_tensor/debug/_op_coverage.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/debug 2024-06-26T05:42:52.4721720Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/jit 2024-06-26T05:42:52.4722210Z copying torch/distributed/nn/jit/instantiator.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/jit 2024-06-26T05:42:52.4723460Z copying torch/distributed/nn/jit/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/jit 2024-06-26T05:42:52.4724910Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/api 2024-06-26T05:42:52.4725300Z copying torch/distributed/nn/api/remote_module.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/api 2024-06-26T05:42:52.4726800Z copying torch/distributed/nn/api/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/api 2024-06-26T05:42:52.4728470Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/jit/templates 2024-06-26T05:42:52.4728920Z copying torch/distributed/nn/jit/templates/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/jit/templates 2024-06-26T05:42:52.4729660Z copying torch/distributed/nn/jit/templates/remote_module_template.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/jit/templates 2024-06-26T05:42:52.4731600Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/metrics 2024-06-26T05:42:52.4732040Z copying torch/distributed/elastic/metrics/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/metrics 2024-06-26T05:42:52.4733340Z copying torch/distributed/elastic/metrics/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/metrics 2024-06-26T05:42:52.4736230Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous 2024-06-26T05:42:52.4736720Z copying torch/distributed/elastic/rendezvous/etcd_store.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous 2024-06-26T05:42:52.4737750Z copying torch/distributed/elastic/rendezvous/registry.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous 2024-06-26T05:42:52.4739180Z copying torch/distributed/elastic/rendezvous/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous 2024-06-26T05:42:52.4739940Z copying torch/distributed/elastic/rendezvous/etcd_rendezvous.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous 2024-06-26T05:42:52.4741600Z copying torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous 2024-06-26T05:42:52.4742440Z copying torch/distributed/elastic/rendezvous/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous 2024-06-26T05:42:52.4744230Z copying torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous 2024-06-26T05:42:52.4744970Z copying torch/distributed/elastic/rendezvous/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous 2024-06-26T05:42:52.4746390Z copying torch/distributed/elastic/rendezvous/dynamic_rendezvous.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous 2024-06-26T05:42:52.4747950Z copying torch/distributed/elastic/rendezvous/etcd_server.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous 2024-06-26T05:42:52.4748830Z copying torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous 2024-06-26T05:42:52.4750950Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing 2024-06-26T05:42:52.4751470Z copying torch/distributed/elastic/multiprocessing/tail_log.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing 2024-06-26T05:42:52.4752490Z copying torch/distributed/elastic/multiprocessing/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing 2024-06-26T05:42:52.4753840Z copying torch/distributed/elastic/multiprocessing/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing 2024-06-26T05:42:52.4755240Z copying torch/distributed/elastic/multiprocessing/redirects.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing 2024-06-26T05:42:52.4757260Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/timer 2024-06-26T05:42:52.4757710Z copying torch/distributed/elastic/timer/local_timer.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/timer 2024-06-26T05:42:52.4759040Z copying torch/distributed/elastic/timer/debug_info_logging.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/timer 2024-06-26T05:42:52.4759790Z copying torch/distributed/elastic/timer/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/timer 2024-06-26T05:42:52.4761100Z copying torch/distributed/elastic/timer/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/timer 2024-06-26T05:42:52.4762510Z copying torch/distributed/elastic/timer/file_based_local_timer.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/timer 2024-06-26T05:42:52.4764900Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils 2024-06-26T05:42:52.4765420Z copying torch/distributed/elastic/utils/store.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils 2024-06-26T05:42:52.4766920Z copying torch/distributed/elastic/utils/logging.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils 2024-06-26T05:42:52.4768060Z copying torch/distributed/elastic/utils/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils 2024-06-26T05:42:52.4768880Z copying torch/distributed/elastic/utils/log_level.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils 2024-06-26T05:42:52.4770390Z copying torch/distributed/elastic/utils/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils 2024-06-26T05:42:52.4771040Z copying torch/distributed/elastic/utils/distributed.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils 2024-06-26T05:42:52.4772990Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/agent 2024-06-26T05:42:52.4773750Z copying torch/distributed/elastic/agent/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/agent 2024-06-26T05:42:52.4775290Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/events 2024-06-26T05:42:52.4775740Z copying torch/distributed/elastic/events/handlers.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/events 2024-06-26T05:42:52.4776920Z copying torch/distributed/elastic/events/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/events 2024-06-26T05:42:52.4778200Z copying torch/distributed/elastic/events/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/events 2024-06-26T05:42:52.4780230Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/subprocess_handler 2024-06-26T05:42:52.4780950Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/subprocess_handler 2024-06-26T05:42:52.4781890Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/subprocess_handler 2024-06-26T05:42:52.4783010Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/subprocess_handler 2024-06-26T05:42:52.4784950Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/errors 2024-06-26T05:42:52.4785540Z copying torch/distributed/elastic/multiprocessing/errors/handlers.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/errors 2024-06-26T05:42:52.4786500Z copying torch/distributed/elastic/multiprocessing/errors/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/errors 2024-06-26T05:42:52.4788410Z copying torch/distributed/elastic/multiprocessing/errors/error_handler.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/errors 2024-06-26T05:42:52.4790140Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils/data 2024-06-26T05:42:52.4790690Z copying torch/distributed/elastic/utils/data/elastic_distributed_sampler.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils/data 2024-06-26T05:42:52.4791810Z copying torch/distributed/elastic/utils/data/cycling_iterator.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils/data 2024-06-26T05:42:52.4792570Z copying torch/distributed/elastic/utils/data/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils/data 2024-06-26T05:42:52.4794770Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/agent/server 2024-06-26T05:42:52.4795310Z copying torch/distributed/elastic/agent/server/health_check_server.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/agent/server 2024-06-26T05:42:52.4796300Z copying torch/distributed/elastic/agent/server/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/agent/server 2024-06-26T05:42:52.4797680Z copying torch/distributed/elastic/agent/server/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/agent/server 2024-06-26T05:42:52.4799040Z copying torch/distributed/elastic/agent/server/local_elastic_agent.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/agent/server 2024-06-26T05:42:52.4801050Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_comm_hooks 2024-06-26T05:42:52.4801580Z copying torch/distributed/algorithms/_comm_hooks/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_comm_hooks 2024-06-26T05:42:52.4803070Z copying torch/distributed/algorithms/_comm_hooks/default_hooks.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_comm_hooks 2024-06-26T05:42:52.4804640Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_checkpoint 2024-06-26T05:42:52.4805340Z copying torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_checkpoint 2024-06-26T05:42:52.4806830Z copying torch/distributed/algorithms/_checkpoint/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_checkpoint 2024-06-26T05:42:52.4808540Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/model_averaging 2024-06-26T05:42:52.4809060Z copying torch/distributed/algorithms/model_averaging/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/model_averaging 2024-06-26T05:42:52.4809870Z copying torch/distributed/algorithms/model_averaging/averagers.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/model_averaging 2024-06-26T05:42:52.4811320Z copying torch/distributed/algorithms/model_averaging/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/model_averaging 2024-06-26T05:42:52.4812110Z copying torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/model_averaging 2024-06-26T05:42:52.4815070Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:52.4815640Z copying torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:52.4817380Z copying torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:52.4818310Z copying torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:52.4819740Z copying torch/distributed/algorithms/ddp_comm_hooks/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:52.4820690Z copying torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:52.4822250Z copying torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:52.4823810Z copying torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:52.4824660Z copying torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:52.4825610Z copying torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:52.4827880Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_optimizer_overlap 2024-06-26T05:42:52.4828480Z copying torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_optimizer_overlap 2024-06-26T05:42:52.4829710Z copying torch/distributed/algorithms/_optimizer_overlap/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_optimizer_overlap 2024-06-26T05:42:52.4831330Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_quantization 2024-06-26T05:42:52.4831840Z copying torch/distributed/algorithms/_quantization/quantization.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_quantization 2024-06-26T05:42:52.4833160Z copying torch/distributed/algorithms/_quantization/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_quantization 2024-06-26T05:42:52.4835310Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp 2024-06-26T05:42:52.4835880Z copying torch/distributed/_composable/fsdp/_fsdp_api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp 2024-06-26T05:42:52.4837390Z copying torch/distributed/_composable/fsdp/_fsdp_common.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp 2024-06-26T05:42:52.4842040Z copying torch/distributed/_composable/fsdp/_fsdp_param_group.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp 2024-06-26T05:42:52.4842670Z copying torch/distributed/_composable/fsdp/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp 2024-06-26T05:42:52.4843130Z copying torch/distributed/_composable/fsdp/_fsdp_param.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp 2024-06-26T05:42:52.4843560Z copying torch/distributed/_composable/fsdp/_fsdp_init.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp 2024-06-26T05:42:52.4844030Z copying torch/distributed/_composable/fsdp/_fsdp_collectives.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp 2024-06-26T05:42:52.4844610Z copying torch/distributed/_composable/fsdp/fully_shard.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp 2024-06-26T05:42:52.4845550Z copying torch/distributed/_composable/fsdp/_fsdp_state.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp 2024-06-26T05:42:52.4847730Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/checkpoint 2024-06-26T05:42:52.4848170Z copying torch/distributed/_shard/checkpoint/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/checkpoint 2024-06-26T05:42:52.4850720Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:52.4851310Z copying torch/distributed/_shard/sharded_tensor/logging_handlers.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:52.4852180Z copying torch/distributed/_shard/sharded_tensor/metadata.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:52.4853470Z copying torch/distributed/_shard/sharded_tensor/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:52.4854970Z copying torch/distributed/_shard/sharded_tensor/logger.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:52.4855760Z copying torch/distributed/_shard/sharded_tensor/reshard.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:52.4857360Z copying torch/distributed/_shard/sharded_tensor/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:52.4858650Z copying torch/distributed/_shard/sharded_tensor/shard.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:52.4859530Z copying torch/distributed/_shard/sharded_tensor/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:52.4861560Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_plan 2024-06-26T05:42:52.4862030Z copying torch/distributed/_shard/sharding_plan/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_plan 2024-06-26T05:42:52.4863110Z copying torch/distributed/_shard/sharding_plan/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_plan 2024-06-26T05:42:52.4865330Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_spec 2024-06-26T05:42:52.4865780Z copying torch/distributed/_shard/sharding_spec/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_spec 2024-06-26T05:42:52.4866980Z copying torch/distributed/_shard/sharding_spec/_internals.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_spec 2024-06-26T05:42:52.4868360Z copying torch/distributed/_shard/sharding_spec/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_spec 2024-06-26T05:42:52.4869220Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_spec 2024-06-26T05:42:52.4870980Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_optim 2024-06-26T05:42:52.4871500Z copying torch/distributed/_shard/sharded_optim/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_optim 2024-06-26T05:42:52.4872620Z copying torch/distributed/_shard/sharded_optim/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_optim 2024-06-26T05:42:52.4875120Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/_ops 2024-06-26T05:42:52.4875630Z copying torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/_ops 2024-06-26T05:42:52.4877050Z copying torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/_ops 2024-06-26T05:42:52.4877740Z copying torch/distributed/_shard/sharded_tensor/_ops/_common.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/_ops 2024-06-26T05:42:52.4879170Z copying torch/distributed/_shard/sharded_tensor/_ops/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/_ops 2024-06-26T05:42:52.4879860Z copying torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/_ops 2024-06-26T05:42:52.4881290Z copying torch/distributed/_shard/sharded_tensor/_ops/init.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/_ops 2024-06-26T05:42:52.4883290Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2024-06-26T05:42:52.4883940Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2024-06-26T05:42:52.4885550Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2024-06-26T05:42:52.4886530Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2024-06-26T05:42:52.4887350Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2024-06-26T05:42:52.4890320Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel 2024-06-26T05:42:52.4890750Z copying torch/distributed/tensor/parallel/ddp.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel 2024-06-26T05:42:52.4892010Z copying torch/distributed/tensor/parallel/fsdp.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel 2024-06-26T05:42:52.4893600Z copying torch/distributed/tensor/parallel/style.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel 2024-06-26T05:42:52.4894610Z copying torch/distributed/tensor/parallel/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel 2024-06-26T05:42:52.4895860Z copying torch/distributed/tensor/parallel/api.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel 2024-06-26T05:42:52.4896660Z copying torch/distributed/tensor/parallel/loss.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel 2024-06-26T05:42:52.4898210Z copying torch/distributed/tensor/parallel/input_reshard.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel 2024-06-26T05:42:52.4898970Z copying torch/distributed/tensor/parallel/_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel 2024-06-26T05:42:52.4900430Z copying torch/distributed/tensor/parallel/_data_parallel_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel 2024-06-26T05:42:52.4901950Z creating build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc/_testing 2024-06-26T05:42:52.4902350Z copying torch/distributed/rpc/_testing/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc/_testing 2024-06-26T05:42:52.4903710Z copying torch/distributed/rpc/_testing/faulty_agent_backend_registry.py -> build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc/_testing 2024-06-26T05:42:52.4905850Z creating build/lib.macosx-11.1-arm64-3.9/torch/autograd/_functions 2024-06-26T05:42:52.4906200Z copying torch/autograd/_functions/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/autograd/_functions 2024-06-26T05:42:52.4907420Z copying torch/autograd/_functions/tensor.py -> build/lib.macosx-11.1-arm64-3.9/torch/autograd/_functions 2024-06-26T05:42:52.4908610Z copying torch/autograd/_functions/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/autograd/_functions 2024-06-26T05:42:52.4912570Z creating build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4913030Z copying torch/fx/experimental/validator.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4914540Z copying torch/fx/experimental/meta_tracer.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4915870Z copying torch/fx/experimental/partitioner_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4917370Z copying torch/fx/experimental/recording.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4918620Z copying torch/fx/experimental/rewriter.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4919310Z copying torch/fx/experimental/const_fold.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4920810Z copying torch/fx/experimental/accelerator_partitioner.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4922290Z copying torch/fx/experimental/normalize.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4923040Z copying torch/fx/experimental/optimization.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4924640Z copying torch/fx/experimental/refinement_types.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4925400Z copying torch/fx/experimental/graph_gradual_typechecker.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4926770Z copying torch/fx/experimental/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4927490Z copying torch/fx/experimental/sym_node.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4929030Z copying torch/fx/experimental/unify_refinements.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4929850Z copying torch/fx/experimental/merge_matmul.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4931230Z copying torch/fx/experimental/debug.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4931950Z copying torch/fx/experimental/schema_type_annotation.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4933190Z copying torch/fx/experimental/symbolic_shapes.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4935630Z copying torch/fx/experimental/_sym_dispatch_mode.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4936390Z copying torch/fx/experimental/_config.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4937720Z copying torch/fx/experimental/_backward_state.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4938610Z copying torch/fx/experimental/proxy_tensor.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental 2024-06-26T05:42:52.4942670Z creating build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4943040Z copying torch/fx/passes/net_min_base.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4944610Z copying torch/fx/passes/param_fetch.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4945420Z copying torch/fx/passes/tools_common.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4946810Z copying torch/fx/passes/split_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4948040Z copying torch/fx/passes/shape_prop.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4949200Z copying torch/fx/passes/split_module.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4950370Z copying torch/fx/passes/runtime_assert.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4951530Z copying torch/fx/passes/reinplace.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4952980Z copying torch/fx/passes/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4954540Z copying torch/fx/passes/pass_manager.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4955700Z copying torch/fx/passes/fake_tensor_prop.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4956880Z copying torch/fx/passes/operator_support.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4958060Z copying torch/fx/passes/annotate_getitem_nodes.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4958810Z copying torch/fx/passes/graph_manipulation.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4960200Z copying torch/fx/passes/graph_drawer.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4961440Z copying torch/fx/passes/splitter_base.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4962860Z copying torch/fx/passes/graph_transform_observer.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes 2024-06-26T05:42:52.4965560Z creating build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification 2024-06-26T05:42:52.4966160Z copying torch/fx/experimental/unification/dispatch.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification 2024-06-26T05:42:52.4967010Z copying torch/fx/experimental/unification/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification 2024-06-26T05:42:52.4968450Z copying torch/fx/experimental/unification/core.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification 2024-06-26T05:42:52.4969140Z copying torch/fx/experimental/unification/unification_tools.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification 2024-06-26T05:42:52.4970550Z copying torch/fx/experimental/unification/variable.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification 2024-06-26T05:42:52.4971480Z copying torch/fx/experimental/unification/more.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification 2024-06-26T05:42:52.4973070Z copying torch/fx/experimental/unification/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification 2024-06-26T05:42:52.4973880Z copying torch/fx/experimental/unification/match.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification 2024-06-26T05:42:52.4976680Z creating build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:52.4977210Z copying torch/fx/experimental/migrate_gradual_types/constraint.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:52.4978810Z copying torch/fx/experimental/migrate_gradual_types/constraint_transformation.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:52.4980180Z copying torch/fx/experimental/migrate_gradual_types/util.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:52.4980870Z copying torch/fx/experimental/migrate_gradual_types/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:52.4981720Z copying torch/fx/experimental/migrate_gradual_types/operation.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:52.4983090Z copying torch/fx/experimental/migrate_gradual_types/transform_to_z3.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:52.4984630Z copying torch/fx/experimental/migrate_gradual_types/z3_types.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:52.4985520Z copying torch/fx/experimental/migrate_gradual_types/constraint_generator.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:52.4988450Z creating build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/multipledispatch 2024-06-26T05:42:52.4989070Z copying torch/fx/experimental/unification/multipledispatch/dispatcher.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/multipledispatch 2024-06-26T05:42:52.4990790Z copying torch/fx/experimental/unification/multipledispatch/variadic.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/multipledispatch 2024-06-26T05:42:52.4991590Z copying torch/fx/experimental/unification/multipledispatch/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/multipledispatch 2024-06-26T05:42:52.4993000Z copying torch/fx/experimental/unification/multipledispatch/core.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/multipledispatch 2024-06-26T05:42:52.4993840Z copying torch/fx/experimental/unification/multipledispatch/conflict.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/multipledispatch 2024-06-26T05:42:52.4995290Z copying torch/fx/experimental/unification/multipledispatch/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/multipledispatch 2024-06-26T05:42:52.4997020Z creating build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/infra 2024-06-26T05:42:52.4997420Z copying torch/fx/passes/infra/partitioner.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/infra 2024-06-26T05:42:52.4999310Z copying torch/fx/passes/infra/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/infra 2024-06-26T05:42:52.5000050Z copying torch/fx/passes/infra/pass_base.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/infra 2024-06-26T05:42:52.5001520Z copying torch/fx/passes/infra/pass_manager.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/infra 2024-06-26T05:42:52.5003560Z creating build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/backends 2024-06-26T05:42:52.5003920Z copying torch/fx/passes/backends/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/backends 2024-06-26T05:42:52.5005180Z copying torch/fx/passes/backends/cudagraphs.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/backends 2024-06-26T05:42:52.5006920Z creating build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/tests 2024-06-26T05:42:52.5007260Z copying torch/fx/passes/tests/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/tests 2024-06-26T05:42:52.5008220Z copying torch/fx/passes/tests/test_pass_manager.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/tests 2024-06-26T05:42:52.5010380Z creating build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/utils 2024-06-26T05:42:52.5010850Z copying torch/fx/passes/utils/source_matcher_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/utils 2024-06-26T05:42:52.5012330Z copying torch/fx/passes/utils/matcher_with_name_node_map_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/utils 2024-06-26T05:42:52.5013520Z copying torch/fx/passes/utils/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/utils 2024-06-26T05:42:52.5014190Z copying torch/fx/passes/utils/common.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/utils 2024-06-26T05:42:52.5015560Z copying torch/fx/passes/utils/matcher_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/utils 2024-06-26T05:42:52.5016810Z copying torch/fx/passes/utils/fuser_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/utils 2024-06-26T05:42:52.5018740Z creating build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/dialect 2024-06-26T05:42:52.5019100Z copying torch/fx/passes/dialect/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/dialect 2024-06-26T05:42:52.5020810Z creating build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/dialect/common 2024-06-26T05:42:52.5021310Z copying torch/fx/passes/dialect/common/cse_pass.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/dialect/common 2024-06-26T05:42:52.5022470Z copying torch/fx/passes/dialect/common/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/dialect/common 2024-06-26T05:42:52.5023950Z creating build/lib.macosx-11.1-arm64-3.9/torch/cuda/amp 2024-06-26T05:42:52.5024350Z copying torch/cuda/amp/autocast_mode.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda/amp 2024-06-26T05:42:52.5025710Z copying torch/cuda/amp/grad_scaler.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda/amp 2024-06-26T05:42:52.5026870Z copying torch/cuda/amp/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda/amp 2024-06-26T05:42:52.5027850Z copying torch/cuda/amp/common.py -> build/lib.macosx-11.1-arm64-3.9/torch/cuda/amp 2024-06-26T05:42:52.5029510Z creating build/lib.macosx-11.1-arm64-3.9/torch/backends/opt_einsum 2024-06-26T05:42:52.5029870Z copying torch/backends/opt_einsum/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/opt_einsum 2024-06-26T05:42:52.5031680Z creating build/lib.macosx-11.1-arm64-3.9/torch/backends/mha 2024-06-26T05:42:52.5032000Z copying torch/backends/mha/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/mha 2024-06-26T05:42:52.5033830Z creating build/lib.macosx-11.1-arm64-3.9/torch/backends/nnpack 2024-06-26T05:42:52.5034220Z copying torch/backends/nnpack/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/nnpack 2024-06-26T05:42:52.5035860Z creating build/lib.macosx-11.1-arm64-3.9/torch/backends/mps 2024-06-26T05:42:52.5036240Z copying torch/backends/mps/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/mps 2024-06-26T05:42:52.5041420Z creating build/lib.macosx-11.1-arm64-3.9/torch/backends/cpu 2024-06-26T05:42:52.5041860Z copying torch/backends/cpu/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/cpu 2024-06-26T05:42:52.5042080Z creating build/lib.macosx-11.1-arm64-3.9/torch/backends/_coreml 2024-06-26T05:42:52.5042430Z copying torch/backends/_coreml/preprocess.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/_coreml 2024-06-26T05:42:52.5042760Z copying torch/backends/_coreml/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/_coreml 2024-06-26T05:42:52.5042950Z creating build/lib.macosx-11.1-arm64-3.9/torch/backends/cuda 2024-06-26T05:42:52.5043580Z copying torch/backends/cuda/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/cuda 2024-06-26T05:42:52.5045800Z creating build/lib.macosx-11.1-arm64-3.9/torch/backends/quantized 2024-06-26T05:42:52.5046160Z copying torch/backends/quantized/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/quantized 2024-06-26T05:42:52.5047890Z creating build/lib.macosx-11.1-arm64-3.9/torch/backends/mkl 2024-06-26T05:42:52.5048260Z copying torch/backends/mkl/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/mkl 2024-06-26T05:42:52.5050010Z creating build/lib.macosx-11.1-arm64-3.9/torch/backends/xnnpack 2024-06-26T05:42:52.5050410Z copying torch/backends/xnnpack/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/xnnpack 2024-06-26T05:42:52.5052150Z creating build/lib.macosx-11.1-arm64-3.9/torch/backends/mkldnn 2024-06-26T05:42:52.5052540Z copying torch/backends/mkldnn/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/mkldnn 2024-06-26T05:42:52.5054330Z creating build/lib.macosx-11.1-arm64-3.9/torch/backends/xeon 2024-06-26T05:42:52.5054760Z copying torch/backends/xeon/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/xeon 2024-06-26T05:42:52.5056020Z copying torch/backends/xeon/run_cpu.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/xeon 2024-06-26T05:42:52.5058080Z creating build/lib.macosx-11.1-arm64-3.9/torch/backends/_nnapi 2024-06-26T05:42:52.5058410Z copying torch/backends/_nnapi/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/_nnapi 2024-06-26T05:42:52.5059120Z copying torch/backends/_nnapi/serializer.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/_nnapi 2024-06-26T05:42:52.5060920Z copying torch/backends/_nnapi/prepare.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/_nnapi 2024-06-26T05:42:52.5062470Z creating build/lib.macosx-11.1-arm64-3.9/torch/backends/openmp 2024-06-26T05:42:52.5062860Z copying torch/backends/openmp/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/openmp 2024-06-26T05:42:52.5064710Z creating build/lib.macosx-11.1-arm64-3.9/torch/backends/cudnn 2024-06-26T05:42:52.5065090Z copying torch/backends/cudnn/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/cudnn 2024-06-26T05:42:52.5066520Z copying torch/backends/cudnn/rnn.py -> build/lib.macosx-11.1-arm64-3.9/torch/backends/cudnn 2024-06-26T05:42:52.5068830Z creating build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor 2024-06-26T05:42:52.5069200Z copying torch/masked/maskedtensor/binary.py -> build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor 2024-06-26T05:42:52.5070520Z copying torch/masked/maskedtensor/creation.py -> build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor 2024-06-26T05:42:52.5072200Z copying torch/masked/maskedtensor/_ops_refs.py -> build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor 2024-06-26T05:42:52.5072720Z copying torch/masked/maskedtensor/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor 2024-06-26T05:42:52.5074080Z copying torch/masked/maskedtensor/core.py -> build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor 2024-06-26T05:42:52.5075570Z copying torch/masked/maskedtensor/unary.py -> build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor 2024-06-26T05:42:52.5076370Z copying torch/masked/maskedtensor/reductions.py -> build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor 2024-06-26T05:42:52.5077720Z copying torch/masked/maskedtensor/passthrough.py -> build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor 2024-06-26T05:42:52.5079250Z creating build/lib.macosx-11.1-arm64-3.9/torch/optim/_multi_tensor 2024-06-26T05:42:52.5079600Z copying torch/optim/_multi_tensor/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/optim/_multi_tensor 2024-06-26T05:42:52.5082150Z creating build/lib.macosx-11.1-arm64-3.9/torch/_inductor/runtime 2024-06-26T05:42:52.5082580Z copying torch/_inductor/runtime/triton_heuristics.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/runtime 2024-06-26T05:42:52.5084150Z copying torch/_inductor/runtime/runtime_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/runtime 2024-06-26T05:42:52.5085460Z copying torch/_inductor/runtime/coordinate_descent_tuner.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/runtime 2024-06-26T05:42:52.5086230Z copying torch/_inductor/runtime/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/runtime 2024-06-26T05:42:52.5087410Z copying torch/_inductor/runtime/compile_tasks.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/runtime 2024-06-26T05:42:52.5088330Z copying torch/_inductor/runtime/triton_helpers.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/runtime 2024-06-26T05:42:52.5089580Z copying torch/_inductor/runtime/hints.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/runtime 2024-06-26T05:42:52.5093560Z creating build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5093900Z copying torch/_inductor/codegen/wrapper.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5095650Z copying torch/_inductor/codegen/triton_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5096900Z copying torch/_inductor/codegen/triton.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5098330Z copying torch/_inductor/codegen/aoti_hipify_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5099050Z copying torch/_inductor/codegen/simd.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5100910Z copying torch/_inductor/codegen/memory_planning.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5102080Z copying torch/_inductor/codegen/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5102590Z copying torch/_inductor/codegen/cpp_micro_gemm.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5104000Z copying torch/_inductor/codegen/cpp.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5105960Z copying torch/_inductor/codegen/cpp_wrapper_cpu.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5107800Z copying torch/_inductor/codegen/common.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5109480Z copying torch/_inductor/codegen/cpp_template_kernel.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5110880Z copying torch/_inductor/codegen/cpp_gemm_template.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5112100Z copying torch/_inductor/codegen/triton_split_scan.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5112910Z copying torch/_inductor/codegen/cpp_template.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5114340Z copying torch/_inductor/codegen/codegen_device_driver.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5115210Z copying torch/_inductor/codegen/cuda_combined_scheduling.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5116440Z copying torch/_inductor/codegen/multi_kernel.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5117890Z copying torch/_inductor/codegen/triton_foreach.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5119170Z copying torch/_inductor/codegen/cpp_wrapper_cuda.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5120370Z copying torch/_inductor/codegen/cpp_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:52.5122570Z creating build/lib.macosx-11.1-arm64-3.9/torch/_inductor/compile_worker 2024-06-26T05:42:52.5123080Z copying torch/_inductor/compile_worker/watchdog.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/compile_worker 2024-06-26T05:42:52.5124540Z copying torch/_inductor/compile_worker/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/compile_worker 2024-06-26T05:42:52.5125060Z copying torch/_inductor/compile_worker/subproc_pool.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/compile_worker 2024-06-26T05:42:52.5126530Z copying torch/_inductor/compile_worker/__main__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/compile_worker 2024-06-26T05:42:52.5130550Z creating build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5131090Z copying torch/_inductor/fx_passes/post_grad.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5132400Z copying torch/_inductor/fx_passes/replace_random.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5133120Z copying torch/_inductor/fx_passes/ddp_fusion.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5134420Z copying torch/_inductor/fx_passes/numeric_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5135700Z copying torch/_inductor/fx_passes/decompose_mem_bound_mm.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5136440Z copying torch/_inductor/fx_passes/reinplace.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5137940Z copying torch/_inductor/fx_passes/quantization.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5139470Z copying torch/_inductor/fx_passes/split_cat.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5140870Z copying torch/_inductor/fx_passes/dedupe_symint_uses.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5142260Z copying torch/_inductor/fx_passes/efficient_conv_bn_eval.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5143530Z copying torch/_inductor/fx_passes/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5144060Z copying torch/_inductor/fx_passes/group_batch_fusion.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5146080Z copying torch/_inductor/fx_passes/pre_grad.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5147460Z copying torch/_inductor/fx_passes/binary_folding.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5148670Z copying torch/_inductor/fx_passes/fuse_attention.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5149960Z copying torch/_inductor/fx_passes/micro_pipeline_tp.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5151520Z copying torch/_inductor/fx_passes/joint_graph.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5152730Z copying torch/_inductor/fx_passes/mkldnn_fusion.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5154030Z copying torch/_inductor/fx_passes/pad_mm.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5155370Z copying torch/_inductor/fx_passes/freezing_patterns.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5156470Z copying torch/_inductor/fx_passes/misc_patterns.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes 2024-06-26T05:42:52.5159090Z creating build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel 2024-06-26T05:42:52.5159720Z copying torch/_inductor/kernel/unpack_mixed_mm.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel 2024-06-26T05:42:52.5161020Z copying torch/_inductor/kernel/mm_common.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel 2024-06-26T05:42:52.5162410Z copying torch/_inductor/kernel/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel 2024-06-26T05:42:52.5163330Z copying torch/_inductor/kernel/mm.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel 2024-06-26T05:42:52.5164780Z copying torch/_inductor/kernel/bmm.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel 2024-06-26T05:42:52.5165930Z copying torch/_inductor/kernel/conv.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel 2024-06-26T05:42:52.5167430Z copying torch/_inductor/kernel/mm_plus_mm.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel 2024-06-26T05:42:52.5168650Z copying torch/_inductor/kernel/flex_attention.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel 2024-06-26T05:42:52.5171570Z creating build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda 2024-06-26T05:42:52.5171980Z copying torch/_inductor/codegen/cuda/cutlass_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda 2024-06-26T05:42:52.5173450Z copying torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda 2024-06-26T05:42:52.5174210Z copying torch/_inductor/codegen/cuda/cuda_template.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda 2024-06-26T05:42:52.5175880Z copying torch/_inductor/codegen/cuda/gemm_template.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda 2024-06-26T05:42:52.5176740Z copying torch/_inductor/codegen/cuda/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda 2024-06-26T05:42:52.5177540Z copying torch/_inductor/codegen/cuda/cutlass_epilogue_gen.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda 2024-06-26T05:42:52.5179360Z copying torch/_inductor/codegen/cuda/device_op_overrides.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda 2024-06-26T05:42:52.5179990Z copying torch/_inductor/codegen/cuda/cuda_env.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda 2024-06-26T05:42:52.5181300Z copying torch/_inductor/codegen/cuda/cuda_kernel.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda 2024-06-26T05:42:52.5183410Z creating build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/xpu 2024-06-26T05:42:52.5183790Z copying torch/_inductor/codegen/xpu/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/xpu 2024-06-26T05:42:52.5184620Z copying torch/_inductor/codegen/xpu/device_op_overrides.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/xpu 2024-06-26T05:42:52.5186850Z creating build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2024-06-26T05:42:52.5187470Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2024-06-26T05:42:52.5188930Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2024-06-26T05:42:52.5192440Z creating build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5193040Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5194920Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5195710Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5197360Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5198320Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5199790Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5200570Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5202270Z copying torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5203220Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5205070Z copying torch/_inductor/fx_passes/serialized_patterns/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5205720Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5207750Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5209270Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5210980Z copying torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5211930Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5213770Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5215400Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5216830Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5218590Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5220210Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5221900Z copying torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5222750Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5224440Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:42:52.5226120Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark 2024-06-26T05:42:52.5226520Z copying torch/utils/benchmark/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark 2024-06-26T05:42:52.5229460Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy 2024-06-26T05:42:52.5229840Z copying torch/utils/_sympy/functions.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy 2024-06-26T05:42:52.5231200Z copying torch/utils/_sympy/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy 2024-06-26T05:42:52.5231750Z copying torch/utils/_sympy/symbol.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy 2024-06-26T05:42:52.5232990Z copying torch/utils/_sympy/numbers.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy 2024-06-26T05:42:52.5234230Z copying torch/utils/_sympy/reference.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy 2024-06-26T05:42:52.5235110Z copying torch/utils/_sympy/singleton_int.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy 2024-06-26T05:42:52.5236390Z copying torch/utils/_sympy/value_ranges.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy 2024-06-26T05:42:52.5237650Z copying torch/utils/_sympy/solve.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy 2024-06-26T05:42:52.5238890Z copying torch/utils/_sympy/interp.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy 2024-06-26T05:42:52.5240330Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/backcompat 2024-06-26T05:42:52.5240740Z copying torch/utils/backcompat/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/backcompat 2024-06-26T05:42:52.5242920Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/hipify 2024-06-26T05:42:52.5243270Z copying torch/utils/hipify/version.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/hipify 2024-06-26T05:42:52.5244630Z copying torch/utils/hipify/cuda_to_hip_mappings.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/hipify 2024-06-26T05:42:52.5250860Z copying torch/utils/hipify/constants.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/hipify 2024-06-26T05:42:52.5251310Z copying torch/utils/hipify/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/hipify 2024-06-26T05:42:52.5251650Z copying torch/utils/hipify/hipify_python.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/hipify 2024-06-26T05:42:52.5251860Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/bottleneck 2024-06-26T05:42:52.5252200Z copying torch/utils/bottleneck/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/bottleneck 2024-06-26T05:42:52.5252880Z copying torch/utils/bottleneck/__main__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/bottleneck 2024-06-26T05:42:52.5254530Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/viz 2024-06-26T05:42:52.5254830Z copying torch/utils/viz/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/viz 2024-06-26T05:42:52.5255940Z copying torch/utils/viz/_cycles.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/viz 2024-06-26T05:42:52.5258010Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/jit 2024-06-26T05:42:52.5258360Z copying torch/utils/jit/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/jit 2024-06-26T05:42:52.5259500Z copying torch/utils/jit/log_extract.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/jit 2024-06-26T05:42:52.5261880Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard 2024-06-26T05:42:52.5262310Z copying torch/utils/tensorboard/_pytorch_graph.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard 2024-06-26T05:42:52.5263970Z copying torch/utils/tensorboard/_proto_graph.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard 2024-06-26T05:42:52.5265150Z copying torch/utils/tensorboard/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard 2024-06-26T05:42:52.5265830Z copying torch/utils/tensorboard/_embedding.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard 2024-06-26T05:42:52.5267160Z copying torch/utils/tensorboard/_onnx_graph.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard 2024-06-26T05:42:52.5267960Z copying torch/utils/tensorboard/summary.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard 2024-06-26T05:42:52.5269400Z copying torch/utils/tensorboard/_convert_np.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard 2024-06-26T05:42:52.5270170Z copying torch/utils/tensorboard/writer.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard 2024-06-26T05:42:52.5271940Z copying torch/utils/tensorboard/_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard 2024-06-26T05:42:52.5273720Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/model_dump 2024-06-26T05:42:52.5274110Z copying torch/utils/model_dump/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/model_dump 2024-06-26T05:42:52.5275400Z copying torch/utils/model_dump/__main__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/model_dump 2024-06-26T05:42:52.5277850Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/data 2024-06-26T05:42:52.5278190Z copying torch/utils/data/graph_settings.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data 2024-06-26T05:42:52.5279470Z copying torch/utils/data/graph.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data 2024-06-26T05:42:52.5280290Z copying torch/utils/data/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data 2024-06-26T05:42:52.5281590Z copying torch/utils/data/dataset.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data 2024-06-26T05:42:52.5282880Z copying torch/utils/data/distributed.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data 2024-06-26T05:42:52.5283740Z copying torch/utils/data/backward_compatibility.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data 2024-06-26T05:42:52.5285030Z copying torch/utils/data/dataloader.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data 2024-06-26T05:42:52.5286470Z copying torch/utils/data/sampler.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data 2024-06-26T05:42:52.5289050Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/_strobelight 2024-06-26T05:42:52.5289450Z copying torch/utils/_strobelight/cli_function_profiler.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/_strobelight 2024-06-26T05:42:52.5290950Z copying torch/utils/_strobelight/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/_strobelight 2024-06-26T05:42:52.5293060Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/op_fuzzers 2024-06-26T05:42:52.5293480Z copying torch/utils/benchmark/op_fuzzers/binary.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/op_fuzzers 2024-06-26T05:42:52.5294760Z copying torch/utils/benchmark/op_fuzzers/sparse_binary.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/op_fuzzers 2024-06-26T05:42:52.5295590Z copying torch/utils/benchmark/op_fuzzers/sparse_unary.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/op_fuzzers 2024-06-26T05:42:52.5296830Z copying torch/utils/benchmark/op_fuzzers/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/op_fuzzers 2024-06-26T05:42:52.5297310Z copying torch/utils/benchmark/op_fuzzers/spectral.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/op_fuzzers 2024-06-26T05:42:52.5298680Z copying torch/utils/benchmark/op_fuzzers/unary.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/op_fuzzers 2024-06-26T05:42:52.5301720Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils 2024-06-26T05:42:52.5302230Z copying torch/utils/benchmark/utils/timer.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils 2024-06-26T05:42:52.5303890Z copying torch/utils/benchmark/utils/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils 2024-06-26T05:42:52.5304420Z copying torch/utils/benchmark/utils/sparse_fuzzer.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils 2024-06-26T05:42:52.5305840Z copying torch/utils/benchmark/utils/common.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils 2024-06-26T05:42:52.5307460Z copying torch/utils/benchmark/utils/compile.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils 2024-06-26T05:42:52.5308110Z copying torch/utils/benchmark/utils/fuzzer.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils 2024-06-26T05:42:52.5309650Z copying torch/utils/benchmark/utils/cpp_jit.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils 2024-06-26T05:42:52.5310460Z copying torch/utils/benchmark/utils/compare.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils 2024-06-26T05:42:52.5312230Z copying torch/utils/benchmark/utils/_stubs.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils 2024-06-26T05:42:52.5314410Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/examples 2024-06-26T05:42:52.5314970Z copying torch/utils/benchmark/examples/op_benchmark.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/examples 2024-06-26T05:42:52.5316300Z copying torch/utils/benchmark/examples/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/examples 2024-06-26T05:42:52.5316870Z copying torch/utils/benchmark/examples/simple_timeit.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/examples 2024-06-26T05:42:52.5318220Z copying torch/utils/benchmark/examples/fuzzer.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/examples 2024-06-26T05:42:52.5319110Z copying torch/utils/benchmark/examples/blas_compare_setup.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/examples 2024-06-26T05:42:52.5320460Z copying torch/utils/benchmark/examples/spectral_ops_fuzz_test.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/examples 2024-06-26T05:42:52.5321150Z copying torch/utils/benchmark/examples/compare.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/examples 2024-06-26T05:42:52.5323240Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/valgrind_wrapper 2024-06-26T05:42:52.5323810Z copying torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/valgrind_wrapper 2024-06-26T05:42:52.5325370Z copying torch/utils/benchmark/utils/valgrind_wrapper/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/valgrind_wrapper 2024-06-26T05:42:52.5327120Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/data/_utils 2024-06-26T05:42:52.5327450Z copying torch/utils/data/_utils/fetch.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/_utils 2024-06-26T05:42:52.5328760Z copying torch/utils/data/_utils/worker.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/_utils 2024-06-26T05:42:52.5330190Z copying torch/utils/data/_utils/collate.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/_utils 2024-06-26T05:42:52.5331760Z copying torch/utils/data/_utils/pin_memory.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/_utils 2024-06-26T05:42:52.5332410Z copying torch/utils/data/_utils/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/_utils 2024-06-26T05:42:52.5333740Z copying torch/utils/data/_utils/signal_handling.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/_utils 2024-06-26T05:42:52.5336030Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes 2024-06-26T05:42:52.5336430Z copying torch/utils/data/datapipes/_decorator.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes 2024-06-26T05:42:52.5337740Z copying torch/utils/data/datapipes/_typing.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes 2024-06-26T05:42:52.5339370Z copying torch/utils/data/datapipes/_hook_iterator.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes 2024-06-26T05:42:52.5340220Z copying torch/utils/data/datapipes/datapipe.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes 2024-06-26T05:42:52.5341740Z copying torch/utils/data/datapipes/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes 2024-06-26T05:42:52.5342550Z copying torch/utils/data/datapipes/gen_pyi.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes 2024-06-26T05:42:52.5345120Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/dataframe 2024-06-26T05:42:52.5345600Z copying torch/utils/data/datapipes/dataframe/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/dataframe 2024-06-26T05:42:52.5346910Z copying torch/utils/data/datapipes/dataframe/datapipes.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/dataframe 2024-06-26T05:42:52.5347740Z copying torch/utils/data/datapipes/dataframe/dataframe_wrapper.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/dataframe 2024-06-26T05:42:52.5349240Z copying torch/utils/data/datapipes/dataframe/structures.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/dataframe 2024-06-26T05:42:52.5349850Z copying torch/utils/data/datapipes/dataframe/dataframes.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/dataframe 2024-06-26T05:42:52.5353450Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter 2024-06-26T05:42:52.5353900Z copying torch/utils/data/datapipes/iter/fileopener.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter 2024-06-26T05:42:52.5355210Z copying torch/utils/data/datapipes/iter/callable.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter 2024-06-26T05:42:52.5356600Z copying torch/utils/data/datapipes/iter/sharding.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter 2024-06-26T05:42:52.5357170Z copying torch/utils/data/datapipes/iter/grouping.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter 2024-06-26T05:42:52.5358530Z copying torch/utils/data/datapipes/iter/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter 2024-06-26T05:42:52.5359660Z copying torch/utils/data/datapipes/iter/selecting.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter 2024-06-26T05:42:52.5360420Z copying torch/utils/data/datapipes/iter/combining.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter 2024-06-26T05:42:52.5361970Z copying torch/utils/data/datapipes/iter/filelister.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter 2024-06-26T05:42:52.5362650Z copying torch/utils/data/datapipes/iter/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter 2024-06-26T05:42:52.5364150Z copying torch/utils/data/datapipes/iter/combinatorics.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter 2024-06-26T05:42:52.5364850Z copying torch/utils/data/datapipes/iter/streamreader.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter 2024-06-26T05:42:52.5366220Z copying torch/utils/data/datapipes/iter/routeddecoder.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter 2024-06-26T05:42:52.5368130Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/utils 2024-06-26T05:42:52.5368580Z copying torch/utils/data/datapipes/utils/decoder.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/utils 2024-06-26T05:42:52.5370070Z copying torch/utils/data/datapipes/utils/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/utils 2024-06-26T05:42:52.5370530Z copying torch/utils/data/datapipes/utils/common.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/utils 2024-06-26T05:42:52.5372460Z copying torch/utils/data/datapipes/utils/snapshot.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/utils 2024-06-26T05:42:52.5374430Z creating build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/map 2024-06-26T05:42:52.5374870Z copying torch/utils/data/datapipes/map/callable.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/map 2024-06-26T05:42:52.5376150Z copying torch/utils/data/datapipes/map/grouping.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/map 2024-06-26T05:42:52.5376960Z copying torch/utils/data/datapipes/map/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/map 2024-06-26T05:42:52.5378230Z copying torch/utils/data/datapipes/map/combining.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/map 2024-06-26T05:42:52.5378910Z copying torch/utils/data/datapipes/map/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/map 2024-06-26T05:42:52.5380770Z copying torch/utils/data/datapipes/map/combinatorics.py -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/map 2024-06-26T05:42:52.5383160Z creating build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx 2024-06-26T05:42:52.5383570Z copying torch/quantization/fx/graph_module.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx 2024-06-26T05:42:52.5384900Z copying torch/quantization/fx/fusion_patterns.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx 2024-06-26T05:42:52.5385610Z copying torch/quantization/fx/_equalize.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx 2024-06-26T05:42:52.5386980Z copying torch/quantization/fx/quantization_types.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx 2024-06-26T05:42:52.5387670Z copying torch/quantization/fx/convert.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx 2024-06-26T05:42:52.5389090Z copying torch/quantization/fx/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx 2024-06-26T05:42:52.5389790Z copying torch/quantization/fx/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx 2024-06-26T05:42:52.5391130Z copying torch/quantization/fx/pattern_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx 2024-06-26T05:42:52.5391850Z copying torch/quantization/fx/fuse.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx 2024-06-26T05:42:52.5393150Z copying torch/quantization/fx/match_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx 2024-06-26T05:42:52.5393850Z copying torch/quantization/fx/prepare.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx 2024-06-26T05:42:52.5395240Z copying torch/quantization/fx/quantization_patterns.py -> build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx 2024-06-26T05:42:52.5401080Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5401500Z copying torch/testing/_internal/common_dtype.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5402980Z copying torch/testing/_internal/common_pruning.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5404240Z copying torch/testing/_internal/hop_db.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5405530Z copying torch/testing/_internal/triton_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5406720Z copying torch/testing/_internal/static_module.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5407500Z copying torch/testing/_internal/common_nn.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5409770Z copying torch/testing/_internal/custom_op_db.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5410990Z copying torch/testing/_internal/autocast_test_lists.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5412340Z copying torch/testing/_internal/common_fsdp.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5413840Z copying torch/testing/_internal/two_tensor.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5414640Z copying torch/testing/_internal/torchbind_impls.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5416000Z copying torch/testing/_internal/common_optimizers.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5417420Z copying torch/testing/_internal/common_device_type.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5418870Z copying torch/testing/_internal/autograd_function_db.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5420160Z copying torch/testing/_internal/common_mkldnn.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5420860Z copying torch/testing/_internal/inductor_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5422170Z copying torch/testing/_internal/common_distributed.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5423530Z copying torch/testing/_internal/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5424300Z copying torch/testing/_internal/common_methods_invocations.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5431390Z copying torch/testing/_internal/logging_tensor.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5432090Z copying torch/testing/_internal/hypothesis_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5433720Z copying torch/testing/_internal/common_cuda.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5435050Z copying torch/testing/_internal/common_quantization.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5436550Z copying torch/testing/_internal/common_modules.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5438680Z copying torch/testing/_internal/common_jit.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5440190Z copying torch/testing/_internal/jit_metaprogramming_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5441410Z copying torch/testing/_internal/dynamo_test_failures.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5442220Z copying torch/testing/_internal/check_kernel_launches.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5443530Z copying torch/testing/_internal/common_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5508010Z copying torch/testing/_internal/quantization_torch_package_models.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5508660Z copying torch/testing/_internal/common_quantized.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5510140Z copying torch/testing/_internal/common_dist_composable.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5510940Z copying torch/testing/_internal/common_subclass.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5512270Z copying torch/testing/_internal/composite_compliance.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5513510Z copying torch/testing/_internal/logging_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5514700Z copying torch/testing/_internal/dist_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5515360Z copying torch/testing/_internal/jit_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal 2024-06-26T05:42:52.5521660Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/generated 2024-06-26T05:42:52.5522110Z copying torch/testing/_internal/generated/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/generated 2024-06-26T05:42:52.5522690Z copying torch/testing/_internal/generated/annotated_fn_args.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/generated 2024-06-26T05:42:52.5523850Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo 2024-06-26T05:42:52.5524280Z copying torch/testing/_internal/opinfo/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo 2024-06-26T05:42:52.5525680Z copying torch/testing/_internal/opinfo/core.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo 2024-06-26T05:42:52.5527310Z copying torch/testing/_internal/opinfo/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo 2024-06-26T05:42:52.5528090Z copying torch/testing/_internal/opinfo/refs.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo 2024-06-26T05:42:52.5530250Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/test_module 2024-06-26T05:42:52.5530690Z copying torch/testing/_internal/test_module/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/test_module 2024-06-26T05:42:52.5531520Z copying torch/testing/_internal/test_module/future_div.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/test_module 2024-06-26T05:42:52.5532920Z copying torch/testing/_internal/test_module/no_future_div.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/test_module 2024-06-26T05:42:52.5535380Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed 2024-06-26T05:42:52.5535940Z copying torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed 2024-06-26T05:42:52.5537300Z copying torch/testing/_internal/distributed/fake_pg.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed 2024-06-26T05:42:52.5538080Z copying torch/testing/_internal/distributed/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed 2024-06-26T05:42:52.5538970Z copying torch/testing/_internal/distributed/checkpoint_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed 2024-06-26T05:42:52.5540280Z copying torch/testing/_internal/distributed/distributed_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed 2024-06-26T05:42:52.5541080Z copying torch/testing/_internal/distributed/distributed_test.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed 2024-06-26T05:42:52.5544550Z copying torch/testing/_internal/distributed/multi_threaded_pg.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed 2024-06-26T05:42:52.5545850Z copying torch/testing/_internal/distributed/common_state_dict.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed 2024-06-26T05:42:52.5546560Z copying torch/testing/_internal/distributed/rpc_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed 2024-06-26T05:42:52.5549100Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/optests 2024-06-26T05:42:52.5549520Z copying torch/testing/_internal/optests/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/optests 2024-06-26T05:42:52.5550770Z copying torch/testing/_internal/optests/fake_tensor.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/optests 2024-06-26T05:42:52.5551490Z copying torch/testing/_internal/optests/aot_autograd.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/optests 2024-06-26T05:42:52.5552900Z copying torch/testing/_internal/optests/make_fx.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/optests 2024-06-26T05:42:52.5553590Z copying torch/testing/_internal/optests/generate_tests.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/optests 2024-06-26T05:42:52.5555200Z copying torch/testing/_internal/optests/autograd_registration.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/optests 2024-06-26T05:42:52.5556780Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/codegen 2024-06-26T05:42:52.5557280Z copying torch/testing/_internal/codegen/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/codegen 2024-06-26T05:42:52.5559370Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/data 2024-06-26T05:42:52.5559760Z copying torch/testing/_internal/data/network1.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/data 2024-06-26T05:42:52.5560990Z copying torch/testing/_internal/data/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/data 2024-06-26T05:42:52.5561740Z copying torch/testing/_internal/data/network2.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/data 2024-06-26T05:42:52.5564360Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/definitions 2024-06-26T05:42:52.5564880Z copying torch/testing/_internal/opinfo/definitions/signal.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/definitions 2024-06-26T05:42:52.5566530Z copying torch/testing/_internal/opinfo/definitions/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/definitions 2024-06-26T05:42:52.5567410Z copying torch/testing/_internal/opinfo/definitions/_masked.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/definitions 2024-06-26T05:42:52.5568980Z copying torch/testing/_internal/opinfo/definitions/linalg.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/definitions 2024-06-26T05:42:52.5570640Z copying torch/testing/_internal/opinfo/definitions/sparse.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/definitions 2024-06-26T05:42:52.5571580Z copying torch/testing/_internal/opinfo/definitions/fft.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/definitions 2024-06-26T05:42:52.5573000Z copying torch/testing/_internal/opinfo/definitions/special.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/definitions 2024-06-26T05:42:52.5575000Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/_tensor 2024-06-26T05:42:52.5575500Z copying torch/testing/_internal/distributed/_tensor/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/_tensor 2024-06-26T05:42:52.5576320Z copying torch/testing/_internal/distributed/_tensor/common_dtensor.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/_tensor 2024-06-26T05:42:52.5578350Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/nn 2024-06-26T05:42:52.5578820Z copying torch/testing/_internal/distributed/nn/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/nn 2024-06-26T05:42:52.5580350Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/_shard 2024-06-26T05:42:52.5580870Z copying torch/testing/_internal/distributed/_shard/test_common.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/_shard 2024-06-26T05:42:52.5582380Z copying torch/testing/_internal/distributed/_shard/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/_shard 2024-06-26T05:42:52.5584620Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc 2024-06-26T05:42:52.5585180Z copying torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc 2024-06-26T05:42:52.5586580Z copying torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc 2024-06-26T05:42:52.5587940Z copying torch/testing/_internal/distributed/rpc/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc 2024-06-26T05:42:52.5588480Z copying torch/testing/_internal/distributed/rpc/dist_autograd_test.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc 2024-06-26T05:42:52.5590400Z copying torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc 2024-06-26T05:42:52.5591230Z copying torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc 2024-06-26T05:42:52.5592190Z copying torch/testing/_internal/distributed/rpc/rpc_test.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc 2024-06-26T05:42:52.5594700Z copying torch/testing/_internal/distributed/rpc/dist_optimizer_test.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc 2024-06-26T05:42:52.5596550Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/nn/api 2024-06-26T05:42:52.5597050Z copying torch/testing/_internal/distributed/nn/api/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/nn/api 2024-06-26T05:42:52.5597830Z copying torch/testing/_internal/distributed/nn/api/remote_module_test.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/nn/api 2024-06-26T05:42:52.5600120Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/_shard/sharded_tensor 2024-06-26T05:42:52.5600790Z copying torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/_shard/sharded_tensor 2024-06-26T05:42:52.5601710Z copying torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/_shard/sharded_tensor 2024-06-26T05:42:52.5603300Z copying torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/_shard/sharded_tensor 2024-06-26T05:42:52.5604840Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/jit 2024-06-26T05:42:52.5605350Z copying torch/testing/_internal/distributed/rpc/jit/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/jit 2024-06-26T05:42:52.5606490Z copying torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/jit 2024-06-26T05:42:52.5607260Z copying torch/testing/_internal/distributed/rpc/jit/rpc_test.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/jit 2024-06-26T05:42:52.5608930Z copying torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/jit 2024-06-26T05:42:52.5610760Z creating build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/examples 2024-06-26T05:42:52.5611310Z copying torch/testing/_internal/distributed/rpc/examples/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/examples 2024-06-26T05:42:52.5612280Z copying torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/examples 2024-06-26T05:42:52.5613810Z copying torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py -> build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/examples 2024-06-26T05:42:52.5615380Z creating build/lib.macosx-11.1-arm64-3.9/torch/jit/_passes 2024-06-26T05:42:52.5615890Z copying torch/jit/_passes/_property_propagation.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit/_passes 2024-06-26T05:42:52.5617120Z copying torch/jit/_passes/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit/_passes 2024-06-26T05:42:52.5618530Z creating build/lib.macosx-11.1-arm64-3.9/torch/jit/mobile 2024-06-26T05:42:52.5618830Z copying torch/jit/mobile/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/jit/mobile 2024-06-26T05:42:52.5622080Z creating build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends 2024-06-26T05:42:52.5622420Z copying torch/_dynamo/backends/registry.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends 2024-06-26T05:42:52.5623690Z copying torch/_dynamo/backends/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends 2024-06-26T05:42:52.5624720Z copying torch/_dynamo/backends/debugging.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends 2024-06-26T05:42:52.5626070Z copying torch/_dynamo/backends/distributed.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends 2024-06-26T05:42:52.5627240Z copying torch/_dynamo/backends/common.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends 2024-06-26T05:42:52.5628540Z copying torch/_dynamo/backends/inductor.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends 2024-06-26T05:42:52.5629120Z copying torch/_dynamo/backends/onnxrt.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends 2024-06-26T05:42:52.5630400Z copying torch/_dynamo/backends/tvm.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends 2024-06-26T05:42:52.5631720Z copying torch/_dynamo/backends/cudagraphs.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends 2024-06-26T05:42:52.5633050Z copying torch/_dynamo/backends/tensorrt.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends 2024-06-26T05:42:52.5633780Z copying torch/_dynamo/backends/torchxla.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends 2024-06-26T05:42:52.5638250Z creating build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5638610Z copying torch/_dynamo/variables/functions.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5639960Z copying torch/_dynamo/variables/iter.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5641360Z copying torch/_dynamo/variables/misc.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5642820Z copying torch/_dynamo/variables/lists.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5644020Z copying torch/_dynamo/variables/script_object.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5644700Z copying torch/_dynamo/variables/torch_function.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5646150Z copying torch/_dynamo/variables/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5646950Z copying torch/_dynamo/variables/user_defined.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5648380Z copying torch/_dynamo/variables/nn_module.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5649770Z copying torch/_dynamo/variables/builder.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5651390Z copying torch/_dynamo/variables/tensor.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5652810Z copying torch/_dynamo/variables/higher_order_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5654220Z copying torch/_dynamo/variables/sdpa.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5655420Z copying torch/_dynamo/variables/distributed.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5656740Z copying torch/_dynamo/variables/optimizer.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5658490Z copying torch/_dynamo/variables/builtin.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5660010Z copying torch/_dynamo/variables/constant.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5660880Z copying torch/_dynamo/variables/lazy.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5661950Z copying torch/_dynamo/variables/torch.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5663510Z copying torch/_dynamo/variables/ctx_manager.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5664730Z copying torch/_dynamo/variables/dicts.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5665990Z copying torch/_dynamo/variables/base.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables 2024-06-26T05:42:52.5668240Z creating build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/repro 2024-06-26T05:42:52.5668580Z copying torch/_dynamo/repro/after_dynamo.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/repro 2024-06-26T05:42:52.5669950Z copying torch/_dynamo/repro/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/repro 2024-06-26T05:42:52.5670550Z copying torch/_dynamo/repro/after_aot.py -> build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/repro 2024-06-26T05:42:52.5672810Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn 2024-06-26T05:42:52.5673200Z copying torch/ao/nn/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn 2024-06-26T05:42:52.5675650Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/ns 2024-06-26T05:42:52.5675990Z copying torch/ao/ns/_numeric_suite.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/ns 2024-06-26T05:42:52.5677610Z copying torch/ao/ns/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/ns 2024-06-26T05:42:52.5678200Z copying torch/ao/ns/_numeric_suite_fx.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/ns 2024-06-26T05:42:52.5683170Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5683620Z copying torch/ao/quantization/observer.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5684940Z copying torch/ao/quantization/fuse_modules.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5686170Z copying torch/ao/quantization/_learnable_fake_quantize.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5686870Z copying torch/ao/quantization/quantization_mappings.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5688570Z copying torch/ao/quantization/_correct_bias.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5689790Z copying torch/ao/quantization/quantize.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5690970Z copying torch/ao/quantization/_equalize.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5692180Z copying torch/ao/quantization/fake_quantize.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5693350Z copying torch/ao/quantization/qconfig.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5694420Z copying torch/ao/quantization/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5695860Z copying torch/ao/quantization/qconfig_mapping.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5697030Z copying torch/ao/quantization/stubs.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5698000Z copying torch/ao/quantization/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5699430Z copying torch/ao/quantization/fuser_method_mappings.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5700690Z copying torch/ao/quantization/quantize_jit.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5701960Z copying torch/ao/quantization/quantize_pt2e.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5703370Z copying torch/ao/quantization/quant_type.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5703990Z copying torch/ao/quantization/quantize_fx.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization 2024-06-26T05:42:52.5706260Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning 2024-06-26T05:42:52.5706570Z copying torch/ao/pruning/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning 2024-06-26T05:42:52.5707860Z copying torch/ao/pruning/_mappings.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning 2024-06-26T05:42:52.5709370Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat 2024-06-26T05:42:52.5709860Z copying torch/ao/nn/qat/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat 2024-06-26T05:42:52.5711930Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized 2024-06-26T05:42:52.5712330Z copying torch/ao/nn/quantized/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized 2024-06-26T05:42:52.5713710Z copying torch/ao/nn/quantized/functional.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized 2024-06-26T05:42:52.5715480Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantizable 2024-06-26T05:42:52.5715880Z copying torch/ao/nn/quantizable/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantizable 2024-06-26T05:42:52.5717630Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic 2024-06-26T05:42:52.5718020Z copying torch/ao/nn/intrinsic/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic 2024-06-26T05:42:52.5719930Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/sparse 2024-06-26T05:42:52.5720310Z copying torch/ao/nn/sparse/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/sparse 2024-06-26T05:42:52.5722190Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/dynamic 2024-06-26T05:42:52.5722670Z copying torch/ao/nn/qat/dynamic/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/dynamic 2024-06-26T05:42:52.5728170Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/modules 2024-06-26T05:42:52.5728730Z copying torch/ao/nn/qat/modules/linear.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/modules 2024-06-26T05:42:52.5729080Z copying torch/ao/nn/qat/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/modules 2024-06-26T05:42:52.5729430Z copying torch/ao/nn/qat/modules/conv.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/modules 2024-06-26T05:42:52.5729820Z copying torch/ao/nn/qat/modules/embedding_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/modules 2024-06-26T05:42:52.5730350Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/dynamic/modules 2024-06-26T05:42:52.5730820Z copying torch/ao/nn/qat/dynamic/modules/linear.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/dynamic/modules 2024-06-26T05:42:52.5732230Z copying torch/ao/nn/qat/dynamic/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/dynamic/modules 2024-06-26T05:42:52.5733920Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/dynamic 2024-06-26T05:42:52.5734380Z copying torch/ao/nn/quantized/dynamic/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/dynamic 2024-06-26T05:42:52.5737260Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules 2024-06-26T05:42:52.5737690Z copying torch/ao/nn/quantized/modules/batchnorm.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules 2024-06-26T05:42:52.5739060Z copying torch/ao/nn/quantized/modules/functional_modules.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules 2024-06-26T05:42:52.5739920Z copying torch/ao/nn/quantized/modules/linear.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules 2024-06-26T05:42:52.5741670Z copying torch/ao/nn/quantized/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules 2024-06-26T05:42:52.5742430Z copying torch/ao/nn/quantized/modules/activation.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules 2024-06-26T05:42:52.5743850Z copying torch/ao/nn/quantized/modules/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules 2024-06-26T05:42:52.5744670Z copying torch/ao/nn/quantized/modules/dropout.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules 2024-06-26T05:42:52.5745960Z copying torch/ao/nn/quantized/modules/conv.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules 2024-06-26T05:42:52.5747410Z copying torch/ao/nn/quantized/modules/normalization.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules 2024-06-26T05:42:52.5748260Z copying torch/ao/nn/quantized/modules/rnn.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules 2024-06-26T05:42:52.5749710Z copying torch/ao/nn/quantized/modules/embedding_ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules 2024-06-26T05:42:52.5751690Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/reference 2024-06-26T05:42:52.5752130Z copying torch/ao/nn/quantized/reference/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/reference 2024-06-26T05:42:52.5754240Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/dynamic/modules 2024-06-26T05:42:52.5754740Z copying torch/ao/nn/quantized/dynamic/modules/linear.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/dynamic/modules 2024-06-26T05:42:52.5755760Z copying torch/ao/nn/quantized/dynamic/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/dynamic/modules 2024-06-26T05:42:52.5756810Z copying torch/ao/nn/quantized/dynamic/modules/conv.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/dynamic/modules 2024-06-26T05:42:52.5758180Z copying torch/ao/nn/quantized/dynamic/modules/rnn.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/dynamic/modules 2024-06-26T05:42:52.5760830Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/reference/modules 2024-06-26T05:42:52.5761340Z copying torch/ao/nn/quantized/reference/modules/linear.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/reference/modules 2024-06-26T05:42:52.5762330Z copying torch/ao/nn/quantized/reference/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/reference/modules 2024-06-26T05:42:52.5763680Z copying torch/ao/nn/quantized/reference/modules/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/reference/modules 2024-06-26T05:42:52.5765300Z copying torch/ao/nn/quantized/reference/modules/sparse.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/reference/modules 2024-06-26T05:42:52.5766070Z copying torch/ao/nn/quantized/reference/modules/conv.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/reference/modules 2024-06-26T05:42:52.5767870Z copying torch/ao/nn/quantized/reference/modules/rnn.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/reference/modules 2024-06-26T05:42:52.5769710Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantizable/modules 2024-06-26T05:42:52.5770130Z copying torch/ao/nn/quantizable/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantizable/modules 2024-06-26T05:42:52.5771350Z copying torch/ao/nn/quantizable/modules/activation.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantizable/modules 2024-06-26T05:42:52.5772640Z copying torch/ao/nn/quantizable/modules/rnn.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantizable/modules 2024-06-26T05:42:52.5774410Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/qat 2024-06-26T05:42:52.5774780Z copying torch/ao/nn/intrinsic/qat/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/qat 2024-06-26T05:42:52.5776730Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized 2024-06-26T05:42:52.5777150Z copying torch/ao/nn/intrinsic/quantized/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized 2024-06-26T05:42:52.5778920Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/modules 2024-06-26T05:42:52.5779330Z copying torch/ao/nn/intrinsic/modules/fused.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/modules 2024-06-26T05:42:52.5780780Z copying torch/ao/nn/intrinsic/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/modules 2024-06-26T05:42:52.5782730Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/qat/modules 2024-06-26T05:42:52.5783200Z copying torch/ao/nn/intrinsic/qat/modules/conv_fused.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/qat/modules 2024-06-26T05:42:52.5784860Z copying torch/ao/nn/intrinsic/qat/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/qat/modules 2024-06-26T05:42:52.5785550Z copying torch/ao/nn/intrinsic/qat/modules/linear_relu.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/qat/modules 2024-06-26T05:42:52.5786940Z copying torch/ao/nn/intrinsic/qat/modules/linear_fused.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/qat/modules 2024-06-26T05:42:52.5788540Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/dynamic 2024-06-26T05:42:52.5789040Z copying torch/ao/nn/intrinsic/quantized/dynamic/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/dynamic 2024-06-26T05:42:52.5791210Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/modules 2024-06-26T05:42:52.5791710Z copying torch/ao/nn/intrinsic/quantized/modules/bn_relu.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/modules 2024-06-26T05:42:52.5792700Z copying torch/ao/nn/intrinsic/quantized/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/modules 2024-06-26T05:42:52.5794130Z copying torch/ao/nn/intrinsic/quantized/modules/conv_relu.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/modules 2024-06-26T05:42:52.5795540Z copying torch/ao/nn/intrinsic/quantized/modules/linear_relu.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/modules 2024-06-26T05:42:52.5796620Z copying torch/ao/nn/intrinsic/quantized/modules/conv_add.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/modules 2024-06-26T05:42:52.5798470Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/dynamic/modules 2024-06-26T05:42:52.5799040Z copying torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/dynamic/modules 2024-06-26T05:42:52.5800540Z copying torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/dynamic/modules 2024-06-26T05:42:52.5802090Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/sparse/quantized 2024-06-26T05:42:52.5802500Z copying torch/ao/nn/sparse/quantized/linear.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/sparse/quantized 2024-06-26T05:42:52.5804070Z copying torch/ao/nn/sparse/quantized/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/sparse/quantized 2024-06-26T05:42:52.5804730Z copying torch/ao/nn/sparse/quantized/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/sparse/quantized 2024-06-26T05:42:52.5806860Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/sparse/quantized/dynamic 2024-06-26T05:42:52.5807340Z copying torch/ao/nn/sparse/quantized/dynamic/linear.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/sparse/quantized/dynamic 2024-06-26T05:42:52.5808290Z copying torch/ao/nn/sparse/quantized/dynamic/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/sparse/quantized/dynamic 2024-06-26T05:42:52.5810970Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx 2024-06-26T05:42:52.5811360Z copying torch/ao/ns/fx/graph_passes.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx 2024-06-26T05:42:52.5812880Z copying torch/ao/ns/fx/weight_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx 2024-06-26T05:42:52.5814630Z copying torch/ao/ns/fx/graph_matcher.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx 2024-06-26T05:42:52.5815310Z copying torch/ao/ns/fx/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx 2024-06-26T05:42:52.5816480Z copying torch/ao/ns/fx/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx 2024-06-26T05:42:52.5817890Z copying torch/ao/ns/fx/pattern_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx 2024-06-26T05:42:52.5818840Z copying torch/ao/ns/fx/ns_types.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx 2024-06-26T05:42:52.5819780Z copying torch/ao/ns/fx/n_shadows_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx 2024-06-26T05:42:52.5821260Z copying torch/ao/ns/fx/mappings.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx 2024-06-26T05:42:52.5822730Z copying torch/ao/ns/fx/qconfig_multi_mapping.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx 2024-06-26T05:42:52.5826070Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config 2024-06-26T05:42:52.5826620Z copying torch/ao/quantization/backend_config/_common_operator_config_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config 2024-06-26T05:42:52.5828020Z copying torch/ao/quantization/backend_config/qnnpack.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config 2024-06-26T05:42:52.5828830Z copying torch/ao/quantization/backend_config/fbgemm.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config 2024-06-26T05:42:52.5830140Z copying torch/ao/quantization/backend_config/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config 2024-06-26T05:42:52.5830900Z copying torch/ao/quantization/backend_config/native.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config 2024-06-26T05:42:52.5832210Z copying torch/ao/quantization/backend_config/observation_type.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config 2024-06-26T05:42:52.5833070Z copying torch/ao/quantization/backend_config/onednn.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config 2024-06-26T05:42:52.5834350Z copying torch/ao/quantization/backend_config/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config 2024-06-26T05:42:52.5835730Z copying torch/ao/quantization/backend_config/_qnnpack_pt2e.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config 2024-06-26T05:42:52.5837020Z copying torch/ao/quantization/backend_config/executorch.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config 2024-06-26T05:42:52.5837850Z copying torch/ao/quantization/backend_config/backend_config.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config 2024-06-26T05:42:52.5839350Z copying torch/ao/quantization/backend_config/x86.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config 2024-06-26T05:42:52.5840190Z copying torch/ao/quantization/backend_config/tensorrt.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config 2024-06-26T05:42:52.5842890Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e 2024-06-26T05:42:52.5843340Z copying torch/ao/quantization/pt2e/port_metadata_pass.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e 2024-06-26T05:42:52.5844820Z copying torch/ao/quantization/pt2e/export_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e 2024-06-26T05:42:52.5845630Z copying torch/ao/quantization/pt2e/qat_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e 2024-06-26T05:42:52.5847200Z copying torch/ao/quantization/pt2e/duplicate_dq_pass.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e 2024-06-26T05:42:52.5848130Z copying torch/ao/quantization/pt2e/graph_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e 2024-06-26T05:42:52.5849380Z copying torch/ao/quantization/pt2e/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e 2024-06-26T05:42:52.5849840Z copying torch/ao/quantization/pt2e/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e 2024-06-26T05:42:52.5851470Z copying torch/ao/quantization/pt2e/generate_numeric_debug_handle.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e 2024-06-26T05:42:52.5852130Z copying torch/ao/quantization/pt2e/prepare.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e 2024-06-26T05:42:52.5856320Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5856810Z copying torch/ao/quantization/fx/graph_module.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5858030Z copying torch/ao/quantization/fx/lower_to_fbgemm.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5858880Z copying torch/ao/quantization/fx/_equalize.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5860480Z copying torch/ao/quantization/fx/lower_to_qnnpack.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5861270Z copying torch/ao/quantization/fx/convert.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5862860Z copying torch/ao/quantization/fx/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5864260Z copying torch/ao/quantization/fx/quantize_handler.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5864660Z copying torch/ao/quantization/fx/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5866280Z copying torch/ao/quantization/fx/pattern_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5867120Z copying torch/ao/quantization/fx/_lower_to_native_backend.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5868940Z copying torch/ao/quantization/fx/custom_config.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5869820Z copying torch/ao/quantization/fx/fuse.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5871120Z copying torch/ao/quantization/fx/qconfig_mapping_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5872860Z copying torch/ao/quantization/fx/match_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5874170Z copying torch/ao/quantization/fx/prepare.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5875590Z copying torch/ao/quantization/fx/tracer.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5876860Z copying torch/ao/quantization/fx/_decomposed.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5878270Z copying torch/ao/quantization/fx/fuse_handler.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5879480Z copying torch/ao/quantization/fx/lstm_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx 2024-06-26T05:42:52.5882270Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer 2024-06-26T05:42:52.5882750Z copying torch/ao/quantization/quantizer/embedding_quantizer.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer 2024-06-26T05:42:52.5884010Z copying torch/ao/quantization/quantizer/x86_inductor_quantizer.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer 2024-06-26T05:42:52.5885540Z copying torch/ao/quantization/quantizer/xnnpack_quantizer.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer 2024-06-26T05:42:52.5887180Z copying torch/ao/quantization/quantizer/composable_quantizer.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer 2024-06-26T05:42:52.5887790Z copying torch/ao/quantization/quantizer/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer 2024-06-26T05:42:52.5888950Z copying torch/ao/quantization/quantizer/quantizer.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer 2024-06-26T05:42:52.5890340Z copying torch/ao/quantization/quantizer/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer 2024-06-26T05:42:52.5891090Z copying torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer 2024-06-26T05:42:52.5893360Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e/representation 2024-06-26T05:42:52.5893880Z copying torch/ao/quantization/pt2e/representation/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e/representation 2024-06-26T05:42:52.5895230Z copying torch/ao/quantization/pt2e/representation/rewrite.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e/representation 2024-06-26T05:42:52.5897300Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/_model_report 2024-06-26T05:42:52.5897800Z copying torch/ao/quantization/fx/_model_report/detector.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/_model_report 2024-06-26T05:42:52.5899680Z copying torch/ao/quantization/fx/_model_report/model_report_visualizer.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/_model_report 2024-06-26T05:42:52.5901030Z copying torch/ao/quantization/fx/_model_report/model_report_observer.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/_model_report 2024-06-26T05:42:52.5901760Z copying torch/ao/quantization/fx/_model_report/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/_model_report 2024-06-26T05:42:52.5902720Z copying torch/ao/quantization/fx/_model_report/model_report.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/_model_report 2024-06-26T05:42:52.5905060Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/sparsifier 2024-06-26T05:42:52.5905520Z copying torch/ao/pruning/sparsifier/weight_norm_sparsifier.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/sparsifier 2024-06-26T05:42:52.5906980Z copying torch/ao/pruning/sparsifier/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/sparsifier 2024-06-26T05:42:52.5907490Z copying torch/ao/pruning/sparsifier/utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/sparsifier 2024-06-26T05:42:52.5908930Z copying torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/sparsifier 2024-06-26T05:42:52.5909700Z copying torch/ao/pruning/sparsifier/base_sparsifier.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/sparsifier 2024-06-26T05:42:52.5912100Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental 2024-06-26T05:42:52.5912540Z copying torch/ao/pruning/_experimental/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental 2024-06-26T05:42:52.5914390Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/scheduler 2024-06-26T05:42:52.5914910Z copying torch/ao/pruning/scheduler/base_scheduler.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/scheduler 2024-06-26T05:42:52.5916350Z copying torch/ao/pruning/scheduler/cubic_scheduler.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/scheduler 2024-06-26T05:42:52.5917100Z copying torch/ao/pruning/scheduler/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/scheduler 2024-06-26T05:42:52.5918500Z copying torch/ao/pruning/scheduler/lambda_scheduler.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/scheduler 2024-06-26T05:42:52.5920670Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_sparsifier 2024-06-26T05:42:52.5921240Z copying torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_sparsifier 2024-06-26T05:42:52.5923050Z copying torch/ao/pruning/_experimental/data_sparsifier/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_sparsifier 2024-06-26T05:42:52.5927440Z copying torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_sparsifier 2024-06-26T05:42:52.5928030Z copying torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_sparsifier 2024-06-26T05:42:52.5928300Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner 2024-06-26T05:42:52.5928780Z copying torch/ao/pruning/_experimental/pruner/FPGM_pruner.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner 2024-06-26T05:42:52.5930180Z copying torch/ao/pruning/_experimental/pruner/saliency_pruner.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner 2024-06-26T05:42:52.5930870Z copying torch/ao/pruning/_experimental/pruner/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner 2024-06-26T05:42:52.5932260Z copying torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner 2024-06-26T05:42:52.5933810Z copying torch/ao/pruning/_experimental/pruner/prune_functions.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner 2024-06-26T05:42:52.5934680Z copying torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner 2024-06-26T05:42:52.5936070Z copying torch/ao/pruning/_experimental/pruner/parametrization.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner 2024-06-26T05:42:52.5936890Z copying torch/ao/pruning/_experimental/pruner/match_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner 2024-06-26T05:42:52.5939060Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/activation_sparsifier 2024-06-26T05:42:52.5939720Z copying torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/activation_sparsifier 2024-06-26T05:42:52.5941330Z copying torch/ao/pruning/_experimental/activation_sparsifier/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/activation_sparsifier 2024-06-26T05:42:52.5942770Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_scheduler 2024-06-26T05:42:52.5943290Z copying torch/ao/pruning/_experimental/data_scheduler/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_scheduler 2024-06-26T05:42:52.5944740Z copying torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_scheduler 2024-06-26T05:42:52.5946480Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_sparsifier/lightning 2024-06-26T05:42:52.5947090Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_sparsifier/lightning 2024-06-26T05:42:52.5948840Z creating build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2024-06-26T05:42:52.5949550Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2024-06-26T05:42:52.5950490Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2024-06-26T05:42:52.5951380Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py -> build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2024-06-26T05:42:52.5953100Z creating build/lib.macosx-11.1-arm64-3.9/torch/_refs/linalg 2024-06-26T05:42:52.5953400Z copying torch/_refs/linalg/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_refs/linalg 2024-06-26T05:42:52.5955380Z creating build/lib.macosx-11.1-arm64-3.9/torch/_refs/nn 2024-06-26T05:42:52.5955650Z copying torch/_refs/nn/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_refs/nn 2024-06-26T05:42:52.5957500Z creating build/lib.macosx-11.1-arm64-3.9/torch/_refs/special 2024-06-26T05:42:52.5957810Z copying torch/_refs/special/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_refs/special 2024-06-26T05:42:52.5959580Z creating build/lib.macosx-11.1-arm64-3.9/torch/_refs/nn/functional 2024-06-26T05:42:52.5959940Z copying torch/_refs/nn/functional/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/_refs/nn/functional 2024-06-26T05:42:52.5962370Z creating build/lib.macosx-11.1-arm64-3.9/torch/export/experimental 2024-06-26T05:42:52.5962880Z copying torch/export/experimental/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/export/experimental 2024-06-26T05:42:52.5965180Z creating build/lib.macosx-11.1-arm64-3.9/torch/nested/_internal 2024-06-26T05:42:52.5965540Z copying torch/nested/_internal/nested_tensor.py -> build/lib.macosx-11.1-arm64-3.9/torch/nested/_internal 2024-06-26T05:42:52.5967040Z copying torch/nested/_internal/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/nested/_internal 2024-06-26T05:42:52.5967530Z copying torch/nested/_internal/ops.py -> build/lib.macosx-11.1-arm64-3.9/torch/nested/_internal 2024-06-26T05:42:52.5969130Z copying torch/nested/_internal/sdpa.py -> build/lib.macosx-11.1-arm64-3.9/torch/nested/_internal 2024-06-26T05:42:52.5970920Z creating build/lib.macosx-11.1-arm64-3.9/torch/signal/windows 2024-06-26T05:42:52.5971410Z copying torch/signal/windows/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/signal/windows 2024-06-26T05:42:52.5972880Z copying torch/signal/windows/windows.py -> build/lib.macosx-11.1-arm64-3.9/torch/signal/windows 2024-06-26T05:42:52.5975040Z creating build/lib.macosx-11.1-arm64-3.9/torch/package/analyze 2024-06-26T05:42:52.5975480Z copying torch/package/analyze/trace_dependencies.py -> build/lib.macosx-11.1-arm64-3.9/torch/package/analyze 2024-06-26T05:42:52.5976950Z copying torch/package/analyze/find_first_use_of_broken_modules.py -> build/lib.macosx-11.1-arm64-3.9/torch/package/analyze 2024-06-26T05:42:52.5977450Z copying torch/package/analyze/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torch/package/analyze 2024-06-26T05:42:52.5978760Z copying torch/package/analyze/is_from_package.py -> build/lib.macosx-11.1-arm64-3.9/torch/package/analyze 2024-06-26T05:42:52.5980800Z creating build/lib.macosx-11.1-arm64-3.9/torchgen/selective_build 2024-06-26T05:42:52.5981150Z copying torchgen/selective_build/selector.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/selective_build 2024-06-26T05:42:52.5982670Z copying torchgen/selective_build/operator.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/selective_build 2024-06-26T05:42:52.5983810Z copying torchgen/selective_build/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/selective_build 2024-06-26T05:42:52.5985590Z creating build/lib.macosx-11.1-arm64-3.9/torchgen/static_runtime 2024-06-26T05:42:52.5985970Z copying torchgen/static_runtime/config.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/static_runtime 2024-06-26T05:42:52.5987280Z copying torchgen/static_runtime/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/static_runtime 2024-06-26T05:42:52.5988010Z copying torchgen/static_runtime/generator.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/static_runtime 2024-06-26T05:42:52.5989710Z copying torchgen/static_runtime/gen_static_runtime_ops.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/static_runtime 2024-06-26T05:42:52.5991460Z creating build/lib.macosx-11.1-arm64-3.9/torchgen/operator_versions 2024-06-26T05:42:52.5991850Z copying torchgen/operator_versions/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/operator_versions 2024-06-26T05:42:52.5993250Z copying torchgen/operator_versions/gen_mobile_upgraders_constant.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/operator_versions 2024-06-26T05:42:52.5993730Z copying torchgen/operator_versions/gen_mobile_upgraders.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/operator_versions 2024-06-26T05:42:52.5996570Z creating build/lib.macosx-11.1-arm64-3.9/torchgen/dest 2024-06-26T05:42:52.5996870Z copying torchgen/dest/lazy_ts_lowering.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/dest 2024-06-26T05:42:52.5998160Z copying torchgen/dest/ufunc.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/dest 2024-06-26T05:42:52.5999310Z copying torchgen/dest/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/dest 2024-06-26T05:42:52.6000680Z copying torchgen/dest/native_functions.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/dest 2024-06-26T05:42:52.6001100Z copying torchgen/dest/lazy_ir.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/dest 2024-06-26T05:42:52.6002730Z copying torchgen/dest/register_dispatch_key.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/dest 2024-06-26T05:42:52.6006070Z creating build/lib.macosx-11.1-arm64-3.9/torchgen/api 2024-06-26T05:42:52.6006350Z copying torchgen/api/dispatcher.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api 2024-06-26T05:42:52.6007580Z copying torchgen/api/translate.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api 2024-06-26T05:42:52.6008970Z copying torchgen/api/ufunc.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api 2024-06-26T05:42:52.6009580Z copying torchgen/api/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api 2024-06-26T05:42:52.6010510Z copying torchgen/api/native.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api 2024-06-26T05:42:52.6011740Z copying torchgen/api/cpp.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api 2024-06-26T05:42:52.6012950Z copying torchgen/api/unboxing.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api 2024-06-26T05:42:52.6014270Z copying torchgen/api/functionalization.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api 2024-06-26T05:42:52.6014910Z copying torchgen/api/autograd.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api 2024-06-26T05:42:52.6016500Z copying torchgen/api/structured.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api 2024-06-26T05:42:52.6017850Z copying torchgen/api/python.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api 2024-06-26T05:42:52.6018940Z copying torchgen/api/lazy.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api 2024-06-26T05:42:52.6020000Z copying torchgen/api/meta.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api 2024-06-26T05:42:52.6022420Z creating build/lib.macosx-11.1-arm64-3.9/torchgen/executorch 2024-06-26T05:42:52.6022760Z copying torchgen/executorch/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/executorch 2024-06-26T05:42:52.6023430Z copying torchgen/executorch/model.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/executorch 2024-06-26T05:42:52.6025160Z copying torchgen/executorch/parse.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/executorch 2024-06-26T05:42:52.6026540Z creating build/lib.macosx-11.1-arm64-3.9/torchgen/aoti 2024-06-26T05:42:52.6026870Z copying torchgen/aoti/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/aoti 2024-06-26T05:42:52.6028030Z copying torchgen/aoti/fallback_ops.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/aoti 2024-06-26T05:42:52.6029980Z creating build/lib.macosx-11.1-arm64-3.9/torchgen/api/types 2024-06-26T05:42:52.6030340Z copying torchgen/api/types/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api/types 2024-06-26T05:42:52.6031560Z copying torchgen/api/types/types.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api/types 2024-06-26T05:42:52.6032790Z copying torchgen/api/types/signatures.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api/types 2024-06-26T05:42:52.6034250Z copying torchgen/api/types/types_base.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/api/types 2024-06-26T05:42:52.6036340Z creating build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/api 2024-06-26T05:42:52.6036720Z copying torchgen/executorch/api/custom_ops.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/api 2024-06-26T05:42:52.6038000Z copying torchgen/executorch/api/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/api 2024-06-26T05:42:52.6038540Z copying torchgen/executorch/api/unboxing.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/api 2024-06-26T05:42:52.6039910Z copying torchgen/executorch/api/et_cpp.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/api 2024-06-26T05:42:52.6042300Z creating build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/api/types 2024-06-26T05:42:52.6042710Z copying torchgen/executorch/api/types/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/api/types 2024-06-26T05:42:52.6043940Z copying torchgen/executorch/api/types/types.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/api/types 2024-06-26T05:42:52.6044690Z copying torchgen/executorch/api/types/signatures.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/api/types 2024-06-26T05:42:52.6046740Z creating build/lib.macosx-11.1-arm64-3.9/functorch/experimental 2024-06-26T05:42:52.6047250Z copying functorch/experimental/control_flow.py -> build/lib.macosx-11.1-arm64-3.9/functorch/experimental 2024-06-26T05:42:52.6053440Z copying functorch/experimental/__init__.py -> build/lib.macosx-11.1-arm64-3.9/functorch/experimental 2024-06-26T05:42:52.6059190Z copying functorch/experimental/ops.py -> build/lib.macosx-11.1-arm64-3.9/functorch/experimental 2024-06-26T05:42:52.6065440Z creating build/lib.macosx-11.1-arm64-3.9/functorch/_src 2024-06-26T05:42:52.6065790Z copying functorch/_src/__init__.py -> build/lib.macosx-11.1-arm64-3.9/functorch/_src 2024-06-26T05:42:52.6068730Z creating build/lib.macosx-11.1-arm64-3.9/functorch/dim 2024-06-26T05:42:52.6069130Z copying functorch/dim/magic_trace.py -> build/lib.macosx-11.1-arm64-3.9/functorch/dim 2024-06-26T05:42:52.6074910Z copying functorch/dim/__init__.py -> build/lib.macosx-11.1-arm64-3.9/functorch/dim 2024-06-26T05:42:52.6080340Z copying functorch/dim/delayed_mul_tensor.py -> build/lib.macosx-11.1-arm64-3.9/functorch/dim 2024-06-26T05:42:52.6086670Z copying functorch/dim/op_properties.py -> build/lib.macosx-11.1-arm64-3.9/functorch/dim 2024-06-26T05:42:52.6092790Z copying functorch/dim/batch_tensor.py -> build/lib.macosx-11.1-arm64-3.9/functorch/dim 2024-06-26T05:42:52.6099000Z copying functorch/dim/wrap_type.py -> build/lib.macosx-11.1-arm64-3.9/functorch/dim 2024-06-26T05:42:52.6104200Z copying functorch/dim/reference.py -> build/lib.macosx-11.1-arm64-3.9/functorch/dim 2024-06-26T05:42:52.6122580Z copying functorch/dim/dim.py -> build/lib.macosx-11.1-arm64-3.9/functorch/dim 2024-06-26T05:42:52.6128470Z copying functorch/dim/tree_map.py -> build/lib.macosx-11.1-arm64-3.9/functorch/dim 2024-06-26T05:42:52.6134660Z creating build/lib.macosx-11.1-arm64-3.9/functorch/compile 2024-06-26T05:42:52.6134970Z copying functorch/compile/__init__.py -> build/lib.macosx-11.1-arm64-3.9/functorch/compile 2024-06-26T05:42:52.6149740Z creating build/lib.macosx-11.1-arm64-3.9/functorch/einops 2024-06-26T05:42:52.6150050Z copying functorch/einops/_parsing.py -> build/lib.macosx-11.1-arm64-3.9/functorch/einops 2024-06-26T05:42:52.6156720Z copying functorch/einops/__init__.py -> build/lib.macosx-11.1-arm64-3.9/functorch/einops 2024-06-26T05:42:52.6162520Z copying functorch/einops/rearrange.py -> build/lib.macosx-11.1-arm64-3.9/functorch/einops 2024-06-26T05:42:52.6169140Z creating build/lib.macosx-11.1-arm64-3.9/functorch/_src/make_functional 2024-06-26T05:42:52.6169530Z copying functorch/_src/make_functional/__init__.py -> build/lib.macosx-11.1-arm64-3.9/functorch/_src/make_functional 2024-06-26T05:42:52.6176000Z creating build/lib.macosx-11.1-arm64-3.9/functorch/_src/eager_transforms 2024-06-26T05:42:52.6176460Z copying functorch/_src/eager_transforms/__init__.py -> build/lib.macosx-11.1-arm64-3.9/functorch/_src/eager_transforms 2024-06-26T05:42:52.6182920Z creating build/lib.macosx-11.1-arm64-3.9/functorch/_src/aot_autograd 2024-06-26T05:42:52.6183300Z copying functorch/_src/aot_autograd/__init__.py -> build/lib.macosx-11.1-arm64-3.9/functorch/_src/aot_autograd 2024-06-26T05:42:52.6189430Z creating build/lib.macosx-11.1-arm64-3.9/functorch/_src/vmap 2024-06-26T05:42:52.6189830Z copying functorch/_src/vmap/__init__.py -> build/lib.macosx-11.1-arm64-3.9/functorch/_src/vmap 2024-06-26T05:42:52.8431960Z copying torch/py.typed -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.8436870Z creating build/lib.macosx-11.1-arm64-3.9/torch/bin 2024-06-26T05:42:52.8437380Z copying torch/bin/protoc-3.13.0.0 -> build/lib.macosx-11.1-arm64-3.9/torch/bin 2024-06-26T05:42:52.8655990Z copying torch/bin/torch_shm_manager -> build/lib.macosx-11.1-arm64-3.9/torch/bin 2024-06-26T05:42:52.8708540Z copying torch/bin/protoc -> build/lib.macosx-11.1-arm64-3.9/torch/bin 2024-06-26T05:42:52.8829040Z copying torch/return_types.pyi -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.8830740Z copying torch/_VF.pyi -> build/lib.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:52.8837650Z creating build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8838310Z copying torch/_C/_profiler.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8839400Z copying torch/_C/_onnx.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8841000Z copying torch/_C/_distributed_c10d.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8842400Z copying torch/_C/_autograd.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8843770Z copying torch/_C/_monitor.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8844650Z copying torch/_C/_itt.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8846170Z copying torch/_C/_lazy.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8847520Z copying torch/_C/__init__.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8850790Z copying torch/_C/_nvtx.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8852160Z copying torch/_C/_cpu.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8853570Z copying torch/_C/_nn.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8854490Z copying torch/_C/_lazy_ts_backend.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8856100Z copying torch/_C/_functorch.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8857080Z copying torch/_C/_VariableFunctions.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8864160Z copying torch/_C/_distributed_rpc.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8865540Z copying torch/_C/_verbose.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8866370Z copying torch/_C/_aoti.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8867910Z copying torch/_C/_functions.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8868930Z copying torch/_C/_distributed_rpc_testing.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8870380Z copying torch/_C/_cudnn.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8871800Z copying torch/_C/_distributed_autograd.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/_C 2024-06-26T05:42:52.8872680Z copying torch/fx/__init__.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/fx 2024-06-26T05:42:52.8874250Z copying torch/nn/parameter.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/nn 2024-06-26T05:42:52.8875740Z copying torch/nn/functional.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/nn 2024-06-26T05:42:52.8877320Z copying torch/utils/data/datapipes/datapipe.pyi -> build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes 2024-06-26T05:42:52.8878780Z creating build/lib.macosx-11.1-arm64-3.9/torch/lib 2024-06-26T05:42:52.8879250Z copying torch/lib/libshm.dylib -> build/lib.macosx-11.1-arm64-3.9/torch/lib 2024-06-26T05:42:52.9008190Z creating build/lib.macosx-11.1-arm64-3.9/torch/include 2024-06-26T05:42:52.9008710Z copying torch/include/sleef.h -> build/lib.macosx-11.1-arm64-3.9/torch/include 2024-06-26T05:42:52.9010970Z copying torch/include/cpuinfo.h -> build/lib.macosx-11.1-arm64-3.9/torch/include 2024-06-26T05:42:52.9012540Z copying torch/include/nnpack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include 2024-06-26T05:42:52.9014110Z copying torch/include/xnnpack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include 2024-06-26T05:42:52.9016460Z copying torch/include/libshm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include 2024-06-26T05:42:52.9017400Z copying torch/include/fp16.h -> build/lib.macosx-11.1-arm64-3.9/torch/include 2024-06-26T05:42:52.9018940Z copying torch/include/qnnpack_func.h -> build/lib.macosx-11.1-arm64-3.9/torch/include 2024-06-26T05:42:52.9020030Z copying torch/include/pthreadpool.h -> build/lib.macosx-11.1-arm64-3.9/torch/include 2024-06-26T05:42:52.9022090Z copying torch/include/clog.h -> build/lib.macosx-11.1-arm64-3.9/torch/include 2024-06-26T05:42:52.9023490Z copying torch/include/psimd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include 2024-06-26T05:42:52.9024950Z copying torch/include/experiments-config.h -> build/lib.macosx-11.1-arm64-3.9/torch/include 2024-06-26T05:42:52.9025970Z copying torch/include/fxdiv.h -> build/lib.macosx-11.1-arm64-3.9/torch/include 2024-06-26T05:42:52.9028030Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9028610Z copying torch/include/ATen/Formatting.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9029670Z copying torch/include/ATen/NestedTensorImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9031560Z copying torch/include/ATen/CPUFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9032530Z copying torch/include/ATen/LegacyBatchedFallback.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9034110Z copying torch/include/ATen/CollapseDims.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9035360Z copying torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9036570Z copying torch/include/ATen/MetaFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9038250Z copying torch/include/ATen/Utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9039250Z copying torch/include/ATen/TensorOptions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9040860Z copying torch/include/ATen/DeviceAccelerator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9041720Z copying torch/include/ATen/TensorUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9043110Z copying torch/include/ATen/MemoryOverlap.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9044470Z copying torch/include/ATen/TensorSubclassLikeUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9045980Z copying torch/include/ATen/LegacyVmapMode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9047120Z copying torch/include/ATen/InitialTensorOptions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9048250Z copying torch/include/ATen/Version.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9049560Z copying torch/include/ATen/DLConvertor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9051030Z copying torch/include/ATen/Device.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9052130Z copying torch/include/ATen/FuncTorchTLS.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9053970Z copying torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9054930Z copying torch/include/ATen/jiterator_macros.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9056050Z copying torch/include/ATen/Operators.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9057900Z copying torch/include/ATen/CPUFunctions_inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9059690Z copying torch/include/ATen/ceil_div.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9060540Z copying torch/include/ATen/EmptyTensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9061910Z copying torch/include/ATen/NativeMetaFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9063630Z copying torch/include/ATen/dlpack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9065310Z copying torch/include/ATen/Config.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9066290Z copying torch/include/ATen/ThreadLocalPythonObjects.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9067460Z copying torch/include/ATen/Backtrace.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9069200Z copying torch/include/ATen/SparseCsrTensorUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9070230Z copying torch/include/ATen/TracerMode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9071940Z copying torch/include/ATen/BlasBackend.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9072900Z copying torch/include/ATen/Backend.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9074650Z copying torch/include/ATen/RegistrationDeclarations.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9080000Z copying torch/include/ATen/CompositeImplicitAutogradFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9085330Z copying torch/include/ATen/PTThreadPool.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9086100Z copying torch/include/ATen/OpaqueTensorImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9086840Z copying torch/include/ATen/MapAllocator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9087560Z copying torch/include/ATen/record_function.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9088340Z copying torch/include/ATen/WrapDimUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9089080Z copying torch/include/ATen/RedispatchFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9136890Z copying torch/include/ATen/Context.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9138600Z copying torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9139780Z copying torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9141590Z copying torch/include/ATen/div_rtn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9142490Z copying torch/include/ATen/ExpandUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9144520Z copying torch/include/ATen/MPSFunctions_inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9146180Z copying torch/include/ATen/TypeDefault.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9147170Z copying torch/include/ATen/MPSFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9148830Z copying torch/include/ATen/VmapGeneratedPlumbing.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9159070Z copying torch/include/ATen/MethodOperators.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9160790Z copying torch/include/ATen/CPUFixedAllocator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9161770Z copying torch/include/ATen/NamedTensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9163310Z copying torch/include/ATen/Scalar.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9164310Z copying torch/include/ATen/TensorIteratorInternal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9166020Z copying torch/include/ATen/LinalgBackend.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9167020Z copying torch/include/ATen/LegacyBatchedTensorImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9168590Z copying torch/include/ATen/ArrayRef.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9169510Z copying torch/include/ATen/SequenceNumber.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9171120Z copying torch/include/ATen/FunctionalStorageImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9172060Z copying torch/include/ATen/ExpandBase.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9173310Z copying torch/include/ATen/Parallel-inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9174850Z copying torch/include/ATen/MatrixRef.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9175840Z copying torch/include/ATen/CUDAFunctions_inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9177730Z copying torch/include/ATen/CompositeExplicitAutogradFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9178710Z copying torch/include/ATen/FunctionalTensorWrapper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9180400Z copying torch/include/ATen/SparseCsrTensorImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9181440Z copying torch/include/ATen/NumericUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9183040Z copying torch/include/ATen/ATen.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9183980Z copying torch/include/ATen/TensorNames.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9185820Z copying torch/include/ATen/TensorMeta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9186650Z copying torch/include/ATen/TensorIndexing.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9188300Z copying torch/include/ATen/Layout.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9189700Z copying torch/include/ATen/SparseTensorImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9191450Z copying torch/include/ATen/SavedTensorHooks.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9192650Z copying torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9194350Z copying torch/include/ATen/StorageUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9195360Z copying torch/include/ATen/WrapDimUtilsMulti.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9196920Z copying torch/include/ATen/code_template.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9197920Z copying torch/include/ATen/TensorOperators.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9199620Z copying torch/include/ATen/CUDAFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9200440Z copying torch/include/ATen/ScalarType.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9202000Z copying torch/include/ATen/cpp_custom_type_hack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9202950Z copying torch/include/ATen/Dispatch_v2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9204780Z copying torch/include/ATen/Storage.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9205800Z copying torch/include/ATen/DeviceGuard.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9207340Z copying torch/include/ATen/ParallelNative.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9208340Z copying torch/include/ATen/OpMathType.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9209930Z copying torch/include/ATen/PythonTorchFunctionTLS.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9210810Z copying torch/include/ATen/PadNd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9212310Z copying torch/include/ATen/Dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9213890Z copying torch/include/ATen/CPUGeneratorImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9214900Z copying torch/include/ATen/ParallelFuture.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9216520Z copying torch/include/ATen/Functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9219220Z copying torch/include/ATen/ParallelOpenMP.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9221690Z copying torch/include/ATen/jit_macros.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9225380Z copying torch/include/ATen/CPUApplyUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9227930Z copying torch/include/ATen/ThreadLocalState.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9229640Z copying torch/include/ATen/ScalarOps.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9230940Z copying torch/include/ATen/NativeFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9233010Z copying torch/include/ATen/DynamicLibrary.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9234030Z copying torch/include/ATen/TensorGeometry.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9235610Z copying torch/include/ATen/TensorIterator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9237280Z copying torch/include/ATen/NamedTensorUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9238310Z copying torch/include/ATen/Dimname.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9240500Z copying torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9244920Z copying torch/include/ATen/autocast_mode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9269470Z copying torch/include/ATen/Parallel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9293290Z copying torch/include/ATen/DimVector.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9302520Z copying torch/include/ATen/MetaFunctions_inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9304230Z copying torch/include/ATen/InferSize.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9305220Z copying torch/include/ATen/LegacyVmapTransforms.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9306920Z copying torch/include/ATen/SmallVector.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9307820Z copying torch/include/ATen/Tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9309450Z copying torch/include/ATen/Generator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9310510Z copying torch/include/ATen/AccumulateType.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9312090Z copying torch/include/ATen/TensorAccessor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9313080Z copying torch/include/ATen/CachedTensorUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen 2024-06-26T05:42:52.9314880Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu 2024-06-26T05:42:52.9319690Z copying torch/include/ATen/cpu/Utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu 2024-06-26T05:42:52.9320900Z copying torch/include/ATen/cpu/FlushDenormal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu 2024-06-26T05:42:52.9321660Z copying torch/include/ATen/cpu/vml.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu 2024-06-26T05:42:52.9322260Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec 2024-06-26T05:42:52.9322800Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:52.9323590Z copying torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:52.9324600Z copying torch/include/ATen/cpu/vec/vec256/vec256_float_neon.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:52.9325730Z copying torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:52.9326730Z copying torch/include/ATen/cpu/vec/vec256/vec256_mask.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:52.9327710Z copying torch/include/ATen/cpu/vec/vec256/vec256_half_neon.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:52.9328720Z copying torch/include/ATen/cpu/vec/vec256/vec256_qint.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:52.9330040Z copying torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:52.9332000Z copying torch/include/ATen/cpu/vec/vec256/vec256_double.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:52.9333410Z copying torch/include/ATen/cpu/vec/vec256/vec256_float.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:52.9335340Z copying torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:52.9336610Z copying torch/include/ATen/cpu/vec/vec256/vec256.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:52.9338450Z copying torch/include/ATen/cpu/vec/vec256/vec256_convert.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:52.9339530Z copying torch/include/ATen/cpu/vec/vec256/vec256_int.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:52.9341440Z copying torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:52.9342590Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vsx 2024-06-26T05:42:52.9343450Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vsx 2024-06-26T05:42:52.9344810Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vsx 2024-06-26T05:42:52.9346960Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vsx 2024-06-26T05:42:52.9348270Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vsx 2024-06-26T05:42:52.9350200Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vsx 2024-06-26T05:42:52.9351700Z copying torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vsx 2024-06-26T05:42:52.9353320Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vsx 2024-06-26T05:42:52.9355390Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vsx 2024-06-26T05:42:52.9356680Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vsx 2024-06-26T05:42:52.9358040Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vsx 2024-06-26T05:42:52.9359330Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vsx 2024-06-26T05:42:52.9361270Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vsx 2024-06-26T05:42:52.9362610Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vsx 2024-06-26T05:42:52.9364400Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/zarch 2024-06-26T05:42:52.9365250Z copying torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/zarch 2024-06-26T05:42:52.9366480Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:52.9367650Z copying torch/include/ATen/cpu/vec/vec512/vec512_int.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:52.9369010Z copying torch/include/ATen/cpu/vec/vec512/vec512_convert.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:52.9370330Z copying torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:52.9372160Z copying torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:52.9373510Z copying torch/include/ATen/cpu/vec/vec512/vec512_mask.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:52.9374840Z copying torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:52.9376750Z copying torch/include/ATen/cpu/vec/vec512/vec512_double.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:52.9377860Z copying torch/include/ATen/cpu/vec/vec512/vec512_qint.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:52.9379790Z copying torch/include/ATen/cpu/vec/vec512/vec512_float.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:52.9381010Z copying torch/include/ATen/cpu/vec/vec512/vec512.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:52.9382710Z copying torch/include/ATen/cpu/vec/vec_half.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec 2024-06-26T05:42:52.9383640Z copying torch/include/ATen/cpu/vec/vec_mask.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec 2024-06-26T05:42:52.9385490Z copying torch/include/ATen/cpu/vec/vec.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec 2024-06-26T05:42:52.9386810Z copying torch/include/ATen/cpu/vec/vec_convert.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec 2024-06-26T05:42:52.9387810Z copying torch/include/ATen/cpu/vec/intrinsics.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec 2024-06-26T05:42:52.9389070Z copying torch/include/ATen/cpu/vec/functional_bfloat16.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec 2024-06-26T05:42:52.9390820Z copying torch/include/ATen/cpu/vec/functional.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec 2024-06-26T05:42:52.9391830Z copying torch/include/ATen/cpu/vec/vec_n.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec 2024-06-26T05:42:52.9393290Z copying torch/include/ATen/cpu/vec/functional_base.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec 2024-06-26T05:42:52.9395460Z copying torch/include/ATen/cpu/vec/vec_base.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec 2024-06-26T05:42:52.9396550Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9397290Z copying torch/include/ATen/core/Dict_inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9398540Z copying torch/include/ATen/core/Formatting.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9399890Z copying torch/include/ATen/core/TensorBody.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9402920Z copying torch/include/ATen/core/GeneratorForPrivateuseone.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9404050Z copying torch/include/ATen/core/jit_type_base.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9405230Z copying torch/include/ATen/core/typeid.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9406890Z copying torch/include/ATen/core/rref_interface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9408110Z copying torch/include/ATen/core/Range.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9409120Z copying torch/include/ATen/core/interned_strings_class.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9410310Z copying torch/include/ATen/core/operator_name.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9411810Z copying torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9412940Z copying torch/include/ATen/core/symbol.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9414580Z copying torch/include/ATen/core/Backtrace.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9415690Z copying torch/include/ATen/core/TransformationHelper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9417170Z copying torch/include/ATen/core/blob.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9418250Z copying torch/include/ATen/core/function_schema.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9419980Z copying torch/include/ATen/core/type_factory.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9421080Z copying torch/include/ATen/core/MT19937RNGEngine.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9422390Z copying torch/include/ATen/core/ivalue_to.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9424060Z copying torch/include/ATen/core/aten_interned_strings.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9425860Z copying torch/include/ATen/core/dynamic_type.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9426920Z copying torch/include/ATen/core/class_type.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9429390Z copying torch/include/ATen/core/LegacyTypeDispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9430540Z copying torch/include/ATen/core/function_schema_inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9432610Z copying torch/include/ATen/core/NestedIntSymNodeImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9433690Z copying torch/include/ATen/core/qualified_name.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9435120Z copying torch/include/ATen/core/UndefinedTensorImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9439860Z copying torch/include/ATen/core/NamedTensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9440640Z copying torch/include/ATen/core/Scalar.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9441470Z copying torch/include/ATen/core/CachingHostAllocator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9442310Z copying torch/include/ATen/core/functional.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9443170Z copying torch/include/ATen/core/DeprecatedTypeProperties.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9444040Z copying torch/include/ATen/core/interned_strings.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9445420Z copying torch/include/ATen/core/List.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9447220Z copying torch/include/ATen/core/ATenOpList.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9448710Z copying torch/include/ATen/core/Dict.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9450420Z copying torch/include/ATen/core/type_ptr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9451600Z copying torch/include/ATen/core/grad_mode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9453250Z copying torch/include/ATen/core/DistributionsHelper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9455060Z copying torch/include/ATen/core/VariableHooksInterface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9456100Z copying torch/include/ATen/core/CheckMemoryFormat.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9457270Z copying torch/include/ATen/core/ScalarType.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9458920Z copying torch/include/ATen/core/Array.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9459880Z copying torch/include/ATen/core/ATen_fwd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9461470Z copying torch/include/ATen/core/stack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9463080Z copying torch/include/ATen/core/ATenGeneral.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9464290Z copying torch/include/ATen/core/custom_class.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9466010Z copying torch/include/ATen/core/IListRef.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9467670Z copying torch/include/ATen/core/UnsafeFromTH.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9469010Z copying torch/include/ATen/core/PythonOpRegistrationTrampoline.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9470390Z copying torch/include/ATen/core/TensorBase.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9472270Z copying torch/include/ATen/core/ATen_pch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9473360Z copying torch/include/ATen/core/QuantizerBase.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9475050Z copying torch/include/ATen/core/enum_type.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9475920Z copying torch/include/ATen/core/alias_info.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9477470Z copying torch/include/ATen/core/List_inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9478770Z copying torch/include/ATen/core/TorchDispatchUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9479990Z copying torch/include/ATen/core/enum_tag.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9481780Z copying torch/include/ATen/core/jit_type.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9483470Z copying torch/include/ATen/core/IListRef_inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9484530Z copying torch/include/ATen/core/ivalue.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9486510Z copying torch/include/ATen/core/Dimname.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9487410Z copying torch/include/ATen/core/Vitals.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9488720Z copying torch/include/ATen/core/PythonFallbackKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9489970Z copying torch/include/ATen/core/builtin_function.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9491660Z copying torch/include/ATen/core/DimVector.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9492530Z copying torch/include/ATen/core/Reduction.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9494100Z copying torch/include/ATen/core/Tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9495070Z copying torch/include/ATen/core/function.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9496380Z copying torch/include/ATen/core/Generator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9498130Z copying torch/include/ATen/core/PhiloxRNGEngine.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9499130Z copying torch/include/ATen/core/TensorAccessor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9500410Z copying torch/include/ATen/core/ivalue_inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9502220Z copying torch/include/ATen/core/Variadic.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core 2024-06-26T05:42:52.9503750Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9504390Z copying torch/include/ATen/cuda/AsmUtils.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9505270Z copying torch/include/ATen/cuda/DeviceUtils.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9507050Z copying torch/include/ATen/cuda/cub_definitions.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9508300Z copying torch/include/ATen/cuda/ApplyGridUtils.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9509530Z copying torch/include/ATen/cuda/PhiloxUtils.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9511190Z copying torch/include/ATen/cuda/ScanUtils.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9512330Z copying torch/include/ATen/cuda/NumericLimits.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9514160Z copying torch/include/ATen/cuda/CUDATensorMethods.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9515160Z copying torch/include/ATen/cuda/cub.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9517300Z copying torch/include/ATen/cuda/CUDAGraphsUtils.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9518250Z copying torch/include/ATen/cuda/CUDAApplyUtils.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9519980Z copying torch/include/ATen/cuda/Atomic.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9521710Z copying torch/include/ATen/cuda/CUDADevice.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9522590Z copying torch/include/ATen/cuda/CUDAUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9523750Z copying torch/include/ATen/cuda/CUDABlas.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9525780Z copying torch/include/ATen/cuda/CUDAGeneratorImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9526730Z copying torch/include/ATen/cuda/Sleep.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9528370Z copying torch/include/ATen/cuda/PinnedMemoryAllocator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9529330Z copying torch/include/ATen/cuda/jiterator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9531810Z copying torch/include/ATen/cuda/CUDASparseDescriptors.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9532740Z copying torch/include/ATen/cuda/EmptyTensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9533560Z copying torch/include/ATen/cuda/PeerToPeerAccess.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9534730Z copying torch/include/ATen/cuda/CUDAEvent.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9536360Z copying torch/include/ATen/cuda/CUDAContext.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9537320Z copying torch/include/ATen/cuda/Exceptions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9539350Z copying torch/include/ATen/cuda/CachingHostAllocator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9541590Z copying torch/include/ATen/cuda/CUDADataType.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9542960Z copying torch/include/ATen/cuda/cub.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9544740Z copying torch/include/ATen/cuda/CUDAContextLight.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9545760Z copying torch/include/ATen/cuda/CUDAGraph.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9547090Z copying torch/include/ATen/cuda/ThrustAllocator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9548250Z copying torch/include/ATen/cuda/llvm_jit_strings.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9549530Z copying torch/include/ATen/cuda/CUDASparse.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9551100Z copying torch/include/ATen/cuda/PhiloxCudaState.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9552290Z copying torch/include/ATen/cuda/jiterator_impl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9557150Z copying torch/include/ATen/cuda/ATenCUDAGeneral.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9558020Z copying torch/include/ATen/cuda/CUDASparseBlas.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda 2024-06-26T05:42:52.9558690Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail 2024-06-26T05:42:52.9559420Z copying torch/include/ATen/cuda/detail/TensorInfo.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail 2024-06-26T05:42:52.9560380Z copying torch/include/ATen/cuda/detail/IntegerDivider.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail 2024-06-26T05:42:52.9561370Z copying torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail 2024-06-26T05:42:52.9562370Z copying torch/include/ATen/cuda/detail/OffsetCalculator.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail 2024-06-26T05:42:52.9563320Z copying torch/include/ATen/cuda/detail/IndexUtils.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail 2024-06-26T05:42:52.9564350Z copying torch/include/ATen/cuda/detail/UnpackRaw.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail 2024-06-26T05:42:52.9565470Z copying torch/include/ATen/cuda/detail/CUDAHooks.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail 2024-06-26T05:42:52.9566810Z copying torch/include/ATen/cuda/detail/KernelUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail 2024-06-26T05:42:52.9568060Z copying torch/include/ATen/cuda/detail/LazyNVRTC.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail 2024-06-26T05:42:52.9569430Z copying torch/include/ATen/cuda/detail/DeviceThreadHandles.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail 2024-06-26T05:42:52.9571020Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/tunable 2024-06-26T05:42:52.9571860Z copying torch/include/ATen/cuda/tunable/TunableOp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/tunable 2024-06-26T05:42:52.9572970Z copying torch/include/ATen/cuda/tunable/StreamTimer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/tunable 2024-06-26T05:42:52.9574170Z copying torch/include/ATen/cuda/tunable/TunableGemm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/tunable 2024-06-26T05:42:52.9575810Z copying torch/include/ATen/cuda/tunable/GemmCommon.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/tunable 2024-06-26T05:42:52.9577790Z copying torch/include/ATen/cuda/tunable/GemmHipblaslt.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/tunable 2024-06-26T05:42:52.9579690Z copying torch/include/ATen/cuda/tunable/GemmRocblas.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/tunable 2024-06-26T05:42:52.9580880Z copying torch/include/ATen/cuda/tunable/Tunable.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/tunable 2024-06-26T05:42:52.9582430Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cudnn 2024-06-26T05:42:52.9583070Z copying torch/include/ATen/cudnn/Handles.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cudnn 2024-06-26T05:42:52.9584050Z copying torch/include/ATen/cudnn/Utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cudnn 2024-06-26T05:42:52.9585840Z copying torch/include/ATen/cudnn/Types.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cudnn 2024-06-26T05:42:52.9586690Z copying torch/include/ATen/cudnn/Descriptors.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cudnn 2024-06-26T05:42:52.9588510Z copying torch/include/ATen/cudnn/Exceptions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cudnn 2024-06-26T05:42:52.9589390Z copying torch/include/ATen/cudnn/Handle.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cudnn 2024-06-26T05:42:52.9590560Z copying torch/include/ATen/cudnn/cudnn-wrapper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cudnn 2024-06-26T05:42:52.9592120Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch 2024-06-26T05:42:52.9592850Z copying torch/include/ATen/functorch/BatchedFallback.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch 2024-06-26T05:42:52.9594020Z copying torch/include/ATen/functorch/FunctionalizeInterpreter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch 2024-06-26T05:42:52.9595170Z copying torch/include/ATen/functorch/ADInterpreters.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch 2024-06-26T05:42:52.9596430Z copying torch/include/ATen/functorch/Interpreter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch 2024-06-26T05:42:52.9597780Z copying torch/include/ATen/functorch/TensorWrapper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch 2024-06-26T05:42:52.9599410Z copying torch/include/ATen/functorch/BatchRulesHelper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch 2024-06-26T05:42:52.9600630Z copying torch/include/ATen/functorch/PlumbingHelper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch 2024-06-26T05:42:52.9601960Z copying torch/include/ATen/functorch/VmapInterpreter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch 2024-06-26T05:42:52.9603230Z copying torch/include/ATen/functorch/Macros.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch 2024-06-26T05:42:52.9604600Z copying torch/include/ATen/functorch/BatchingMetaprogramming.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch 2024-06-26T05:42:52.9605880Z copying torch/include/ATen/functorch/BatchedTensorImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch 2024-06-26T05:42:52.9607260Z copying torch/include/ATen/functorch/LegacyVmapTransforms.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch 2024-06-26T05:42:52.9608740Z copying torch/include/ATen/functorch/DynamicLayer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch 2024-06-26T05:42:52.9610370Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9611140Z copying torch/include/ATen/ops/is_vulkan_available.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9611930Z copying torch/include/ATen/ops/_foreach_atan.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9613680Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9614700Z copying torch/include/ATen/ops/sigmoid_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9615990Z copying torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9617190Z copying torch/include/ATen/ops/mode_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9618450Z copying torch/include/ATen/ops/index_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9620050Z copying torch/include/ATen/ops/new_ones.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9621090Z copying torch/include/ATen/ops/pixel_shuffle.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9622330Z copying torch/include/ATen/ops/clamp_min_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9623800Z copying torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9625020Z copying torch/include/ATen/ops/acosh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9626680Z copying torch/include/ATen/ops/frexp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9627590Z copying torch/include/ATen/ops/erf_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9629270Z copying torch/include/ATen/ops/repeat_interleave_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9630290Z copying torch/include/ATen/ops/special_i0e_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9632050Z copying torch/include/ATen/ops/pixel_unshuffle_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9633020Z copying torch/include/ATen/ops/upsample_trilinear3d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9634780Z copying torch/include/ATen/ops/cummin.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9635770Z copying torch/include/ATen/ops/choose_qparams_optimized_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9636960Z copying torch/include/ATen/ops/where_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9638270Z copying torch/include/ATen/ops/slice_scatter_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9640090Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9641040Z copying torch/include/ATen/ops/isfinite_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9642340Z copying torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9643610Z copying torch/include/ATen/ops/leaky_relu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9645430Z copying torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9646540Z copying torch/include/ATen/ops/erfinv_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9647510Z copying torch/include/ATen/ops/linalg_vecdot_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9649030Z copying torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9650320Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9651590Z copying torch/include/ATen/ops/bitwise_and_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9652870Z copying torch/include/ATen/ops/empty_strided_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9654340Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9655670Z copying torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9656830Z copying torch/include/ATen/ops/result_type.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9658630Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9659580Z copying torch/include/ATen/ops/min_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9660800Z copying torch/include/ATen/ops/cumulative_trapezoid.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9662350Z copying torch/include/ATen/ops/nll_loss2d_forward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9667340Z copying torch/include/ATen/ops/soft_margin_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9668180Z copying torch/include/ATen/ops/hardswish_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9669160Z copying torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9670120Z copying torch/include/ATen/ops/pow_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9670890Z copying torch/include/ATen/ops/atan_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9671640Z copying torch/include/ATen/ops/binomial_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9672430Z copying torch/include/ATen/ops/to_padded_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9673290Z copying torch/include/ATen/ops/cosine_embedding_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9674570Z copying torch/include/ATen/ops/_test_ambiguous_defaults_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9676350Z copying torch/include/ATen/ops/gelu_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9677610Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9678980Z copying torch/include/ATen/ops/max_pool3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9680770Z copying torch/include/ATen/ops/threshold_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9681690Z copying torch/include/ATen/ops/signbit.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9683310Z copying torch/include/ATen/ops/_propagate_xla_data.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9684440Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9685980Z copying torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9687220Z copying torch/include/ATen/ops/multilabel_margin_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9689040Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9690100Z copying torch/include/ATen/ops/cumprod_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9691740Z copying torch/include/ATen/ops/_remove_batch_dim.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9692790Z copying torch/include/ATen/ops/constant_pad_nd_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9694190Z copying torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9695380Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9696720Z copying torch/include/ATen/ops/_lstm_mps_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9698380Z copying torch/include/ATen/ops/_values_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9699430Z copying torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9700610Z copying torch/include/ATen/ops/nan_to_num_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9702040Z copying torch/include/ATen/ops/_histogramdd_bin_edges_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9703240Z copying torch/include/ATen/ops/_int_mm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9704870Z copying torch/include/ATen/ops/i0_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9705900Z copying torch/include/ATen/ops/inverse_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9707500Z copying torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9708610Z copying torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9709840Z copying torch/include/ATen/ops/index_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9711590Z copying torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9712540Z copying torch/include/ATen/ops/_log_softmax.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9714010Z copying torch/include/ATen/ops/quantized_batch_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9715300Z copying torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9716550Z copying torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9717860Z copying torch/include/ATen/ops/floor_divide_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9719160Z copying torch/include/ATen/ops/_softmax_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9720450Z copying torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9721770Z copying torch/include/ATen/ops/special_modified_bessel_k1_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9723140Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9724520Z copying torch/include/ATen/ops/huber_loss_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9725910Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9727130Z copying torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9729030Z copying torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9730150Z copying torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9731230Z copying torch/include/ATen/ops/fill_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9732510Z copying torch/include/ATen/ops/dist.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9734340Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9735590Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9736720Z copying torch/include/ATen/ops/index_copy_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9737980Z copying torch/include/ATen/ops/quantized_lstm_cell_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9739290Z copying torch/include/ATen/ops/_foreach_log10_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9740650Z copying torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9741970Z copying torch/include/ATen/ops/sub_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9743680Z copying torch/include/ATen/ops/mkldnn_linear_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9744600Z copying torch/include/ATen/ops/trace_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9746420Z copying torch/include/ATen/ops/adaptive_avg_pool3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9747370Z copying torch/include/ATen/ops/_efficientzerotensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9748640Z copying torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9749910Z copying torch/include/ATen/ops/_efficient_attention_forward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9751380Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9752560Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9753890Z copying torch/include/ATen/ops/special_bessel_y1_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9755580Z copying torch/include/ATen/ops/linalg_cholesky_ex_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9756600Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9757850Z copying torch/include/ATen/ops/polygamma_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9759530Z copying torch/include/ATen/ops/logical_xor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9760530Z copying torch/include/ATen/ops/nextafter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9761950Z copying torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9763180Z copying torch/include/ATen/ops/log_sigmoid_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9764900Z copying torch/include/ATen/ops/special_bessel_y0_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9765830Z copying torch/include/ATen/ops/_cast_Long_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9767160Z copying torch/include/ATen/ops/_foreach_max_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9768420Z copying torch/include/ATen/ops/pdist_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9770280Z copying torch/include/ATen/ops/_sobol_engine_ff_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9771180Z copying torch/include/ATen/ops/softmax.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9772340Z copying torch/include/ATen/ops/arctan2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9773890Z copying torch/include/ATen/ops/quantized_gru_cell_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9775030Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9776560Z copying torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9781380Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9782040Z copying torch/include/ATen/ops/absolute_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9782510Z copying torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9782940Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9783650Z copying torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9784920Z copying torch/include/ATen/ops/logaddexp_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9786340Z copying torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9787870Z copying torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9789150Z copying torch/include/ATen/ops/max_pool3d_with_indices.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9790530Z copying torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9791360Z copying torch/include/ATen/ops/special_zeta_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9793070Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9794410Z copying torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9795300Z copying torch/include/ATen/ops/addmv.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9796820Z copying torch/include/ATen/ops/bilinear_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9798120Z copying torch/include/ATen/ops/topk_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9799270Z copying torch/include/ATen/ops/adaptive_avg_pool1d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9800520Z copying torch/include/ATen/ops/linalg_eig_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9801840Z copying torch/include/ATen/ops/matrix_exp_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9803490Z copying torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9804710Z copying torch/include/ATen/ops/mkldnn_rnn_layer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9806190Z copying torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9806960Z copying torch/include/ATen/ops/softshrink_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9808680Z copying torch/include/ATen/ops/concatenate_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9809880Z copying torch/include/ATen/ops/view_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9811280Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9812660Z copying torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9813830Z copying torch/include/ATen/ops/linalg_ldl_factor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9815350Z copying torch/include/ATen/ops/glu_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9816410Z copying torch/include/ATen/ops/is_inference_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9817740Z copying torch/include/ATen/ops/special_i1_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9819200Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9820390Z copying torch/include/ATen/ops/hstack_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9821840Z copying torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9823040Z copying torch/include/ATen/ops/_ctc_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9824480Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9825890Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9827300Z copying torch/include/ATen/ops/miopen_convolution.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9828080Z copying torch/include/ATen/ops/is_nonzero_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9829670Z copying torch/include/ATen/ops/slice_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9830990Z copying torch/include/ATen/ops/dot_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9832310Z copying torch/include/ATen/ops/positive_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9833700Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9835240Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9836570Z copying torch/include/ATen/ops/_cast_Float_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9837590Z copying torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9838900Z copying torch/include/ATen/ops/lu_unpack_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9840520Z copying torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9841810Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9843470Z copying torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9844670Z copying torch/include/ATen/ops/narrow_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9846040Z copying torch/include/ATen/ops/atan2_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9847060Z copying torch/include/ATen/ops/rnn_relu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9848440Z copying torch/include/ATen/ops/_mixed_dtypes_linear.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9849810Z copying torch/include/ATen/ops/_nested_get_max_seqlen.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9851110Z copying torch/include/ATen/ops/_linalg_slogdet_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9852330Z copying torch/include/ATen/ops/size.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9853700Z copying torch/include/ATen/ops/scatter_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9855110Z copying torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9856490Z copying torch/include/ATen/ops/bernoulli_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9857370Z copying torch/include/ATen/ops/glu_jvp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9858950Z copying torch/include/ATen/ops/special_i1.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9860270Z copying torch/include/ATen/ops/matrix_exp_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9861550Z copying torch/include/ATen/ops/miopen_rnn_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9863320Z copying torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9864350Z copying torch/include/ATen/ops/log_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9865800Z copying torch/include/ATen/ops/hann_window_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9867130Z copying torch/include/ATen/ops/rrelu_with_noise.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9868390Z copying torch/include/ATen/ops/miopen_convolution_add_relu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9869860Z copying torch/include/ATen/ops/atan_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9871340Z copying torch/include/ATen/ops/coalesce_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9872770Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9874080Z copying torch/include/ATen/ops/where_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9875560Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9877130Z copying torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9878650Z copying torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9880020Z copying torch/include/ATen/ops/unfold_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9881560Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9883120Z copying torch/include/ATen/ops/reflection_pad3d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9884480Z copying torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9886290Z copying torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9887950Z copying torch/include/ATen/ops/linalg_lu_factor_ex_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9889370Z copying torch/include/ATen/ops/_linalg_svd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9890840Z copying torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9892330Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9893620Z copying torch/include/ATen/ops/arctan_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9894970Z copying torch/include/ATen/ops/_efficient_attention_forward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9896190Z copying torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9897430Z copying torch/include/ATen/ops/view_as_real_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9898790Z copying torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9900020Z copying torch/include/ATen/ops/neg_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9901470Z copying torch/include/ATen/ops/argmax_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9902800Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9903870Z copying torch/include/ATen/ops/erfinv_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9905510Z copying torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9906760Z copying torch/include/ATen/ops/chain_matmul.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9907730Z copying torch/include/ATen/ops/sign_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9909550Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9910910Z copying torch/include/ATen/ops/affine_grid_generator_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9912320Z copying torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9913670Z copying torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9914970Z copying torch/include/ATen/ops/vdot_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9916250Z copying torch/include/ATen/ops/sparse_resize.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9917540Z copying torch/include/ATen/ops/_foreach_abs_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9918970Z copying torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9920360Z copying torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9921670Z copying torch/include/ATen/ops/abs_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9923070Z copying torch/include/ATen/ops/col_indices_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9924310Z copying torch/include/ATen/ops/logical_xor_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9925580Z copying torch/include/ATen/ops/native_group_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9926930Z copying torch/include/ATen/ops/_fft_c2c_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9928100Z copying torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9929800Z copying torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9930670Z copying torch/include/ATen/ops/cat_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9932360Z copying torch/include/ATen/ops/conj_physical_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9933570Z copying torch/include/ATen/ops/argmin.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9934720Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9936310Z copying torch/include/ATen/ops/adaptive_max_pool2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9937520Z copying torch/include/ATen/ops/logspace_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9938870Z copying torch/include/ATen/ops/avg_pool2d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9940340Z copying torch/include/ATen/ops/is_same_size_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9941440Z copying torch/include/ATen/ops/igammac_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9942740Z copying torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9944290Z copying torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9945550Z copying torch/include/ATen/ops/_cast_Double_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9946850Z copying torch/include/ATen/ops/prod_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9948190Z copying torch/include/ATen/ops/ceil_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9949660Z copying torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9951090Z copying torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9952330Z copying torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9953760Z copying torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9955230Z copying torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9956600Z copying torch/include/ATen/ops/and_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9958080Z copying torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9958830Z copying torch/include/ATen/ops/batch_norm_backward_reduce_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9960580Z copying torch/include/ATen/ops/as_strided_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9962000Z copying torch/include/ATen/ops/linalg_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9963440Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9964680Z copying torch/include/ATen/ops/sqrt_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9965790Z copying torch/include/ATen/ops/nan_to_num_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9967330Z copying torch/include/ATen/ops/vstack_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9968670Z copying torch/include/ATen/ops/fft_rfftn_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9969910Z copying torch/include/ATen/ops/normal_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9971330Z copying torch/include/ATen/ops/_sparse_csr_sum_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9972560Z copying torch/include/ATen/ops/linalg_inv_ex.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9974030Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9975300Z copying torch/include/ATen/ops/leaky_relu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9976760Z copying torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9977810Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9979240Z copying torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9980930Z copying torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9981760Z copying torch/include/ATen/ops/linalg_lu_factor_ex_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9983290Z copying torch/include/ATen/ops/_fused_sgd_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9984790Z copying torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9986490Z copying torch/include/ATen/ops/_linalg_eigh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9987910Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9989210Z copying torch/include/ATen/ops/dequantize.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9990470Z copying torch/include/ATen/ops/_fft_c2c_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9992080Z copying torch/include/ATen/ops/align_to.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9993490Z copying torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9997960Z copying torch/include/ATen/ops/replication_pad3d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9998650Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9999030Z copying torch/include/ATen/ops/acosh_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9999560Z copying torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:52.9999950Z copying torch/include/ATen/ops/_assert_scalar.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0001560Z copying torch/include/ATen/ops/index.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0002830Z copying torch/include/ATen/ops/min_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0004160Z copying torch/include/ATen/ops/glu_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0005670Z copying torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0006970Z copying torch/include/ATen/ops/index_select_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0008230Z copying torch/include/ATen/ops/_mkldnn_reshape_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0009690Z copying torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0010920Z copying torch/include/ATen/ops/std_mean_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0012300Z copying torch/include/ATen/ops/softshrink_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0013540Z copying torch/include/ATen/ops/index_fill_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0014520Z copying torch/include/ATen/ops/repeat.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0016050Z copying torch/include/ATen/ops/_foreach_floor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0017360Z copying torch/include/ATen/ops/_nested_tensor_from_mask_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0018830Z copying torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0020040Z copying torch/include/ATen/ops/embedding_sparse_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0021420Z copying torch/include/ATen/ops/dropout_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0022720Z copying torch/include/ATen/ops/matmul.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0023690Z copying torch/include/ATen/ops/floor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0025180Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0026500Z copying torch/include/ATen/ops/_unsafe_view_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0028220Z copying torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0029100Z copying torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0030690Z copying torch/include/ATen/ops/_test_check_tensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0032070Z copying torch/include/ATen/ops/rot90_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0033390Z copying torch/include/ATen/ops/signbit_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0034620Z copying torch/include/ATen/ops/reciprocal_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0036090Z copying torch/include/ATen/ops/clamp_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0036900Z copying torch/include/ATen/ops/selu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0038620Z copying torch/include/ATen/ops/reflection_pad1d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0039960Z copying torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0041350Z copying torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0042650Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0044020Z copying torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0045300Z copying torch/include/ATen/ops/special_spherical_bessel_j0_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0046560Z copying torch/include/ATen/ops/minimum_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0048020Z copying torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0049200Z copying torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0050600Z copying torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0052000Z copying torch/include/ATen/ops/values_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0053220Z copying torch/include/ATen/ops/col2im_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0054510Z copying torch/include/ATen/ops/ge_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0055980Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0057100Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0058590Z copying torch/include/ATen/ops/cosh_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0059940Z copying torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0061320Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0062380Z copying torch/include/ATen/ops/hardtanh_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0064030Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0065390Z copying torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0066320Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0068000Z copying torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0069080Z copying torch/include/ATen/ops/atan2_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0070570Z copying torch/include/ATen/ops/sub_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0071860Z copying torch/include/ATen/ops/view_as_real_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0073380Z copying torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0074740Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0075930Z copying torch/include/ATen/ops/glu_jvp_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0077210Z copying torch/include/ATen/ops/_sobol_engine_scramble.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0078510Z copying torch/include/ATen/ops/mish_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0080520Z copying torch/include/ATen/ops/fft_rfftfreq_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0081600Z copying torch/include/ATen/ops/elu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0083190Z copying torch/include/ATen/ops/nanmean_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0084590Z copying torch/include/ATen/ops/miopen_batch_norm_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0085780Z copying torch/include/ATen/ops/linalg_cross_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0087160Z copying torch/include/ATen/ops/_fused_dropout.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0088610Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0089920Z copying torch/include/ATen/ops/addbmm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0091440Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0092630Z copying torch/include/ATen/ops/gt_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0094330Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0095140Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0096610Z copying torch/include/ATen/ops/miopen_rnn_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0097930Z copying torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0099380Z copying torch/include/ATen/ops/detach_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0100820Z copying torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0102210Z copying torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0103690Z copying torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0104660Z copying torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0106300Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0107280Z copying torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0108820Z copying torch/include/ATen/ops/conv_depthwise3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0110040Z copying torch/include/ATen/ops/norm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0111360Z copying torch/include/ATen/ops/masked_select_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0112930Z copying torch/include/ATen/ops/exponential_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0114170Z copying torch/include/ATen/ops/special_i0_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0115680Z copying torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0117040Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0118170Z copying torch/include/ATen/ops/_autocast_to_full_precision_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0119490Z copying torch/include/ATen/ops/erfinv_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0120750Z copying torch/include/ATen/ops/lcm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0122180Z copying torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0123160Z copying torch/include/ATen/ops/upsample_nearest2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0124760Z copying torch/include/ATen/ops/cross_entropy_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0126110Z copying torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0127010Z copying torch/include/ATen/ops/unsqueeze_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0128770Z copying torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0130120Z copying torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0131080Z copying torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0132720Z copying torch/include/ATen/ops/linalg_cross_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0134020Z copying torch/include/ATen/ops/gelu_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0135120Z copying torch/include/ATen/ops/_weight_int8pack_mm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0136290Z copying torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0137780Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0138970Z copying torch/include/ATen/ops/permute.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0140390Z copying torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0141770Z copying torch/include/ATen/ops/_upsample_nearest_exact1d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0143130Z copying torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0144070Z copying torch/include/ATen/ops/_sparse_semi_structured_linear.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0145650Z copying torch/include/ATen/ops/native_group_norm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0146960Z copying torch/include/ATen/ops/split_with_sizes_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0148090Z copying torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0149710Z copying torch/include/ATen/ops/_functional_assert_scalar_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0150960Z copying torch/include/ATen/ops/mse_loss_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0152540Z copying torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0153380Z copying torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0154740Z copying torch/include/ATen/ops/roll.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0156350Z copying torch/include/ATen/ops/linalg_svdvals_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0157490Z copying torch/include/ATen/ops/orgqr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0158860Z copying torch/include/ATen/ops/sigmoid_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0160070Z copying torch/include/ATen/ops/conv_transpose2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0161720Z copying torch/include/ATen/ops/layer_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0163270Z copying torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0164320Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0165680Z copying torch/include/ATen/ops/std_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0167220Z copying torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0168470Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0169690Z copying torch/include/ATen/ops/take.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0170810Z copying torch/include/ATen/ops/igammac_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0172370Z copying torch/include/ATen/ops/isin_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0173680Z copying torch/include/ATen/ops/record_stream.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0175020Z copying torch/include/ATen/ops/resize_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0176430Z copying torch/include/ATen/ops/bitwise_and_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0177730Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0179290Z copying torch/include/ATen/ops/native_group_norm_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0180610Z copying torch/include/ATen/ops/view_as_complex_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0181840Z copying torch/include/ATen/ops/fill_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0183290Z copying torch/include/ATen/ops/linear_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0184490Z copying torch/include/ATen/ops/isinf_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0185580Z copying torch/include/ATen/ops/expand_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0186990Z copying torch/include/ATen/ops/_batch_norm_with_update_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0188540Z copying torch/include/ATen/ops/_nested_get_min_seqlen_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0189920Z copying torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0191400Z copying torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0192200Z copying torch/include/ATen/ops/native_dropout_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0193690Z copying torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0195130Z copying torch/include/ATen/ops/multinomial.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0196450Z copying torch/include/ATen/ops/alias_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0197760Z copying torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0199070Z copying torch/include/ATen/ops/allclose_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0200480Z copying torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0201690Z copying torch/include/ATen/ops/nuclear_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0203240Z copying torch/include/ATen/ops/_slow_conv2d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0204020Z copying torch/include/ATen/ops/multilabel_margin_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0205590Z copying torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0206960Z copying torch/include/ATen/ops/pairwise_distance_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0211630Z copying torch/include/ATen/ops/broadcast_to_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0212470Z copying torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0212860Z copying torch/include/ATen/ops/_nested_get_lengths_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0213570Z copying torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0213930Z copying torch/include/ATen/ops/_foreach_log.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0214630Z copying torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0216220Z copying torch/include/ATen/ops/nextafter_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0217500Z copying torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0218870Z copying torch/include/ATen/ops/_aminmax.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0220160Z copying torch/include/ATen/ops/complex_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0221490Z copying torch/include/ATen/ops/hardswish_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0222700Z copying torch/include/ATen/ops/digamma.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0224010Z copying torch/include/ATen/ops/mm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0225450Z copying torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0226700Z copying torch/include/ATen/ops/empty_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0228140Z copying torch/include/ATen/ops/triangular_solve_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0229500Z copying torch/include/ATen/ops/is_pinned_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0230690Z copying torch/include/ATen/ops/_pdist_forward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0231980Z copying torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0233390Z copying torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0234680Z copying torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0235950Z copying torch/include/ATen/ops/adaptive_avg_pool2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0237180Z copying torch/include/ATen/ops/bitwise_or_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0238630Z copying torch/include/ATen/ops/geometric_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0239930Z copying torch/include/ATen/ops/slow_conv_transpose2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0241410Z copying torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0242710Z copying torch/include/ATen/ops/cumprod_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0244150Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0245640Z copying torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0246680Z copying torch/include/ATen/ops/ldexp_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0248090Z copying torch/include/ATen/ops/arccosh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0249030Z copying torch/include/ATen/ops/linalg_matrix_rank.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0250920Z copying torch/include/ATen/ops/_copy_from_and_resize_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0252280Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0253570Z copying torch/include/ATen/ops/all_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0254860Z copying torch/include/ATen/ops/linalg_matrix_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0256240Z copying torch/include/ATen/ops/is_set_to_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0257640Z copying torch/include/ATen/ops/bitwise_left_shift_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0258880Z copying torch/include/ATen/ops/randn_like_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0260080Z copying torch/include/ATen/ops/rnn_relu_cell.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0261390Z copying torch/include/ATen/ops/max_pool2d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0262840Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0264170Z copying torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0265180Z copying torch/include/ATen/ops/_pack_padded_sequence_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0266410Z copying torch/include/ATen/ops/nonzero_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0268030Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0269200Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0270640Z copying torch/include/ATen/ops/mse_loss_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0272060Z copying torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0273390Z copying torch/include/ATen/ops/eye_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0274600Z copying torch/include/ATen/ops/special_exp2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0275800Z copying torch/include/ATen/ops/_fused_adamw.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0277380Z copying torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0278410Z copying torch/include/ATen/ops/grid_sampler_3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0279900Z copying torch/include/ATen/ops/index_copy_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0281190Z copying torch/include/ATen/ops/frac_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0282260Z copying torch/include/ATen/ops/gelu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0283790Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0285300Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0286480Z copying torch/include/ATen/ops/_pdist_forward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0287490Z copying torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0289020Z copying torch/include/ATen/ops/broadcast_tensors.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0290060Z copying torch/include/ATen/ops/slow_conv3d_forward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0291670Z copying torch/include/ATen/ops/lt_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0293130Z copying torch/include/ATen/ops/_chunk_cat.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0294810Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0296080Z copying torch/include/ATen/ops/is_distributed_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0297740Z copying torch/include/ATen/ops/nll_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0299360Z copying torch/include/ATen/ops/_masked_softmax_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0300630Z copying torch/include/ATen/ops/fft_irfftn_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0302280Z copying torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0303650Z copying torch/include/ATen/ops/slice_scatter_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0305020Z copying torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0306400Z copying torch/include/ATen/ops/fft_fftn_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0307820Z copying torch/include/ATen/ops/_fused_adagrad.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0309170Z copying torch/include/ATen/ops/all_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0310390Z copying torch/include/ATen/ops/quantized_gru_cell.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0311420Z copying torch/include/ATen/ops/eye_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0312960Z copying torch/include/ATen/ops/hypot_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0314380Z copying torch/include/ATen/ops/sqrt.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0315980Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0317310Z copying torch/include/ATen/ops/set_data_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0318680Z copying torch/include/ATen/ops/linalg_vecdot_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0319900Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0321230Z copying torch/include/ATen/ops/acosh_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0322610Z copying torch/include/ATen/ops/_convolution_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0323920Z copying torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0324840Z copying torch/include/ATen/ops/sparse_csr_tensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0326380Z copying torch/include/ATen/ops/_foreach_sinh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0327990Z copying torch/include/ATen/ops/moveaxis_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0329220Z copying torch/include/ATen/ops/positive.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0330490Z copying torch/include/ATen/ops/sum_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0331810Z copying torch/include/ATen/ops/asin_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0333400Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0334550Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0335750Z copying torch/include/ATen/ops/new_empty.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0337190Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0338640Z copying torch/include/ATen/ops/any_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0340060Z copying torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0341390Z copying torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0342620Z copying torch/include/ATen/ops/_propagate_xla_data_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0343920Z copying torch/include/ATen/ops/cudnn_convolution_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0345150Z copying torch/include/ATen/ops/_log_softmax_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0346430Z copying torch/include/ATen/ops/_foreach_round_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0347650Z copying torch/include/ATen/ops/_conj.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0349040Z copying torch/include/ATen/ops/is_coalesced_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0350230Z copying torch/include/ATen/ops/flatten.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0351530Z copying torch/include/ATen/ops/_to_dense_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0352810Z copying torch/include/ATen/ops/bitwise_or_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0354150Z copying torch/include/ATen/ops/bincount_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0355340Z copying torch/include/ATen/ops/dot_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0356760Z copying torch/include/ATen/ops/sparse_resize_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0358630Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0359240Z copying torch/include/ATen/ops/linspace_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0360810Z copying torch/include/ATen/ops/lerp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0362080Z copying torch/include/ATen/ops/nanmedian.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0363630Z copying torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0364460Z copying torch/include/ATen/ops/diagonal_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0365960Z copying torch/include/ATen/ops/sgn_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0367340Z copying torch/include/ATen/ops/_gather_sparse_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0368660Z copying torch/include/ATen/ops/topk_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0369770Z copying torch/include/ATen/ops/flip_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0371400Z copying torch/include/ATen/ops/any_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0372290Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0374120Z copying torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0374890Z copying torch/include/ATen/ops/special_entr_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0376310Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0377650Z copying torch/include/ATen/ops/where_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0379030Z copying torch/include/ATen/ops/_sparse_mm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0380300Z copying torch/include/ATen/ops/igamma.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0381530Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0382990Z copying torch/include/ATen/ops/_choose_qparams_per_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0384420Z copying torch/include/ATen/ops/fft_ihfft2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0385600Z copying torch/include/ATen/ops/kl_div.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0386930Z copying torch/include/ATen/ops/special_legendre_polynomial_p_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0388490Z copying torch/include/ATen/ops/_mps_convolution.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0389860Z copying torch/include/ATen/ops/hardsigmoid_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0391080Z copying torch/include/ATen/ops/values_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0392750Z copying torch/include/ATen/ops/resize_as_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0393520Z copying torch/include/ATen/ops/bucketize_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0395190Z copying torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0396560Z copying torch/include/ATen/ops/_linalg_svd_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0398030Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0399230Z copying torch/include/ATen/ops/argmin_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0400540Z copying torch/include/ATen/ops/any_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0401540Z copying torch/include/ATen/ops/vsplit_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0402840Z copying torch/include/ATen/ops/_softmax_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0404500Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0405480Z copying torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0407130Z copying torch/include/ATen/ops/_weight_int4pack_mm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0408490Z copying torch/include/ATen/ops/_mps_convolution_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0409980Z copying torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0411140Z copying torch/include/ATen/ops/value_selecting_reduction_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0412380Z copying torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0413750Z copying torch/include/ATen/ops/special_log1p_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0415330Z copying torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0416880Z copying torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0418070Z copying torch/include/ATen/ops/put_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0419230Z copying torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0420660Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0425550Z copying torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0426130Z copying torch/include/ATen/ops/glu_jvp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0426510Z copying torch/include/ATen/ops/atan_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0426890Z copying torch/include/ATen/ops/acos_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0427270Z copying torch/include/ATen/ops/log10_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0428330Z copying torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0430020Z copying torch/include/ATen/ops/_mixed_dtypes_linear_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0431420Z copying torch/include/ATen/ops/mkldnn_max_pool3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0432170Z copying torch/include/ATen/ops/binomial.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0433920Z copying torch/include/ATen/ops/quantized_max_pool1d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0434840Z copying torch/include/ATen/ops/linalg_qr_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0436470Z copying torch/include/ATen/ops/ctc_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0437710Z copying torch/include/ATen/ops/_propagate_xla_data_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0439060Z copying torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0440540Z copying torch/include/ATen/ops/index_add_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0441270Z copying torch/include/ATen/ops/norm_except_dim_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0442880Z copying torch/include/ATen/ops/log_normal_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0444180Z copying torch/include/ATen/ops/miopen_convolution_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0445500Z copying torch/include/ATen/ops/max_pool3d_with_indices_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0446870Z copying torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0447970Z copying torch/include/ATen/ops/transpose_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0449440Z copying torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0450470Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0451960Z copying torch/include/ATen/ops/smooth_l1_loss_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0453330Z copying torch/include/ATen/ops/cholesky_solve_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0454690Z copying torch/include/ATen/ops/embedding_renorm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0456030Z copying torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0457240Z copying torch/include/ATen/ops/hardsigmoid.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0458680Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0459550Z copying torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0461010Z copying torch/include/ATen/ops/remainder_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0462420Z copying torch/include/ATen/ops/_weight_norm_interface_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0463800Z copying torch/include/ATen/ops/deg2rad.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0464660Z copying torch/include/ATen/ops/glu_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0466370Z copying torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0467810Z copying torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0468910Z copying torch/include/ATen/ops/zero_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0470370Z copying torch/include/ATen/ops/is_complex_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0471730Z copying torch/include/ATen/ops/floor_divide.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0473120Z copying torch/include/ATen/ops/soft_margin_loss_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0474360Z copying torch/include/ATen/ops/addr_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0475520Z copying torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0477110Z copying torch/include/ATen/ops/upsample_bicubic2d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0478330Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0479860Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0480620Z copying torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0482160Z copying torch/include/ATen/ops/corrcoef.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0483490Z copying torch/include/ATen/ops/linalg_tensorsolve_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0485040Z copying torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0485780Z copying torch/include/ATen/ops/special_gammaln_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0487480Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0488650Z copying torch/include/ATen/ops/erfc_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0489790Z copying torch/include/ATen/ops/ccol_indices_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0491450Z copying torch/include/ATen/ops/reflection_pad1d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0492530Z copying torch/include/ATen/ops/_foreach_asin_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0493810Z copying torch/include/ATen/ops/_fused_adam.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0495250Z copying torch/include/ATen/ops/zeros_like.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0496870Z copying torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0498190Z copying torch/include/ATen/ops/reshape_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0499030Z copying torch/include/ATen/ops/_foreach_cosh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0500690Z copying torch/include/ATen/ops/lt_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0502040Z copying torch/include/ATen/ops/slow_conv_transpose3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0503600Z copying torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0504770Z copying torch/include/ATen/ops/gt_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0506170Z copying torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0507270Z copying torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0508750Z copying torch/include/ATen/ops/replication_pad3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0510150Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0511580Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0512370Z copying torch/include/ATen/ops/unbind.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0513820Z copying torch/include/ATen/ops/scatter_reduce_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0515260Z copying torch/include/ATen/ops/unique_dim_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0516630Z copying torch/include/ATen/ops/triangular_solve_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0518000Z copying torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0519270Z copying torch/include/ATen/ops/baddbmm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0520530Z copying torch/include/ATen/ops/linear_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0522070Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0522990Z copying torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0524430Z copying torch/include/ATen/ops/geometric_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0525800Z copying torch/include/ATen/ops/multilabel_margin_loss_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0527220Z copying torch/include/ATen/ops/lstm_cell_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0528140Z copying torch/include/ATen/ops/_foreach_cos_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0529670Z copying torch/include/ATen/ops/max_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0531210Z copying torch/include/ATen/ops/outer_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0532600Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0533600Z copying torch/include/ATen/ops/vdot_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0535170Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0536450Z copying torch/include/ATen/ops/topk.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0537720Z copying torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0539550Z copying torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0541020Z copying torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0542440Z copying torch/include/ATen/ops/_cast_Short_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0543940Z copying torch/include/ATen/ops/batch_norm_gather_stats_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0545560Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0547070Z copying torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0548270Z copying torch/include/ATen/ops/batch_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0549760Z copying torch/include/ATen/ops/_to_sparse_bsc_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0551400Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0552980Z copying torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0554410Z copying torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0555680Z copying torch/include/ATen/ops/empty_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0557190Z copying torch/include/ATen/ops/q_scale_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0558640Z copying torch/include/ATen/ops/lgamma_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0560030Z copying torch/include/ATen/ops/stft_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0561590Z copying torch/include/ATen/ops/_sparse_mask_projection.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0563020Z copying torch/include/ATen/ops/aminmax_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0564320Z copying torch/include/ATen/ops/_trilinear_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0565760Z copying torch/include/ATen/ops/mse_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0567420Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0568800Z copying torch/include/ATen/ops/affine_grid_generator_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0570110Z copying torch/include/ATen/ops/sinc_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0571470Z copying torch/include/ATen/ops/_pin_memory_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0573100Z copying torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0574410Z copying torch/include/ATen/ops/unique_dim_consecutive_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0575760Z copying torch/include/ATen/ops/nll_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0577210Z copying torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0578950Z copying torch/include/ATen/ops/quantize_per_tensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0580390Z copying torch/include/ATen/ops/avg_pool2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0581690Z copying torch/include/ATen/ops/unsqueeze_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0583220Z copying torch/include/ATen/ops/random_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0584740Z copying torch/include/ATen/ops/repeat_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0586190Z copying torch/include/ATen/ops/fractional_max_pool2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0587650Z copying torch/include/ATen/ops/linalg_matrix_rank_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0589250Z copying torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0590550Z copying torch/include/ATen/ops/output_nr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0591990Z copying torch/include/ATen/ops/slow_conv3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0593260Z copying torch/include/ATen/ops/not_equal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0594660Z copying torch/include/ATen/ops/cholesky_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0596180Z copying torch/include/ATen/ops/meshgrid.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0597450Z copying torch/include/ATen/ops/_softmax_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0599050Z copying torch/include/ATen/ops/sym_storage_offset_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0600720Z copying torch/include/ATen/ops/isneginf_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0602150Z copying torch/include/ATen/ops/hardsigmoid_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0603420Z copying torch/include/ATen/ops/unsqueeze_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0604740Z copying torch/include/ATen/ops/rand_like.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0606320Z copying torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0607500Z copying torch/include/ATen/ops/mse_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0608970Z copying torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0610690Z copying torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0612060Z copying torch/include/ATen/ops/grid_sampler_2d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0613620Z copying torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0614830Z copying torch/include/ATen/ops/float_power_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0616270Z copying torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0618130Z copying torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0619550Z copying torch/include/ATen/ops/slow_conv_dilated3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0621240Z copying torch/include/ATen/ops/maximum_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0623080Z copying torch/include/ATen/ops/adaptive_max_pool3d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0624390Z copying torch/include/ATen/ops/multi_margin_loss_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0625820Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0627390Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0628970Z copying torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0630350Z copying torch/include/ATen/ops/cudnn_batch_norm_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0631710Z copying torch/include/ATen/ops/cosh_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0633340Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0634790Z copying torch/include/ATen/ops/asinh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0636140Z copying torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0637450Z copying torch/include/ATen/ops/tanh_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0639100Z copying torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0640520Z copying torch/include/ATen/ops/_masked_scale.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0642000Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0646670Z copying torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0647180Z copying torch/include/ATen/ops/diff_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0647560Z copying torch/include/ATen/ops/fmax_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0648050Z copying torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0649360Z copying torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0650570Z copying torch/include/ATen/ops/eye_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0651910Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0653160Z copying torch/include/ATen/ops/reflection_pad2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0654370Z copying torch/include/ATen/ops/ceil_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0655900Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0657230Z copying torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0658550Z copying torch/include/ATen/ops/sym_storage_offset.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0659910Z copying torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0661300Z copying torch/include/ATen/ops/fmax_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0662630Z copying torch/include/ATen/ops/pixel_unshuffle_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0663940Z copying torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0665170Z copying torch/include/ATen/ops/_log_softmax_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0666460Z copying torch/include/ATen/ops/_masked_softmax_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0667910Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0669030Z copying torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0670400Z copying torch/include/ATen/ops/and.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0672110Z copying torch/include/ATen/ops/slow_conv_dilated2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0672640Z copying torch/include/ATen/ops/_sparse_csr_sum_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0674120Z copying torch/include/ATen/ops/replication_pad3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0675740Z copying torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0677030Z copying torch/include/ATen/ops/gru_cell_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0678050Z copying torch/include/ATen/ops/logaddexp2_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0679390Z copying torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0681060Z copying torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0681980Z copying torch/include/ATen/ops/searchsorted_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0683680Z copying torch/include/ATen/ops/addmv_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0685030Z copying torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0686090Z copying torch/include/ATen/ops/masked_scatter_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0687580Z copying torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0688900Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0690240Z copying torch/include/ATen/ops/clamp_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0691750Z copying torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0693000Z copying torch/include/ATen/ops/hann_window.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0694020Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0695630Z copying torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0696830Z copying torch/include/ATen/ops/log1p_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0698090Z copying torch/include/ATen/ops/_cast_Int.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0699410Z copying torch/include/ATen/ops/nextafter_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0701160Z copying torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0701740Z copying torch/include/ATen/ops/erf_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0703300Z copying torch/include/ATen/ops/as_strided_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0704730Z copying torch/include/ATen/ops/_flash_attention_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0705740Z copying torch/include/ATen/ops/mkldnn_rnn_layer_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0707750Z copying torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0709090Z copying torch/include/ATen/ops/isneginf_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0710000Z copying torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0711740Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0712560Z copying torch/include/ATen/ops/concatenate_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0714330Z copying torch/include/ATen/ops/bitwise_or_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0715680Z copying torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0717170Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0718620Z copying torch/include/ATen/ops/clamp_min_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0720190Z copying torch/include/ATen/ops/argmin_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0721300Z copying torch/include/ATen/ops/_index_put_impl_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0723110Z copying torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0724610Z copying torch/include/ATen/ops/erfc_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0726130Z copying torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0726970Z copying torch/include/ATen/ops/lstm_mps_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0728560Z copying torch/include/ATen/ops/range.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0729550Z copying torch/include/ATen/ops/select_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0731180Z copying torch/include/ATen/ops/_foreach_erf_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0732130Z copying torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0733800Z copying torch/include/ATen/ops/sparse_resize_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0735150Z copying torch/include/ATen/ops/mkldnn_linear_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0736340Z copying torch/include/ATen/ops/sinc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0737660Z copying torch/include/ATen/ops/_conj_physical.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0738880Z copying torch/include/ATen/ops/square_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0740230Z copying torch/include/ATen/ops/copysign_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0741220Z copying torch/include/ATen/ops/amin_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0742930Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0744270Z copying torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0745140Z copying torch/include/ATen/ops/margin_ranking_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0746730Z copying torch/include/ATen/ops/special_psi_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0747950Z copying torch/include/ATen/ops/special_ndtri_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0748850Z copying torch/include/ATen/ops/to_sparse.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0750230Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0751590Z copying torch/include/ATen/ops/_foreach_erfc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0752890Z copying torch/include/ATen/ops/selu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0754280Z copying torch/include/ATen/ops/_cdist_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0755620Z copying torch/include/ATen/ops/log_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0756960Z copying torch/include/ATen/ops/range_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0758190Z copying torch/include/ATen/ops/aminmax_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0759810Z copying torch/include/ATen/ops/linalg_solve_triangular.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0760480Z copying torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0761930Z copying torch/include/ATen/ops/cov.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0763400Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0764930Z copying torch/include/ATen/ops/relu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0765790Z copying torch/include/ATen/ops/unique_dim_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0767320Z copying torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0768230Z copying torch/include/ATen/ops/min.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0769520Z copying torch/include/ATen/ops/chain_matmul_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0771050Z copying torch/include/ATen/ops/tile_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0772240Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0773640Z copying torch/include/ATen/ops/_foreach_reciprocal_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0774960Z copying torch/include/ATen/ops/hardshrink_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0776010Z copying torch/include/ATen/ops/unique_dim_consecutive.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0777360Z copying torch/include/ATen/ops/is_nonzero_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0778930Z copying torch/include/ATen/ops/_prelu_kernel_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0779960Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0781600Z copying torch/include/ATen/ops/kthvalue_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0782900Z copying torch/include/ATen/ops/linspace_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0783890Z copying torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0785330Z copying torch/include/ATen/ops/slice_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0786770Z copying torch/include/ATen/ops/_test_parallel_materialize.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0788220Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0789720Z copying torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0790930Z copying torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0792460Z copying torch/include/ATen/ops/int_repr_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0793360Z copying torch/include/ATen/ops/ne_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0794970Z copying torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0796280Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0797570Z copying torch/include/ATen/ops/upsample_nearest2d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0798770Z copying torch/include/ATen/ops/_foreach_mul.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0800250Z copying torch/include/ATen/ops/upsample_linear1d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0801650Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0803090Z copying torch/include/ATen/ops/_int_mm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0804370Z copying torch/include/ATen/ops/upsample_linear1d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0805340Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0806860Z copying torch/include/ATen/ops/fill.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0808550Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0809970Z copying torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0811470Z copying torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0812810Z copying torch/include/ATen/ops/log1p_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0813920Z copying torch/include/ATen/ops/triplet_margin_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0815310Z copying torch/include/ATen/ops/lcm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0816630Z copying torch/include/ATen/ops/argwhere_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0818050Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0819130Z copying torch/include/ATen/ops/_foreach_frac.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0820460Z copying torch/include/ATen/ops/orgqr_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0821830Z copying torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0823140Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0824400Z copying torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0825820Z copying torch/include/ATen/ops/sgn_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0827070Z copying torch/include/ATen/ops/nanmedian_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0828310Z copying torch/include/ATen/ops/crow_indices_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0829650Z copying torch/include/ATen/ops/fft_ihfft_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0830850Z copying torch/include/ATen/ops/put_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0832270Z copying torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0833220Z copying torch/include/ATen/ops/std_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0834890Z copying torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0836290Z copying torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0837140Z copying torch/include/ATen/ops/lerp_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0838670Z copying torch/include/ATen/ops/clamp_max.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0839900Z copying torch/include/ATen/ops/_int_mm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0841360Z copying torch/include/ATen/ops/var_mean_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0842690Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0843940Z copying torch/include/ATen/ops/arctan_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0845150Z copying torch/include/ATen/ops/div_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0846480Z copying torch/include/ATen/ops/round_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0848120Z copying torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0849030Z copying torch/include/ATen/ops/hypot_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0850590Z copying torch/include/ATen/ops/nll_loss2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0851890Z copying torch/include/ATen/ops/to_mkldnn_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0853070Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0854570Z copying torch/include/ATen/ops/empty_permuted_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0858790Z copying torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0859490Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0860270Z copying torch/include/ATen/ops/lt_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0860720Z copying torch/include/ATen/ops/linalg_householder_product_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0861550Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0862110Z copying torch/include/ATen/ops/cudnn_grid_sampler_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0863830Z copying torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0865180Z copying torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0866430Z copying torch/include/ATen/ops/slice_scatter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0867460Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0869060Z copying torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0870280Z copying torch/include/ATen/ops/_nnz.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0871680Z copying torch/include/ATen/ops/grid_sampler_2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0873200Z copying torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0874060Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0875420Z copying torch/include/ATen/ops/sparse_compressed_tensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0877010Z copying torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0877940Z copying torch/include/ATen/ops/hamming_window_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0879470Z copying torch/include/ATen/ops/nll_loss_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0880780Z copying torch/include/ATen/ops/zeros_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0882410Z copying torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0883630Z copying torch/include/ATen/ops/special_modified_bessel_k0_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0884810Z copying torch/include/ATen/ops/_convolution.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0886480Z copying torch/include/ATen/ops/special_bessel_j1.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0887910Z copying torch/include/ATen/ops/conv3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0889390Z copying torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0890360Z copying torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0891830Z copying torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0893100Z copying torch/include/ATen/ops/chunk_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0894600Z copying torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0895860Z copying torch/include/ATen/ops/upsample_nearest2d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0897400Z copying torch/include/ATen/ops/special_modified_bessel_k1_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0898120Z copying torch/include/ATen/ops/sgn_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0899760Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0901210Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0902440Z copying torch/include/ATen/ops/split_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0903600Z copying torch/include/ATen/ops/topk_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0905040Z copying torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0905890Z copying torch/include/ATen/ops/sym_numel_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0907520Z copying torch/include/ATen/ops/leaky_relu_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0908810Z copying torch/include/ATen/ops/mish_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0909890Z copying torch/include/ATen/ops/_values_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0911370Z copying torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0912990Z copying torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0913870Z copying torch/include/ATen/ops/bitwise_or_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0915340Z copying torch/include/ATen/ops/sym_numel_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0916910Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0917730Z copying torch/include/ATen/ops/log_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0919330Z copying torch/include/ATen/ops/_to_sparse.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0920750Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0921830Z copying torch/include/ATen/ops/_logcumsumexp_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0923300Z copying torch/include/ATen/ops/pow_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0924520Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0925820Z copying torch/include/ATen/ops/_foreach_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0926880Z copying torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0928510Z copying torch/include/ATen/ops/linalg_solve_triangular_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0929840Z copying torch/include/ATen/ops/conj_physical_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0930580Z copying torch/include/ATen/ops/silu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0932170Z copying torch/include/ATen/ops/asin.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0933450Z copying torch/include/ATen/ops/multinomial_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0934880Z copying torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0936160Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0937480Z copying torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0938420Z copying torch/include/ATen/ops/sspaddmm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0939900Z copying torch/include/ATen/ops/maximum_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0941180Z copying torch/include/ATen/ops/_batch_norm_impl_index.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0942680Z copying torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0943990Z copying torch/include/ATen/ops/linalg_eigh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0945320Z copying torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0946410Z copying torch/include/ATen/ops/quantized_max_pool3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0948070Z copying torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0949670Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0950630Z copying torch/include/ATen/ops/_cummax_helper_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0952130Z copying torch/include/ATen/ops/special_i1_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0953520Z copying torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0954800Z copying torch/include/ATen/ops/sparse_compressed_tensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0955850Z copying torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0957460Z copying torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0958920Z copying torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0960200Z copying torch/include/ATen/ops/_cast_Half.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0961400Z copying torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0963010Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0964280Z copying torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0965560Z copying torch/include/ATen/ops/elu_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0966800Z copying torch/include/ATen/ops/fmax_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0968290Z copying torch/include/ATen/ops/_to_sparse_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0969380Z copying torch/include/ATen/ops/addr_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0971000Z copying torch/include/ATen/ops/threshold_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0972220Z copying torch/include/ATen/ops/not_equal_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0973470Z copying torch/include/ATen/ops/xlogy_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0974730Z copying torch/include/ATen/ops/special_exp2_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0976260Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0977530Z copying torch/include/ATen/ops/special_bessel_j0_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0978590Z copying torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0980170Z copying torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0981490Z copying torch/include/ATen/ops/view_as_complex_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0982750Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0984030Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0985380Z copying torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0986310Z copying torch/include/ATen/ops/special_bessel_j1_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0987890Z copying torch/include/ATen/ops/_unsafe_index_put.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0989180Z copying torch/include/ATen/ops/row_indices_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0990070Z copying torch/include/ATen/ops/multiply_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0991890Z copying torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0993060Z copying torch/include/ATen/ops/_dim_arange_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0994090Z copying torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0995600Z copying torch/include/ATen/ops/to_sparse_csc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0996870Z copying torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0998360Z copying torch/include/ATen/ops/upsample_nearest2d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.0999710Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1000660Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1002170Z copying torch/include/ATen/ops/equal_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1003780Z copying torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1004420Z copying torch/include/ATen/ops/xor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1006080Z copying torch/include/ATen/ops/special_softmax.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1007320Z copying torch/include/ATen/ops/scatter_reduce.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1008660Z copying torch/include/ATen/ops/slogdet_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1010130Z copying torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1011510Z copying torch/include/ATen/ops/std_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1012860Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1014120Z copying torch/include/ATen/ops/_foreach_log1p_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1015480Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1016910Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1018330Z copying torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1019220Z copying torch/include/ATen/ops/fractional_max_pool2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1020660Z copying torch/include/ATen/ops/hspmm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1022170Z copying torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1023420Z copying torch/include/ATen/ops/take_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1024770Z copying torch/include/ATen/ops/segment_reduce_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1026270Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1027080Z copying torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1028480Z copying torch/include/ATen/ops/squeeze_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1030000Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1031130Z copying torch/include/ATen/ops/less_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1032670Z copying torch/include/ATen/ops/_shape_as_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1033600Z copying torch/include/ATen/ops/mv_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1035030Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1036530Z copying torch/include/ATen/ops/special_legendre_polynomial_p_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1038130Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1039410Z copying torch/include/ATen/ops/threshold_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1040640Z copying torch/include/ATen/ops/clamp_min_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1042040Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1043430Z copying torch/include/ATen/ops/mkldnn_max_pool3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1044790Z copying torch/include/ATen/ops/_mps_convolution_transpose_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1045630Z copying torch/include/ATen/ops/cat_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1047200Z copying torch/include/ATen/ops/swapdims_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1048880Z copying torch/include/ATen/ops/rrelu_with_noise_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1049470Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1051070Z copying torch/include/ATen/ops/_to_sparse_csc_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1052360Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1053560Z copying torch/include/ATen/ops/rnn_tanh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1055110Z copying torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1055930Z copying torch/include/ATen/ops/special_multigammaln_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1057540Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1058810Z copying torch/include/ATen/ops/amax_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1060260Z copying torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1061460Z copying torch/include/ATen/ops/to_dense_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1062850Z copying torch/include/ATen/ops/reflection_pad3d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1064190Z copying torch/include/ATen/ops/nan_to_num_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1065460Z copying torch/include/ATen/ops/_cummin_helper_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1070090Z copying torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1070800Z copying torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1071250Z copying torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1071600Z copying torch/include/ATen/ops/log10_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1072030Z copying torch/include/ATen/ops/_test_parallel_materialize_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1073460Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1074330Z copying torch/include/ATen/ops/bitwise_left_shift.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1075840Z copying torch/include/ATen/ops/_pad_circular_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1077270Z copying torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1078610Z copying torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1079710Z copying torch/include/ATen/ops/frobenius_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1081130Z copying torch/include/ATen/ops/count_nonzero_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1082340Z copying torch/include/ATen/ops/rsub_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1083620Z copying torch/include/ATen/ops/linalg_qr_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1084920Z copying torch/include/ATen/ops/slow_conv_transpose2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1086340Z copying torch/include/ATen/ops/_linalg_det_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1087580Z copying torch/include/ATen/ops/tanh_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1088860Z copying torch/include/ATen/ops/_foreach_lgamma_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1090140Z copying torch/include/ATen/ops/isin_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1091480Z copying torch/include/ATen/ops/ne_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1092700Z copying torch/include/ATen/ops/_linalg_slogdet_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1094030Z copying torch/include/ATen/ops/multinomial_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1095300Z copying torch/include/ATen/ops/_foreach_max_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1096530Z copying torch/include/ATen/ops/tan_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1098180Z copying torch/include/ATen/ops/multinomial_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1099440Z copying torch/include/ATen/ops/new_empty_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1100720Z copying torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1101990Z copying torch/include/ATen/ops/all_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1103240Z copying torch/include/ATen/ops/rms_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1104560Z copying torch/include/ATen/ops/to_dense_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1106030Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1107500Z copying torch/include/ATen/ops/flip_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1108270Z copying torch/include/ATen/ops/svd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1109760Z copying torch/include/ATen/ops/mm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1111150Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1112530Z copying torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1113810Z copying torch/include/ATen/ops/special_polygamma_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1115420Z copying torch/include/ATen/ops/rshift_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1116660Z copying torch/include/ATen/ops/log2_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1117990Z copying torch/include/ATen/ops/special_i1e_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1119500Z copying torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1120730Z copying torch/include/ATen/ops/squeeze_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1122440Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1123850Z copying torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1125400Z copying torch/include/ATen/ops/is_leaf_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1126680Z copying torch/include/ATen/ops/maximum_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1128220Z copying torch/include/ATen/ops/asinh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1129520Z copying torch/include/ATen/ops/broadcast_to_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1130960Z copying torch/include/ATen/ops/_nested_get_lengths_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1132750Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1133460Z copying torch/include/ATen/ops/tril_indices.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1135050Z copying torch/include/ATen/ops/sqrt_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1136540Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1137840Z copying torch/include/ATen/ops/randint_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1139110Z copying torch/include/ATen/ops/slogdet.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1140690Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1141940Z copying torch/include/ATen/ops/_foreach_erf.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1143210Z copying torch/include/ATen/ops/_functional_assert_scalar.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1144200Z copying torch/include/ATen/ops/_lazy_clone.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1145700Z copying torch/include/ATen/ops/mps_convolution_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1147030Z copying torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1147910Z copying torch/include/ATen/ops/equal_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1149420Z copying torch/include/ATen/ops/empty_quantized_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1150990Z copying torch/include/ATen/ops/special_digamma.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1152220Z copying torch/include/ATen/ops/fractional_max_pool3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1153560Z copying torch/include/ATen/ops/unfold_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1154880Z copying torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1155780Z copying torch/include/ATen/ops/all_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1157300Z copying torch/include/ATen/ops/cross.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1158780Z copying torch/include/ATen/ops/_convolution_double_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1160020Z copying torch/include/ATen/ops/gelu_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1161130Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1162680Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1164060Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1165440Z copying torch/include/ATen/ops/fmin_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1166170Z copying torch/include/ATen/ops/log1p.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1167770Z copying torch/include/ATen/ops/less.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1168890Z copying torch/include/ATen/ops/tensordot.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1170360Z copying torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1171710Z copying torch/include/ATen/ops/_sample_dirichlet_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1173190Z copying torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1174510Z copying torch/include/ATen/ops/log2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1175340Z copying torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1176850Z copying torch/include/ATen/ops/linalg_cholesky_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1178200Z copying torch/include/ATen/ops/div_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1179460Z copying torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1180690Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1182110Z copying torch/include/ATen/ops/nll_loss_forward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1183570Z copying torch/include/ATen/ops/bitwise_not_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1184580Z copying torch/include/ATen/ops/_indices_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1186230Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1187190Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1188850Z copying torch/include/ATen/ops/slow_conv_dilated2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1189950Z copying torch/include/ATen/ops/_foreach_acos_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1191470Z copying torch/include/ATen/ops/gradient_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1192660Z copying torch/include/ATen/ops/conv_transpose1d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1193920Z copying torch/include/ATen/ops/or_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1195240Z copying torch/include/ATen/ops/smooth_l1_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1196610Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1197580Z copying torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1199230Z copying torch/include/ATen/ops/median_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1200560Z copying torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1202000Z copying torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1203350Z copying torch/include/ATen/ops/atleast_3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1204560Z copying torch/include/ATen/ops/_chunk_cat_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1207180Z copying torch/include/ATen/ops/_functional_sym_constrain_range_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1208510Z copying torch/include/ATen/ops/im2col.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1210060Z copying torch/include/ATen/ops/upsample_nearest3d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1211520Z copying torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1212760Z copying torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1214040Z copying torch/include/ATen/ops/_mps_convolution_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1215510Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1216910Z copying torch/include/ATen/ops/retains_grad_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1218460Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1219170Z copying torch/include/ATen/ops/sign_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1220800Z copying torch/include/ATen/ops/empty_like.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1222150Z copying torch/include/ATen/ops/gelu_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1223450Z copying torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1224730Z copying torch/include/ATen/ops/elu_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1225950Z copying torch/include/ATen/ops/output_nr_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1227270Z copying torch/include/ATen/ops/sqrt_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1228110Z copying torch/include/ATen/ops/linalg_lstsq.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1229630Z copying torch/include/ATen/ops/count_nonzero.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1230960Z copying torch/include/ATen/ops/feature_alpha_dropout.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1232330Z copying torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1233590Z copying torch/include/ATen/ops/softplus_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1234670Z copying torch/include/ATen/ops/trunc_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1236410Z copying torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1237260Z copying torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1238790Z copying torch/include/ATen/ops/as_strided_scatter_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1240190Z copying torch/include/ATen/ops/special_i0e_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1241490Z copying torch/include/ATen/ops/norm_except_dim_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1242860Z copying torch/include/ATen/ops/sort_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1244170Z copying torch/include/ATen/ops/logit_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1245340Z copying torch/include/ATen/ops/_stack_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1246230Z copying torch/include/ATen/ops/fft_hfftn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1247960Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1249310Z copying torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1250060Z copying torch/include/ATen/ops/view_as_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1251650Z copying torch/include/ATen/ops/grid_sampler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1252890Z copying torch/include/ATen/ops/linalg_lu_solve.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1254200Z copying torch/include/ATen/ops/divide.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1255710Z copying torch/include/ATen/ops/_unsafe_masked_index.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1257130Z copying torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1258500Z copying torch/include/ATen/ops/is_neg.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1259420Z copying torch/include/ATen/ops/replication_pad2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1260870Z copying torch/include/ATen/ops/_resize_output_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1262240Z copying torch/include/ATen/ops/_fused_adamw_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1263570Z copying torch/include/ATen/ops/slice_inverse_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1264870Z copying torch/include/ATen/ops/hardswish_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1266150Z copying torch/include/ATen/ops/fft_ihfft2_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1267570Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1268920Z copying torch/include/ATen/ops/values_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1270140Z copying torch/include/ATen/ops/feature_dropout.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1271380Z copying torch/include/ATen/ops/resize_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1272500Z copying torch/include/ATen/ops/adaptive_max_pool2d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1273960Z copying torch/include/ATen/ops/gt_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1275440Z copying torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1276750Z copying torch/include/ATen/ops/special_xlog1py_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1277690Z copying torch/include/ATen/ops/linalg_inv_ex_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1279330Z copying torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1283640Z copying torch/include/ATen/ops/tril_indices_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1284200Z copying torch/include/ATen/ops/threshold_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1284680Z copying torch/include/ATen/ops/sparse_bsr_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1285060Z copying torch/include/ATen/ops/max_pool2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1285630Z copying torch/include/ATen/ops/tensor_split_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1287260Z copying torch/include/ATen/ops/diagonal_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1288310Z copying torch/include/ATen/ops/std_mean_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1290030Z copying torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1290990Z copying torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1292520Z copying torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1293860Z copying torch/include/ATen/ops/expand_as.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1295210Z copying torch/include/ATen/ops/adaptive_max_pool2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1296050Z copying torch/include/ATen/ops/le_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1297650Z copying torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1299040Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1299960Z copying torch/include/ATen/ops/hardshrink_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1301460Z copying torch/include/ATen/ops/addmv_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1302740Z copying torch/include/ATen/ops/to_sparse_bsc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1304160Z copying torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1305560Z copying torch/include/ATen/ops/_sobol_engine_scramble_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1307030Z copying torch/include/ATen/ops/slogdet_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1308330Z copying torch/include/ATen/ops/native_dropout_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1309580Z copying torch/include/ATen/ops/hardswish_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1310930Z copying torch/include/ATen/ops/set_data_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1312280Z copying torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1313160Z copying torch/include/ATen/ops/tril_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1314730Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1315990Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1317430Z copying torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1318970Z copying torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1320270Z copying torch/include/ATen/ops/sinh_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1321620Z copying torch/include/ATen/ops/sub_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1322840Z copying torch/include/ATen/ops/glu_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1324080Z copying torch/include/ATen/ops/fmax.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1325190Z copying torch/include/ATen/ops/_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1326700Z copying torch/include/ATen/ops/cudnn_batch_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1327890Z copying torch/include/ATen/ops/lcm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1329280Z copying torch/include/ATen/ops/atan_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1330690Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1331500Z copying torch/include/ATen/ops/_unique2_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1333310Z copying torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1334200Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1335700Z copying torch/include/ATen/ops/new_full_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1337120Z copying torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1338340Z copying torch/include/ATen/ops/logspace.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1339980Z copying torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1341380Z copying torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1342730Z copying torch/include/ATen/ops/to_mkldnn_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1344000Z copying torch/include/ATen/ops/linalg_eigvalsh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1345520Z copying torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1346410Z copying torch/include/ATen/ops/linalg_inv_ex_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1347880Z copying torch/include/ATen/ops/unsqueeze.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1349190Z copying torch/include/ATen/ops/isinf_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1350570Z copying torch/include/ATen/ops/_foreach_max.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1351760Z copying torch/include/ATen/ops/floor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1352840Z copying torch/include/ATen/ops/where_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1354470Z copying torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1355730Z copying torch/include/ATen/ops/special_log_softmax_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1356830Z copying torch/include/ATen/ops/_addmm_activation_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1358170Z copying torch/include/ATen/ops/clamp_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1359790Z copying torch/include/ATen/ops/special_hermite_polynomial_h.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1360690Z copying torch/include/ATen/ops/set_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1362470Z copying torch/include/ATen/ops/bucketize_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1363900Z copying torch/include/ATen/ops/asinh_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1365380Z copying torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1366380Z copying torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1367900Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1369370Z copying torch/include/ATen/ops/_conj_physical_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1370620Z copying torch/include/ATen/ops/_sparse_sum_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1371910Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1373090Z copying torch/include/ATen/ops/alias.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1374450Z copying torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1375770Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1376800Z copying torch/include/ATen/ops/fft_fft_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1378510Z copying torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1379730Z copying torch/include/ATen/ops/special_i1e_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1381090Z copying torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1382280Z copying torch/include/ATen/ops/poisson.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1383770Z copying torch/include/ATen/ops/special_hermite_polynomial_h_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1385050Z copying torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1386030Z copying torch/include/ATen/ops/replication_pad1d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1387510Z copying torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1388830Z copying torch/include/ATen/ops/nan_to_num_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1390190Z copying torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1391160Z copying torch/include/ATen/ops/logspace_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1392800Z copying torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1393690Z copying torch/include/ATen/ops/conj_physical_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1395200Z copying torch/include/ATen/ops/heaviside.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1396590Z copying torch/include/ATen/ops/arccosh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1397790Z copying torch/include/ATen/ops/_mkldnn_reshape.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1399130Z copying torch/include/ATen/ops/linalg_slogdet_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1400590Z copying torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1401470Z copying torch/include/ATen/ops/addcdiv_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1403120Z copying torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1404140Z copying torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1405860Z copying torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1407220Z copying torch/include/ATen/ops/aminmax_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1408580Z copying torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1409920Z copying torch/include/ATen/ops/_linalg_det_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1411600Z copying torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1413080Z copying torch/include/ATen/ops/_coalesce_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1414490Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1415740Z copying torch/include/ATen/ops/batch_norm_backward_elemt_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1417010Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1418650Z copying torch/include/ATen/ops/log_sigmoid_forward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1420110Z copying torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1421370Z copying torch/include/ATen/ops/special_i1_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1422800Z copying torch/include/ATen/ops/index_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1424000Z copying torch/include/ATen/ops/equal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1425400Z copying torch/include/ATen/ops/_unique2_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1426770Z copying torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1428020Z copying torch/include/ATen/ops/acos_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1429450Z copying torch/include/ATen/ops/heaviside_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1430720Z copying torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1432120Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1433500Z copying torch/include/ATen/ops/heaviside_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1434790Z copying torch/include/ATen/ops/_nested_view_from_jagged_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1436040Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1437380Z copying torch/include/ATen/ops/_fw_primal_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1439090Z copying torch/include/ATen/ops/_nested_tensor_from_mask.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1440380Z copying torch/include/ATen/ops/sparse_bsr_tensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1441530Z copying torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1443180Z copying torch/include/ATen/ops/sum_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1444390Z copying torch/include/ATen/ops/searchsorted.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1445680Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1447130Z copying torch/include/ATen/ops/linalg_solve_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1448200Z copying torch/include/ATen/ops/linalg_solve_ex_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1449800Z copying torch/include/ATen/ops/bitwise_and.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1451210Z copying torch/include/ATen/ops/instance_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1452150Z copying torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1453830Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1454710Z copying torch/include/ATen/ops/_slow_conv2d_forward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1456350Z copying torch/include/ATen/ops/embedding_dense_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1457700Z copying torch/include/ATen/ops/geqrf_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1458910Z copying torch/include/ATen/ops/tile.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1460390Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1461390Z copying torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1462770Z copying torch/include/ATen/ops/_foreach_clamp_min_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1464290Z copying torch/include/ATen/ops/nanmean.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1465450Z copying torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1467020Z copying torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1467950Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1469630Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1470910Z copying torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1472370Z copying torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1473640Z copying torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1474510Z copying torch/include/ATen/ops/topk_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1476260Z copying torch/include/ATen/ops/tanh_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1477510Z copying torch/include/ATen/ops/xlogy_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1478910Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1479890Z copying torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1481470Z copying torch/include/ATen/ops/softplus_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1483020Z copying torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1483760Z copying torch/include/ATen/ops/scalar_tensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1485560Z copying torch/include/ATen/ops/embedding_bag_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1486760Z copying torch/include/ATen/ops/rnn_relu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1487960Z copying torch/include/ATen/ops/special_i1e_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1489340Z copying torch/include/ATen/ops/adaptive_avg_pool3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1490620Z copying torch/include/ATen/ops/as_strided_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1491880Z copying torch/include/ATen/ops/ones_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1496570Z copying torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1497100Z copying torch/include/ATen/ops/cholesky_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1497450Z copying torch/include/ATen/ops/triu_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1497840Z copying torch/include/ATen/ops/count_nonzero_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1498430Z copying torch/include/ATen/ops/eq_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1499670Z copying torch/include/ATen/ops/fft_rfftn_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1501040Z copying torch/include/ATen/ops/reflection_pad2d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1502080Z copying torch/include/ATen/ops/hypot_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1503520Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1504960Z copying torch/include/ATen/ops/feature_dropout_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1506250Z copying torch/include/ATen/ops/gelu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1507660Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1508900Z copying torch/include/ATen/ops/q_per_channel_zero_points.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1510280Z copying torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1511670Z copying torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1512880Z copying torch/include/ATen/ops/isclose.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1514080Z copying torch/include/ATen/ops/view_as_complex.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1515480Z copying torch/include/ATen/ops/lstm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1516810Z copying torch/include/ATen/ops/_linalg_eigvals_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1518150Z copying torch/include/ATen/ops/_mps_convolution_transpose_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1519330Z copying torch/include/ATen/ops/kthvalue.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1520830Z copying torch/include/ATen/ops/_euclidean_dist_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1522160Z copying torch/include/ATen/ops/replication_pad1d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1523450Z copying torch/include/ATen/ops/sin_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1524840Z copying torch/include/ATen/ops/unsafe_chunk_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1526120Z copying torch/include/ATen/ops/_foreach_minimum_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1527550Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1528330Z copying torch/include/ATen/ops/select_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1529950Z copying torch/include/ATen/ops/clamp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1531450Z copying torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1532950Z copying torch/include/ATen/ops/_foreach_maximum_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1534200Z copying torch/include/ATen/ops/linalg_cholesky_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1535660Z copying torch/include/ATen/ops/hamming_window.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1537280Z copying torch/include/ATen/ops/flatten_dense_tensors_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1538730Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1540070Z copying torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1541510Z copying torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1542460Z copying torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1543890Z copying torch/include/ATen/ops/max_pool2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1545460Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1546800Z copying torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1548210Z copying torch/include/ATen/ops/linalg_lu_factor_ex.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1549700Z copying torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1550450Z copying torch/include/ATen/ops/unique_consecutive_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1552120Z copying torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1553580Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1554860Z copying torch/include/ATen/ops/_neg_view_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1556130Z copying torch/include/ATen/ops/trapezoid_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1557510Z copying torch/include/ATen/ops/bitwise_xor_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1558880Z copying torch/include/ATen/ops/tanh_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1560330Z copying torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1561300Z copying torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1563130Z copying torch/include/ATen/ops/logical_not_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1564460Z copying torch/include/ATen/ops/avg_pool1d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1565750Z copying torch/include/ATen/ops/tril_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1567250Z copying torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1568850Z copying torch/include/ATen/ops/dsplit_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1570240Z copying torch/include/ATen/ops/is_vulkan_available_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1571490Z copying torch/include/ATen/ops/resolve_neg.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1572900Z copying torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1574090Z copying torch/include/ATen/ops/rad2deg.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1575540Z copying torch/include/ATen/ops/_mps_convolution_transpose.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1576920Z copying torch/include/ATen/ops/_segment_reduce_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1578280Z copying torch/include/ATen/ops/special_logit_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1579730Z copying torch/include/ATen/ops/_cummin_helper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1580810Z copying torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1582270Z copying torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1583800Z copying torch/include/ATen/ops/_foreach_addcmul_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1584960Z copying torch/include/ATen/ops/split_with_sizes_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1586360Z copying torch/include/ATen/ops/nll_loss_nd_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1587790Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1589190Z copying torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1590580Z copying torch/include/ATen/ops/type_as.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1591920Z copying torch/include/ATen/ops/dot_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1592910Z copying torch/include/ATen/ops/hardswish_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1594550Z copying torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1595750Z copying torch/include/ATen/ops/leaky_relu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1597280Z copying torch/include/ATen/ops/_masked_softmax.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1598600Z copying torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1600250Z copying torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1601000Z copying torch/include/ATen/ops/sign_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1602630Z copying torch/include/ATen/ops/linalg_tensorsolve.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1603930Z copying torch/include/ATen/ops/argwhere_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1605310Z copying torch/include/ATen/ops/erfinv_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1606560Z copying torch/include/ATen/ops/resolve_neg_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1607980Z copying torch/include/ATen/ops/scatter_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1609250Z copying torch/include/ATen/ops/_triton_multi_head_attention.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1610480Z copying torch/include/ATen/ops/alpha_dropout.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1611870Z copying torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1613110Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1614530Z copying torch/include/ATen/ops/stride_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1616030Z copying torch/include/ATen/ops/soft_margin_loss_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1616910Z copying torch/include/ATen/ops/lift.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1618630Z copying torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1619720Z copying torch/include/ATen/ops/atan2_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1621520Z copying torch/include/ATen/ops/_sparse_broadcast_to_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1623000Z copying torch/include/ATen/ops/_foreach_floor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1624490Z copying torch/include/ATen/ops/acos_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1625910Z copying torch/include/ATen/ops/_fused_dropout_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1627220Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1628770Z copying torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1630380Z copying torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1631090Z copying torch/include/ATen/ops/stride.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1632610Z copying torch/include/ATen/ops/addmv_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1634030Z copying torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1635370Z copying torch/include/ATen/ops/log_normal_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1636760Z copying torch/include/ATen/ops/align_to_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1637930Z copying torch/include/ATen/ops/relu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1639370Z copying torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1640970Z copying torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1642140Z copying torch/include/ATen/ops/_sample_dirichlet.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1643500Z copying torch/include/ATen/ops/special_ndtr_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1644760Z copying torch/include/ATen/ops/special_airy_ai_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1646240Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1647450Z copying torch/include/ATen/ops/clone_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1648760Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1650270Z copying torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1651250Z copying torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1652590Z copying torch/include/ATen/ops/_to_cpu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1653970Z copying torch/include/ATen/ops/adaptive_max_pool3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1655380Z copying torch/include/ATen/ops/_nested_view_from_jagged.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1656740Z copying torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1658210Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1659320Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1660790Z copying torch/include/ATen/ops/_unique2_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1662040Z copying torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1663700Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1664980Z copying torch/include/ATen/ops/trunc_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1666220Z copying torch/include/ATen/ops/retain_grad_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1667720Z copying torch/include/ATen/ops/max_pool1d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1668950Z copying torch/include/ATen/ops/histogramdd_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1670650Z copying torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1672050Z copying torch/include/ATen/ops/tanh_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1673490Z copying torch/include/ATen/ops/nanquantile_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1674930Z copying torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1675770Z copying torch/include/ATen/ops/cumsum_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1678680Z copying torch/include/ATen/ops/instance_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1680380Z copying torch/include/ATen/ops/scatter_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1681890Z copying torch/include/ATen/ops/_mixed_dtypes_linear_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1683310Z copying torch/include/ATen/ops/index_select_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1684790Z copying torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1686210Z copying torch/include/ATen/ops/refine_names_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1687460Z copying torch/include/ATen/ops/_remove_batch_dim_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1688870Z copying torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1690160Z copying torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1691710Z copying torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1692450Z copying torch/include/ATen/ops/acos.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1694210Z copying torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1695590Z copying torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1696890Z copying torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1698250Z copying torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1699550Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1700750Z copying torch/include/ATen/ops/chunk.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1702140Z copying torch/include/ATen/ops/_functional_assert_async.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1703400Z copying torch/include/ATen/ops/arange_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1704750Z copying torch/include/ATen/ops/log_softmax_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1706000Z copying torch/include/ATen/ops/unsqueeze_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1707310Z copying torch/include/ATen/ops/triangular_solve.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1708650Z copying torch/include/ATen/ops/view_as_real_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1709970Z copying torch/include/ATen/ops/native_layer_norm_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1711300Z copying torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1715630Z copying torch/include/ATen/ops/renorm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1716210Z copying torch/include/ATen/ops/_local_scalar_dense.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1716560Z copying torch/include/ATen/ops/absolute.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1716960Z copying torch/include/ATen/ops/_assert_async_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1717720Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1720010Z copying torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1721240Z copying torch/include/ATen/ops/mT_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1722750Z copying torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1724340Z copying torch/include/ATen/ops/_amp_update_scale.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1725920Z copying torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1726890Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1728320Z copying torch/include/ATen/ops/index_copy_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1729790Z copying torch/include/ATen/ops/_test_ambiguous_defaults_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1731170Z copying torch/include/ATen/ops/mul_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1732610Z copying torch/include/ATen/ops/conv_transpose3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1733890Z copying torch/include/ATen/ops/rrelu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1735340Z copying torch/include/ATen/ops/logical_or_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1736460Z copying torch/include/ATen/ops/unsqueeze_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1737910Z copying torch/include/ATen/ops/huber_loss_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1738780Z copying torch/include/ATen/ops/renorm_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1740380Z copying torch/include/ATen/ops/record_stream_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1741810Z copying torch/include/ATen/ops/promote_types_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1743250Z copying torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1744860Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1746230Z copying torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1747150Z copying torch/include/ATen/ops/linalg_vecdot.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1748850Z copying torch/include/ATen/ops/_sample_dirichlet_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1750090Z copying torch/include/ATen/ops/rand_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1751690Z copying torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1753110Z copying torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1754770Z copying torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1756030Z copying torch/include/ATen/ops/special_bessel_y1_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1757440Z copying torch/include/ATen/ops/masked_scatter_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1758710Z copying torch/include/ATen/ops/to_sparse_csc_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1760050Z copying torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1761360Z copying torch/include/ATen/ops/_cummin_helper_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1762710Z copying torch/include/ATen/ops/replication_pad2d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1764310Z copying torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1764990Z copying torch/include/ATen/ops/detach_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1766520Z copying torch/include/ATen/ops/cauchy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1768570Z copying torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1769950Z copying torch/include/ATen/ops/row_indices_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1771400Z copying torch/include/ATen/ops/add_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1772670Z copying torch/include/ATen/ops/unfold_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1774140Z copying torch/include/ATen/ops/gelu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1775550Z copying torch/include/ATen/ops/linalg_svd_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1776950Z copying torch/include/ATen/ops/_fused_sdp_choice.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1778360Z copying torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1779600Z copying torch/include/ATen/ops/log2_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1780900Z copying torch/include/ATen/ops/selu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1782390Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1783340Z copying torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1784800Z copying torch/include/ATen/ops/_foreach_frac_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1786250Z copying torch/include/ATen/ops/vander_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1787600Z copying torch/include/ATen/ops/segment_reduce_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1788830Z copying torch/include/ATen/ops/_conv_depthwise2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1790080Z copying torch/include/ATen/ops/linalg_diagonal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1791430Z copying torch/include/ATen/ops/set_data.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1792830Z copying torch/include/ATen/ops/alpha_dropout_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1794100Z copying torch/include/ATen/ops/take_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1795680Z copying torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1796840Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1798070Z copying torch/include/ATen/ops/adjoint_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1799730Z copying torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1800990Z copying torch/include/ATen/ops/convolution_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1802360Z copying torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1803730Z copying torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1805010Z copying torch/include/ATen/ops/multi_margin_loss_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1806310Z copying torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1807370Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1808930Z copying torch/include/ATen/ops/special_sinc_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1810440Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1811930Z copying torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1813170Z copying torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1814340Z copying torch/include/ATen/ops/_foreach_maximum_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1815850Z copying torch/include/ATen/ops/_sparse_csr_prod_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1817220Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1818560Z copying torch/include/ATen/ops/special_gammaln_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1819820Z copying torch/include/ATen/ops/embedding_bag.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1821000Z copying torch/include/ATen/ops/silu_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1822340Z copying torch/include/ATen/ops/greater_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1823900Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1825300Z copying torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1826550Z copying torch/include/ATen/ops/sort_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1827440Z copying torch/include/ATen/ops/fill_diagonal_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1829180Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1830550Z copying torch/include/ATen/ops/_to_sparse_csc_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1831750Z copying torch/include/ATen/ops/zeros.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1833000Z copying torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1834430Z copying torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1835750Z copying torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1837150Z copying torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1838410Z copying torch/include/ATen/ops/fmod_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1839660Z copying torch/include/ATen/ops/sigmoid_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1841000Z copying torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1842270Z copying torch/include/ATen/ops/_sobol_engine_draw_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1843630Z copying torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1845100Z copying torch/include/ATen/ops/tril_indices_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1845930Z copying torch/include/ATen/ops/bitwise_left_shift_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1847530Z copying torch/include/ATen/ops/arctanh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1848790Z copying torch/include/ATen/ops/triu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1850210Z copying torch/include/ATen/ops/reciprocal_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1851420Z copying torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1852630Z copying torch/include/ATen/ops/_nnz_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1853930Z copying torch/include/ATen/ops/unfold_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1855280Z copying torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1856330Z copying torch/include/ATen/ops/exp2_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1857760Z copying torch/include/ATen/ops/_lstm_mps.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1858950Z copying torch/include/ATen/ops/hardsigmoid_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1860370Z copying torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1861720Z copying torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1863110Z copying torch/include/ATen/ops/is_set_to_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1864210Z copying torch/include/ATen/ops/log10_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1865420Z copying torch/include/ATen/ops/flip.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1867110Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1868460Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1869810Z copying torch/include/ATen/ops/roll_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1871060Z copying torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1872300Z copying torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1874150Z copying torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1874650Z copying torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1876200Z copying torch/include/ATen/ops/linalg_lu_factor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1877710Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1879000Z copying torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1879870Z copying torch/include/ATen/ops/round_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1881420Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1882850Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1884230Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1885750Z copying torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1887250Z copying torch/include/ATen/ops/as_strided_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1888610Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1889870Z copying torch/include/ATen/ops/_standard_gamma_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1891300Z copying torch/include/ATen/ops/neg_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1892310Z copying torch/include/ATen/ops/pinverse.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1893950Z copying torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1895220Z copying torch/include/ATen/ops/select_scatter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1896690Z copying torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1897950Z copying torch/include/ATen/ops/conv1d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1899350Z copying torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1900360Z copying torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1901810Z copying torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1903270Z copying torch/include/ATen/ops/arccosh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1904620Z copying torch/include/ATen/ops/gelu_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1906000Z copying torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1907250Z copying torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1908620Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1909670Z copying torch/include/ATen/ops/fft_fftfreq.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1911350Z copying torch/include/ATen/ops/im2col_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1912760Z copying torch/include/ATen/ops/_sparse_mm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1914190Z copying torch/include/ATen/ops/narrow_copy_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1915490Z copying torch/include/ATen/ops/not_equal_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1916700Z copying torch/include/ATen/ops/prod_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1918330Z copying torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1919750Z copying torch/include/ATen/ops/index_select.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1920620Z copying torch/include/ATen/ops/special_ndtr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1922250Z copying torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1923460Z copying torch/include/ATen/ops/mm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1924710Z copying torch/include/ATen/ops/addcmul_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1926140Z copying torch/include/ATen/ops/special_hermite_polynomial_h_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1927390Z copying torch/include/ATen/ops/_convolution_mode_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1931890Z copying torch/include/ATen/ops/embedding_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1932580Z copying torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1932990Z copying torch/include/ATen/ops/mps_convolution_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1933490Z copying torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1934100Z copying torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1935530Z copying torch/include/ATen/ops/special_erfcx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1936780Z copying torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1938170Z copying torch/include/ATen/ops/ge_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1939560Z copying torch/include/ATen/ops/polar_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1940880Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1942120Z copying torch/include/ATen/ops/copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1943340Z copying torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1944780Z copying torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1946040Z copying torch/include/ATen/ops/data_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1947370Z copying torch/include/ATen/ops/adaptive_avg_pool3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1948690Z copying torch/include/ATen/ops/randn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1950330Z copying torch/include/ATen/ops/nll_loss2d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1951780Z copying torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1953040Z copying torch/include/ATen/ops/unbind_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1954330Z copying torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1955710Z copying torch/include/ATen/ops/eq_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1956950Z copying torch/include/ATen/ops/set_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1958140Z copying torch/include/ATen/ops/_native_multi_head_attention_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1959640Z copying torch/include/ATen/ops/_test_functorch_fallback.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1960970Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1962280Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1963790Z copying torch/include/ATen/ops/_cufft_clear_plan_cache.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1965010Z copying torch/include/ATen/ops/_fused_adagrad_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1966480Z copying torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1967440Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1969000Z copying torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1970520Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1971730Z copying torch/include/ATen/ops/ger_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1973320Z copying torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1974570Z copying torch/include/ATen/ops/_values_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1975750Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1977180Z copying torch/include/ATen/ops/set_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1978780Z copying torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1980110Z copying torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1981500Z copying torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1982680Z copying torch/include/ATen/ops/max_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1983880Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1985390Z copying torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1986630Z copying torch/include/ATen/ops/_linalg_det_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1987850Z copying torch/include/ATen/ops/triangular_solve_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1989260Z copying torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1990830Z copying torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1992250Z copying torch/include/ATen/ops/lshift_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1993020Z copying torch/include/ATen/ops/empty_quantized.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1994820Z copying torch/include/ATen/ops/cudnn_grid_sampler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1995800Z copying torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1997390Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1998730Z copying torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.1999810Z copying torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2001200Z copying torch/include/ATen/ops/logical_and_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2002440Z copying torch/include/ATen/ops/roll_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2003770Z copying torch/include/ATen/ops/remainder_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2004850Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2006430Z copying torch/include/ATen/ops/log10_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2007690Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2009020Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2010400Z copying torch/include/ATen/ops/convolution.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2011660Z copying torch/include/ATen/ops/kl_div_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2012700Z copying torch/include/ATen/ops/roll_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2014410Z copying torch/include/ATen/ops/upsample_bicubic2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2015670Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2016880Z copying torch/include/ATen/ops/amax_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2018230Z copying torch/include/ATen/ops/multinomial_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2019180Z copying torch/include/ATen/ops/special_log_ndtr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2020680Z copying torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2022070Z copying torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2023380Z copying torch/include/ATen/ops/addmv_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2024830Z copying torch/include/ATen/ops/clamp_max_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2025830Z copying torch/include/ATen/ops/_values_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2027160Z copying torch/include/ATen/ops/clone.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2028880Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2030120Z copying torch/include/ATen/ops/avg_pool2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2031220Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2032660Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2033940Z copying torch/include/ATen/ops/reciprocal_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2035440Z copying torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2036670Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2037990Z copying torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2039420Z copying torch/include/ATen/ops/logical_or_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2040720Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2041920Z copying torch/include/ATen/ops/values_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2043060Z copying torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2044790Z copying torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2046010Z copying torch/include/ATen/ops/swapdims.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2047550Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2048590Z copying torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2050210Z copying torch/include/ATen/ops/cauchy_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2051430Z copying torch/include/ATen/ops/reflection_pad1d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2052860Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2054300Z copying torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2055250Z copying torch/include/ATen/ops/huber_loss_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2056710Z copying torch/include/ATen/ops/permute_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2058390Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2059120Z copying torch/include/ATen/ops/sub_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2060930Z copying torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2062130Z copying torch/include/ATen/ops/mm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2063140Z copying torch/include/ATen/ops/sinh_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2064640Z copying torch/include/ATen/ops/log2_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2066090Z copying torch/include/ATen/ops/glu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2067440Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2068680Z copying torch/include/ATen/ops/linalg_solve_ex_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2070110Z copying torch/include/ATen/ops/logsumexp_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2071380Z copying torch/include/ATen/ops/all.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2072260Z copying torch/include/ATen/ops/_foobar.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2073890Z copying torch/include/ATen/ops/cudnn_grid_sampler_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2075360Z copying torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2076080Z copying torch/include/ATen/ops/log_normal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2077820Z copying torch/include/ATen/ops/quantized_lstm_cell_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2078750Z copying torch/include/ATen/ops/mvlgamma_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2080310Z copying torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2081670Z copying torch/include/ATen/ops/glu_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2083080Z copying torch/include/ATen/ops/mish_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2084040Z copying torch/include/ATen/ops/_rowwise_prune_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2085480Z copying torch/include/ATen/ops/_foreach_acos_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2086710Z copying torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2088090Z copying torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2089340Z copying torch/include/ATen/ops/size_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2090800Z copying torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2092090Z copying torch/include/ATen/ops/special_erf.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2093510Z copying torch/include/ATen/ops/amax.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2094710Z copying torch/include/ATen/ops/_foreach_lerp_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2095870Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2097490Z copying torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2098760Z copying torch/include/ATen/ops/nll_loss_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2099690Z copying torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2101390Z copying torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2102750Z copying torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2104060Z copying torch/include/ATen/ops/movedim.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2105640Z copying torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2106430Z copying torch/include/ATen/ops/arccos.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2107980Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2109420Z copying torch/include/ATen/ops/linear.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2110820Z copying torch/include/ATen/ops/bucketize_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2112010Z copying torch/include/ATen/ops/asinh_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2113240Z copying torch/include/ATen/ops/_dim_arange.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2114620Z copying torch/include/ATen/ops/special_erfc_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2116030Z copying torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2117210Z copying torch/include/ATen/ops/nll_loss_nd_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2118700Z copying torch/include/ATen/ops/tan_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2119570Z copying torch/include/ATen/ops/_cdist_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2121180Z copying torch/include/ATen/ops/hardtanh_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2122720Z copying torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2123660Z copying torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2125190Z copying torch/include/ATen/ops/_prelu_kernel_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2126470Z copying torch/include/ATen/ops/gather.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2127780Z copying torch/include/ATen/ops/_reshape_alias_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2128830Z copying torch/include/ATen/ops/logaddexp2_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2130430Z copying torch/include/ATen/ops/multi_margin_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2131670Z copying torch/include/ATen/ops/_foreach_sin_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2132940Z copying torch/include/ATen/ops/fft_rfft_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2134220Z copying torch/include/ATen/ops/slow_conv3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2135480Z copying torch/include/ATen/ops/leaky_relu_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2136950Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2137780Z copying torch/include/ATen/ops/acosh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2139500Z copying torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2143910Z copying torch/include/ATen/ops/addcdiv_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2144470Z copying torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2144830Z copying torch/include/ATen/ops/to_sparse_csr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2145300Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2146250Z copying torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2147690Z copying torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2149060Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2149980Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2151450Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2152940Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2154320Z copying torch/include/ATen/ops/sym_constrain_range_for_size_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2155040Z copying torch/include/ATen/ops/data.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2156920Z copying torch/include/ATen/ops/matrix_power_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2158280Z copying torch/include/ATen/ops/cudnn_convolution_transpose_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2159670Z copying torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2161220Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2162060Z copying torch/include/ATen/ops/gather_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2163800Z copying torch/include/ATen/ops/_cast_Long.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2165210Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2166460Z copying torch/include/ATen/ops/hardshrink_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2167710Z copying torch/include/ATen/ops/hstack_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2169040Z copying torch/include/ATen/ops/miopen_convolution_relu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2170510Z copying torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2171800Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2172620Z copying torch/include/ATen/ops/gelu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2174310Z copying torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2175750Z copying torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2176990Z copying torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2178340Z copying torch/include/ATen/ops/div_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2179810Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2180780Z copying torch/include/ATen/ops/deg2rad_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2182480Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2183890Z copying torch/include/ATen/ops/native_group_norm_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2185230Z copying torch/include/ATen/ops/triu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2186530Z copying torch/include/ATen/ops/rename_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2188100Z copying torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2189540Z copying torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2190660Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2192060Z copying torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2193200Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2194930Z copying torch/include/ATen/ops/tan_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2196070Z copying torch/include/ATen/ops/softshrink_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2197960Z copying torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2199030Z copying torch/include/ATen/ops/linalg_lu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2200270Z copying torch/include/ATen/ops/_rowwise_prune.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2201980Z copying torch/include/ATen/ops/rshift_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2203100Z copying torch/include/ATen/ops/miopen_depthwise_convolution_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2204370Z copying torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2205600Z copying torch/include/ATen/ops/arctan2_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2206940Z copying torch/include/ATen/ops/dequantize_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2208380Z copying torch/include/ATen/ops/_nested_tensor_size.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2209890Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2211410Z copying torch/include/ATen/ops/_local_scalar_dense_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2212810Z copying torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2213900Z copying torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2215300Z copying torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2216640Z copying torch/include/ATen/ops/unfold_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2218160Z copying torch/include/ATen/ops/fft_rfft2_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2219880Z copying torch/include/ATen/ops/gru.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2221190Z copying torch/include/ATen/ops/sign_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2222940Z copying torch/include/ATen/ops/atleast_1d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2224140Z copying torch/include/ATen/ops/masked_fill_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2225930Z copying torch/include/ATen/ops/fft_ifft2_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2227130Z copying torch/include/ATen/ops/isneginf.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2228370Z copying torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2229570Z copying torch/include/ATen/ops/nanquantile.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2231550Z copying torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2232860Z copying torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2234560Z copying torch/include/ATen/ops/zeros_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2235720Z copying torch/include/ATen/ops/_nested_select_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2237020Z copying torch/include/ATen/ops/nested_to_padded_tensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2238480Z copying torch/include/ATen/ops/hardtanh_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2239720Z copying torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2241400Z copying torch/include/ATen/ops/linalg_lu_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2242370Z copying torch/include/ATen/ops/fft_irfft2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2244130Z copying torch/include/ATen/ops/miopen_convolution_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2245250Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2246760Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2247900Z copying torch/include/ATen/ops/scatter_add_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2249080Z copying torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2250230Z copying torch/include/ATen/ops/_indices_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2251880Z copying torch/include/ATen/ops/adaptive_avg_pool2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2252870Z copying torch/include/ATen/ops/embedding_sparse_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2254120Z copying torch/include/ATen/ops/special_psi_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2258480Z copying torch/include/ATen/ops/hardswish_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2259410Z copying torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2260280Z copying torch/include/ATen/ops/std_mean_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2261130Z copying torch/include/ATen/ops/softplus_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2261930Z copying torch/include/ATen/ops/special_expm1_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2262770Z copying torch/include/ATen/ops/elu_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2263690Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2264660Z copying torch/include/ATen/ops/_foreach_trunc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2265980Z copying torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2267120Z copying torch/include/ATen/ops/bitwise_not.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2268660Z copying torch/include/ATen/ops/_foreach_mul_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2270410Z copying torch/include/ATen/ops/bartlett_window_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2271360Z copying torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2273120Z copying torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2274140Z copying torch/include/ATen/ops/log_sigmoid_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2275180Z copying torch/include/ATen/ops/minimum_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2276830Z copying torch/include/ATen/ops/ccol_indices_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2277750Z copying torch/include/ATen/ops/scatter_add_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2279480Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2280470Z copying torch/include/ATen/ops/std_mean_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2281610Z copying torch/include/ATen/ops/reciprocal_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2282940Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2284730Z copying torch/include/ATen/ops/cdist_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2285690Z copying torch/include/ATen/ops/sparse_sampled_addmm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2286870Z copying torch/include/ATen/ops/_add_relu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2288490Z copying torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2289580Z copying torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2290980Z copying torch/include/ATen/ops/randperm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2292210Z copying torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2294080Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2295160Z copying torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2296450Z copying torch/include/ATen/ops/_nested_sum_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2298410Z copying torch/include/ATen/ops/i0.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2299480Z copying torch/include/ATen/ops/_foreach_sinh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2301240Z copying torch/include/ATen/ops/native_dropout_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2302250Z copying torch/include/ATen/ops/_test_functorch_fallback_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2303960Z copying torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2304890Z copying torch/include/ATen/ops/flipud_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2306490Z copying torch/include/ATen/ops/_ctc_loss_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2307610Z copying torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2308870Z copying torch/include/ATen/ops/_int_mm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2310780Z copying torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2311720Z copying torch/include/ATen/ops/erf_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2313140Z copying torch/include/ATen/ops/igammac_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2314140Z copying torch/include/ATen/ops/linalg_qr_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2315770Z copying torch/include/ATen/ops/_foreach_erf_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2316740Z copying torch/include/ATen/ops/max_pool2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2317970Z copying torch/include/ATen/ops/_cast_Char_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2319750Z copying torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2320760Z copying torch/include/ATen/ops/diag_embed_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2321810Z copying torch/include/ATen/ops/_spdiags_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2323650Z copying torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2324650Z copying torch/include/ATen/ops/cov_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2325730Z copying torch/include/ATen/ops/q_scale_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2327110Z copying torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2328600Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2329710Z copying torch/include/ATen/ops/var.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2331440Z copying torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2332460Z copying torch/include/ATen/ops/bitwise_not_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2334080Z copying torch/include/ATen/ops/index_put.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2335150Z copying torch/include/ATen/ops/dequantize_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2336390Z copying torch/include/ATen/ops/convolution_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2337740Z copying torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2338950Z copying torch/include/ATen/ops/grid_sampler_2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2340600Z copying torch/include/ATen/ops/special_i0e.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2341490Z copying torch/include/ATen/ops/special_log1p_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2343140Z copying torch/include/ATen/ops/logaddexp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2344090Z copying torch/include/ATen/ops/arange_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2345770Z copying torch/include/ATen/ops/logaddexp2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2346830Z copying torch/include/ATen/ops/upsample_nearest3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2348640Z copying torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2349690Z copying torch/include/ATen/ops/index_fill_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2350760Z copying torch/include/ATen/ops/remainder.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2352540Z copying torch/include/ATen/ops/batch_norm_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2353440Z copying torch/include/ATen/ops/repeat_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2354860Z copying torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2356300Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2357510Z copying torch/include/ATen/ops/avg_pool3d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2358750Z copying torch/include/ATen/ops/_foreach_lerp_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2360580Z copying torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2361730Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2362730Z copying torch/include/ATen/ops/indices_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2364550Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2369220Z copying torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2370200Z copying torch/include/ATen/ops/_cudnn_rnn_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2371030Z copying torch/include/ATen/ops/amax_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2371870Z copying torch/include/ATen/ops/nll_loss2d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2372710Z copying torch/include/ATen/ops/linalg_matrix_rank_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2373620Z copying torch/include/ATen/ops/_masked_scale_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2374400Z copying torch/include/ATen/ops/_stack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2375200Z copying torch/include/ATen/ops/histc_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2376490Z copying torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2377720Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2379050Z copying torch/include/ATen/ops/tanh_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2380240Z copying torch/include/ATen/ops/fft_hfft.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2382140Z copying torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2383120Z copying torch/include/ATen/ops/to_padded_tensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2384340Z copying torch/include/ATen/ops/fft_fft.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2386140Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2387170Z copying torch/include/ATen/ops/requires_grad_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2388160Z copying torch/include/ATen/ops/gradient.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2389790Z copying torch/include/ATen/ops/fft_ihfft.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2390960Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2392490Z copying torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2393720Z copying torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2394790Z copying torch/include/ATen/ops/view_as_real_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2396440Z copying torch/include/ATen/ops/copysign_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2397470Z copying torch/include/ATen/ops/values_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2398620Z copying torch/include/ATen/ops/_prelu_kernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2400320Z copying torch/include/ATen/ops/fractional_max_pool3d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2401330Z copying torch/include/ATen/ops/upsample_linear1d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2402860Z copying torch/include/ATen/ops/_add_batch_dim_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2404420Z copying torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2405440Z copying torch/include/ATen/ops/mH_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2406570Z copying torch/include/ATen/ops/lift_fresh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2408180Z copying torch/include/ATen/ops/ne_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2409350Z copying torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2410570Z copying torch/include/ATen/ops/multinomial_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2411900Z copying torch/include/ATen/ops/special_modified_bessel_k0.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2413150Z copying torch/include/ATen/ops/atan2_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2414840Z copying torch/include/ATen/ops/_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2416290Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2417420Z copying torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2418440Z copying torch/include/ATen/ops/unsafe_chunk_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2420170Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2421160Z copying torch/include/ATen/ops/native_channel_shuffle_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2422490Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2423610Z copying torch/include/ATen/ops/addmv_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2424950Z copying torch/include/ATen/ops/rshift_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2426640Z copying torch/include/ATen/ops/special_erfinv_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2427690Z copying torch/include/ATen/ops/_fused_sdp_choice_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2428780Z copying torch/include/ATen/ops/_copy_from_and_resize_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2430100Z copying torch/include/ATen/ops/_sparse_log_softmax.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2431430Z copying torch/include/ATen/ops/select_scatter_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2433260Z copying torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2434440Z copying torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2435430Z copying torch/include/ATen/ops/huber_loss_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2437120Z copying torch/include/ATen/ops/count_nonzero_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2438170Z copying torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2439390Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2441140Z copying torch/include/ATen/ops/true_divide_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2442180Z copying torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2443330Z copying torch/include/ATen/ops/upsample_bilinear2d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2444670Z copying torch/include/ATen/ops/ccol_indices_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2446410Z copying torch/include/ATen/ops/addcmul_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2447300Z copying torch/include/ATen/ops/_fused_adagrad_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2448440Z copying torch/include/ATen/ops/erfc_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2450110Z copying torch/include/ATen/ops/slow_conv_transpose3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2451110Z copying torch/include/ATen/ops/resolve_conj.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2452810Z copying torch/include/ATen/ops/quantized_gru_cell_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2453880Z copying torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2455080Z copying torch/include/ATen/ops/_foreach_erfc_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2456730Z copying torch/include/ATen/ops/glu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2457670Z copying torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2459530Z copying torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2460410Z copying torch/include/ATen/ops/cosh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2461610Z copying torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2462900Z copying torch/include/ATen/ops/nll_loss_forward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2464220Z copying torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2465480Z copying torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2467190Z copying torch/include/ATen/ops/addcmul_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2468140Z copying torch/include/ATen/ops/avg_pool3d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2469400Z copying torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2470800Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2472020Z copying torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2473130Z copying torch/include/ATen/ops/fmod.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2474600Z copying torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2479290Z copying torch/include/ATen/ops/inverse.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2480130Z copying torch/include/ATen/ops/_foreach_round_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2480970Z copying torch/include/ATen/ops/to_dense_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2482040Z copying torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2482930Z copying torch/include/ATen/ops/item.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2483840Z copying torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2484930Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2485830Z copying torch/include/ATen/ops/hypot_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2486590Z copying torch/include/ATen/ops/_foreach_zero.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2487860Z copying torch/include/ATen/ops/zeros_like_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2489060Z copying torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2490360Z copying torch/include/ATen/ops/index_select_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2491520Z copying torch/include/ATen/ops/to_sparse_bsr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2492990Z copying torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2494240Z copying torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2495500Z copying torch/include/ATen/ops/nll_loss_forward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2496870Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2498050Z copying torch/include/ATen/ops/linalg_eig_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2499830Z copying torch/include/ATen/ops/sgn_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2500760Z copying torch/include/ATen/ops/replication_pad1d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2501890Z copying torch/include/ATen/ops/linalg_eigh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2503950Z copying torch/include/ATen/ops/linalg_matrix_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2504970Z copying torch/include/ATen/ops/lu_unpack_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2506370Z copying torch/include/ATen/ops/fmax_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2507530Z copying torch/include/ATen/ops/linalg_vector_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2509340Z copying torch/include/ATen/ops/native_layer_norm_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2510410Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2512260Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2513270Z copying torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2514360Z copying torch/include/ATen/ops/quantized_batch_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2515740Z copying torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2517190Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2518510Z copying torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2519740Z copying torch/include/ATen/ops/matrix_power.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2521670Z copying torch/include/ATen/ops/sgn_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2522450Z copying torch/include/ATen/ops/ne_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2523750Z copying torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2524920Z copying torch/include/ATen/ops/split_with_sizes_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2526690Z copying torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2527740Z copying torch/include/ATen/ops/conj_physical_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2528910Z copying torch/include/ATen/ops/silu_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2530610Z copying torch/include/ATen/ops/linalg_matrix_power_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2531680Z copying torch/include/ATen/ops/unsafe_split_with_sizes.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2532930Z copying torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2534380Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2536180Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2537120Z copying torch/include/ATen/ops/frac_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2538680Z copying torch/include/ATen/ops/less_equal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2539760Z copying torch/include/ATen/ops/rrelu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2541720Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2542720Z copying torch/include/ATen/ops/rnn_tanh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2543880Z copying torch/include/ATen/ops/upsample_nearest1d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2545690Z copying torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2546680Z copying torch/include/ATen/ops/mean_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2547820Z copying torch/include/ATen/ops/_pin_memory_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2549110Z copying torch/include/ATen/ops/new_empty_strided.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2550670Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2551790Z copying torch/include/ATen/ops/pow_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2553380Z copying torch/include/ATen/ops/channel_shuffle_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2554660Z copying torch/include/ATen/ops/log_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2555830Z copying torch/include/ATen/ops/unique_consecutive_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2557770Z copying torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2558700Z copying torch/include/ATen/ops/alpha_dropout_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2559940Z copying torch/include/ATen/ops/_foreach_abs_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2561190Z copying torch/include/ATen/ops/replication_pad2d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2562390Z copying torch/include/ATen/ops/kaiser_window.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2564180Z copying torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2565230Z copying torch/include/ATen/ops/nansum.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2566320Z copying torch/include/ATen/ops/threshold_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2568050Z copying torch/include/ATen/ops/soft_margin_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2568930Z copying torch/include/ATen/ops/det_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2570470Z copying torch/include/ATen/ops/_foreach_sin.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2571590Z copying torch/include/ATen/ops/addr_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2573220Z copying torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2574250Z copying torch/include/ATen/ops/split_with_sizes_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2575630Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2576830Z copying torch/include/ATen/ops/log_sigmoid_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2578520Z copying torch/include/ATen/ops/_foreach_div_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2579510Z copying torch/include/ATen/ops/prelu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2580690Z copying torch/include/ATen/ops/maximum_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2582380Z copying torch/include/ATen/ops/grid_sampler_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2583420Z copying torch/include/ATen/ops/_cslt_compress_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2584720Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2589550Z copying torch/include/ATen/ops/_foreach_ceil_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2590470Z copying torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2591320Z copying torch/include/ATen/ops/fmod_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2592230Z copying torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2593240Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2594080Z copying torch/include/ATen/ops/_unsafe_index_put_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2594880Z copying torch/include/ATen/ops/logical_not_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2595670Z copying torch/include/ATen/ops/crow_indices_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2596760Z copying torch/include/ATen/ops/logspace_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2597970Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2599280Z copying torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2600570Z copying torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2601820Z copying torch/include/ATen/ops/lift_fresh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2603590Z copying torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2604780Z copying torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2605770Z copying torch/include/ATen/ops/sym_stride_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2607370Z copying torch/include/ATen/ops/isreal_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2608400Z copying torch/include/ATen/ops/unbind_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2610040Z copying torch/include/ATen/ops/_spdiags_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2611010Z copying torch/include/ATen/ops/_pad_enum.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2612650Z copying torch/include/ATen/ops/equal_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2613660Z copying torch/include/ATen/ops/_autocast_to_reduced_precision.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2614940Z copying torch/include/ATen/ops/mse_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2616230Z copying torch/include/ATen/ops/_addmm_activation_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2617990Z copying torch/include/ATen/ops/pin_memory_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2618920Z copying torch/include/ATen/ops/max_unpool2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2620340Z copying torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2621750Z copying torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2622700Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2623960Z copying torch/include/ATen/ops/einsum.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2625250Z copying torch/include/ATen/ops/_ctc_loss_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2626940Z copying torch/include/ATen/ops/xlogy_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2628180Z copying torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2629180Z copying torch/include/ATen/ops/is_conj.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2630780Z copying torch/include/ATen/ops/miopen_convolution_relu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2631890Z copying torch/include/ATen/ops/permute_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2633500Z copying torch/include/ATen/ops/multiply.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2634430Z copying torch/include/ATen/ops/batch_norm_stats_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2636410Z copying torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2637590Z copying torch/include/ATen/ops/silu_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2639440Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2640640Z copying torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2641640Z copying torch/include/ATen/ops/trapezoid.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2643230Z copying torch/include/ATen/ops/prelu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2644450Z copying torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2645850Z copying torch/include/ATen/ops/_nested_tensor_strides_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2646930Z copying torch/include/ATen/ops/q_zero_point.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2648320Z copying torch/include/ATen/ops/_resize_output_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2649600Z copying torch/include/ATen/ops/isfinite_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2651230Z copying torch/include/ATen/ops/masked_fill_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2652310Z copying torch/include/ATen/ops/sparse_resize_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2653730Z copying torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2655360Z copying torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2656330Z copying torch/include/ATen/ops/addcdiv_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2657690Z copying torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2658920Z copying torch/include/ATen/ops/_sparse_softmax_backward_data.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2660620Z copying torch/include/ATen/ops/mkldnn_max_pool2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2661790Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2663090Z copying torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2664560Z copying torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2665710Z copying torch/include/ATen/ops/_nested_from_padded_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2667450Z copying torch/include/ATen/ops/isin_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2668660Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2669940Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2671670Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2672850Z copying torch/include/ATen/ops/linalg_matmul.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2674120Z copying torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2675650Z copying torch/include/ATen/ops/special_bessel_y1_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2676730Z copying torch/include/ATen/ops/reciprocal_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2677930Z copying torch/include/ATen/ops/isposinf_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2679490Z copying torch/include/ATen/ops/_nested_get_max_seqlen_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2680510Z copying torch/include/ATen/ops/gcd_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2682190Z copying torch/include/ATen/ops/_convolution_double_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2683300Z copying torch/include/ATen/ops/softshrink_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2684610Z copying torch/include/ATen/ops/_sparse_mm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2686310Z copying torch/include/ATen/ops/_cudnn_ctc_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2687350Z copying torch/include/ATen/ops/_foreach_neg_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2688610Z copying torch/include/ATen/ops/leaky_relu_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2690110Z copying torch/include/ATen/ops/nested_to_padded_tensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2691200Z copying torch/include/ATen/ops/_add_relu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2692470Z copying torch/include/ATen/ops/round_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2694120Z copying torch/include/ATen/ops/resolve_conj_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2695290Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2700210Z copying torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2701120Z copying torch/include/ATen/ops/ones_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2701900Z copying torch/include/ATen/ops/_foreach_clamp_max.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2702720Z copying torch/include/ATen/ops/log_sigmoid_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2703640Z copying torch/include/ATen/ops/_slow_conv2d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2704450Z copying torch/include/ATen/ops/neg_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2705360Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2706340Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2707350Z copying torch/include/ATen/ops/replication_pad2d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2708390Z copying torch/include/ATen/ops/lerp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2710220Z copying torch/include/ATen/ops/exp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2711140Z copying torch/include/ATen/ops/is_set_to_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2712340Z copying torch/include/ATen/ops/logsumexp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2713840Z copying torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2715040Z copying torch/include/ATen/ops/_pad_packed_sequence.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2716780Z copying torch/include/ATen/ops/round.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2717690Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2718930Z copying torch/include/ATen/ops/roll_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2720650Z copying torch/include/ATen/ops/i0_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2721540Z copying torch/include/ATen/ops/alias_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2722830Z copying torch/include/ATen/ops/mish_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2724180Z copying torch/include/ATen/ops/replication_pad2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2725390Z copying torch/include/ATen/ops/addcmul_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2726970Z copying torch/include/ATen/ops/std_mean_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2728320Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2729580Z copying torch/include/ATen/ops/prod_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2730800Z copying torch/include/ATen/ops/pow_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2732620Z copying torch/include/ATen/ops/resize_as_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2733510Z copying torch/include/ATen/ops/gcd_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2735280Z copying torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2736460Z copying torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2737440Z copying torch/include/ATen/ops/_foreach_log10.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2739100Z copying torch/include/ATen/ops/select_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2740050Z copying torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2741830Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2742890Z copying torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2744120Z copying torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2745310Z copying torch/include/ATen/ops/scalar_tensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2747130Z copying torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2748130Z copying torch/include/ATen/ops/nonzero_static.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2749380Z copying torch/include/ATen/ops/im2col_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2750620Z copying torch/include/ATen/ops/special_spherical_bessel_j0_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2751980Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2753610Z copying torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2755020Z copying torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2756110Z copying torch/include/ATen/ops/copysign_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2757400Z copying torch/include/ATen/ops/_reshape_from_tensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2759090Z copying torch/include/ATen/ops/_fw_primal_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2760040Z copying torch/include/ATen/ops/qscheme_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2761310Z copying torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2762640Z copying torch/include/ATen/ops/_print.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2763990Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2765400Z copying torch/include/ATen/ops/set_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2766590Z copying torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2767790Z copying torch/include/ATen/ops/_cudnn_init_dropout_state.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2769240Z copying torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2771050Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2772010Z copying torch/include/ATen/ops/polygamma.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2773460Z copying torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2775100Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2776210Z copying torch/include/ATen/ops/upsample_bilinear2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2777370Z copying torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2778580Z copying torch/include/ATen/ops/swapaxes_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2779920Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2781320Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2782520Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2784410Z copying torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2785460Z copying torch/include/ATen/ops/quantile.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2786690Z copying torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2788000Z copying torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2789320Z copying torch/include/ATen/ops/convolution_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2790630Z copying torch/include/ATen/ops/masked_scatter_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2791830Z copying torch/include/ATen/ops/_nnpack_available.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2794130Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2795170Z copying torch/include/ATen/ops/new_zeros.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2797220Z copying torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2798290Z copying torch/include/ATen/ops/replication_pad1d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2799590Z copying torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2801080Z copying torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2802250Z copying torch/include/ATen/ops/uniform_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2804260Z copying torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2805220Z copying torch/include/ATen/ops/_log_softmax_backward_data_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2806980Z copying torch/include/ATen/ops/_foreach_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2808200Z copying torch/include/ATen/ops/mT_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2812830Z copying torch/include/ATen/ops/nonzero_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2813630Z copying torch/include/ATen/ops/_pack_padded_sequence.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2814410Z copying torch/include/ATen/ops/_foreach_neg.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2815250Z copying torch/include/ATen/ops/linalg_multi_dot.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2816090Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2816980Z copying torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2817940Z copying torch/include/ATen/ops/arange_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2819770Z copying torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2820740Z copying torch/include/ATen/ops/ne.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2822560Z copying torch/include/ATen/ops/threshold_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2824270Z copying torch/include/ATen/ops/rrelu_with_noise_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2825470Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2827040Z copying torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2828260Z copying torch/include/ATen/ops/lu_unpack_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2829940Z copying torch/include/ATen/ops/special_erfc_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2830930Z copying torch/include/ATen/ops/_nested_sum_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2832610Z copying torch/include/ATen/ops/quantized_max_pool1d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2833650Z copying torch/include/ATen/ops/linalg_lstsq_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2834770Z copying torch/include/ATen/ops/ormqr_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2836590Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2837540Z copying torch/include/ATen/ops/is_nonzero.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2838870Z copying torch/include/ATen/ops/glu_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2840040Z copying torch/include/ATen/ops/_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2841670Z copying torch/include/ATen/ops/bitwise_xor_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2842710Z copying torch/include/ATen/ops/sigmoid_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2844330Z copying torch/include/ATen/ops/_foreach_cos.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2845250Z copying torch/include/ATen/ops/randn_like_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2846750Z copying torch/include/ATen/ops/_slow_conv2d_forward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2848300Z copying torch/include/ATen/ops/subtract_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2849410Z copying torch/include/ATen/ops/sparse_compressed_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2850700Z copying torch/include/ATen/ops/_foreach_ceil_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2852370Z copying torch/include/ATen/ops/div_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2853640Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2854860Z copying torch/include/ATen/ops/_foreach_div_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2856580Z copying torch/include/ATen/ops/logical_or_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2857650Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2858920Z copying torch/include/ATen/ops/mul_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2860370Z copying torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2861510Z copying torch/include/ATen/ops/swapaxes.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2863080Z copying torch/include/ATen/ops/divide_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2864360Z copying torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2865460Z copying torch/include/ATen/ops/sub.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2867280Z copying torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2868210Z copying torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2869850Z copying torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2871070Z copying torch/include/ATen/ops/rrelu_with_noise_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2872410Z copying torch/include/ATen/ops/_fft_r2c_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2873850Z copying torch/include/ATen/ops/special_entr_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2875180Z copying torch/include/ATen/ops/conv1d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2876420Z copying torch/include/ATen/ops/view_as_real_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2877640Z copying torch/include/ATen/ops/linalg_svd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2879170Z copying torch/include/ATen/ops/native_batch_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2880060Z copying torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2881420Z copying torch/include/ATen/ops/constant_pad_nd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2883090Z copying torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2884360Z copying torch/include/ATen/ops/quantized_lstm_cell.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2886020Z copying torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2886550Z copying torch/include/ATen/ops/linalg_lu_factor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2888330Z copying torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2889590Z copying torch/include/ATen/ops/is_leaf_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2890780Z copying torch/include/ATen/ops/binomial_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2892280Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2893710Z copying torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2894460Z copying torch/include/ATen/ops/log2_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2896220Z copying torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2897360Z copying torch/include/ATen/ops/resolve_conj_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2898960Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2900270Z copying torch/include/ATen/ops/row_indices_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2901020Z copying torch/include/ATen/ops/_foreach_exp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2902620Z copying torch/include/ATen/ops/layer_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2903830Z copying torch/include/ATen/ops/sum_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2905320Z copying torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2906720Z copying torch/include/ATen/ops/_sparse_mask_projection_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2908130Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2909390Z copying torch/include/ATen/ops/special_zeta_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2910720Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2912070Z copying torch/include/ATen/ops/special_log_ndtr_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2913380Z copying torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2914220Z copying torch/include/ATen/ops/copy_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2915990Z copying torch/include/ATen/ops/linalg_lu_solve_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2917370Z copying torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2918220Z copying torch/include/ATen/ops/linalg_eigvalsh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2919750Z copying torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2921100Z copying torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2922210Z copying torch/include/ATen/ops/argmin_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2923820Z copying torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2924970Z copying torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2926580Z copying torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2928140Z copying torch/include/ATen/ops/special_zeta_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2929560Z copying torch/include/ATen/ops/is_complex_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2930930Z copying torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2932450Z copying torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2933670Z copying torch/include/ATen/ops/add_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2935080Z copying torch/include/ATen/ops/diagonal_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2936330Z copying torch/include/ATen/ops/_linalg_check_errors.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2937630Z copying torch/include/ATen/ops/angle_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2939020Z copying torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2939890Z copying torch/include/ATen/ops/_nested_get_min_seqlen_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2941420Z copying torch/include/ATen/ops/_nested_get_values_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2942930Z copying torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2943920Z copying torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2945620Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2946910Z copying torch/include/ATen/ops/sort_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2947730Z copying torch/include/ATen/ops/_lazy_clone_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2949260Z copying torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2950800Z copying torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2952040Z copying torch/include/ATen/ops/thnn_conv2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2953290Z copying torch/include/ATen/ops/baddbmm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2954790Z copying torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2956150Z copying torch/include/ATen/ops/embedding_renorm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2957380Z copying torch/include/ATen/ops/avg_pool3d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2958670Z copying torch/include/ATen/ops/multilabel_margin_loss_forward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2959900Z copying torch/include/ATen/ops/reciprocal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2961240Z copying torch/include/ATen/ops/contiguous_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2962680Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2963690Z copying torch/include/ATen/ops/sparse_mask_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2965280Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2966670Z copying torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2967960Z copying torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2969350Z copying torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2970670Z copying torch/include/ATen/ops/tril_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2972010Z copying torch/include/ATen/ops/logical_not_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2973270Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2974640Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2975650Z copying torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2977180Z copying torch/include/ATen/ops/arcsin.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2978250Z copying torch/include/ATen/ops/qr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2979860Z copying torch/include/ATen/ops/view_as_real_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2981170Z copying torch/include/ATen/ops/softshrink_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2982720Z copying torch/include/ATen/ops/frac_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2983530Z copying torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2985100Z copying torch/include/ATen/ops/miopen_rnn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2986590Z copying torch/include/ATen/ops/_native_multi_head_attention_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2987470Z copying torch/include/ATen/ops/_segment_reduce_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2989070Z copying torch/include/ATen/ops/_linalg_eigvals_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2990320Z copying torch/include/ATen/ops/_test_string_default_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2991580Z copying torch/include/ATen/ops/sparse_csr_tensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2993030Z copying torch/include/ATen/ops/logaddexp_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2994470Z copying torch/include/ATen/ops/grid_sampler_2d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2995510Z copying torch/include/ATen/ops/pairwise_distance.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2997180Z copying torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2998520Z copying torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.2999640Z copying torch/include/ATen/ops/_cast_Long_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3001000Z copying torch/include/ATen/ops/nll_loss2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3002490Z copying torch/include/ATen/ops/fft_ifftshift_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3003890Z copying torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3005240Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3006490Z copying torch/include/ATen/ops/cos_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3007800Z copying torch/include/ATen/ops/adaptive_max_pool1d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3009050Z copying torch/include/ATen/ops/_mkldnn_transpose_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3010420Z copying torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3011760Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3013110Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3014320Z copying torch/include/ATen/ops/cudnn_convolution.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3015650Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3016920Z copying torch/include/ATen/ops/atleast_2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3018330Z copying torch/include/ATen/ops/choose_qparams_optimized.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3019520Z copying torch/include/ATen/ops/_linalg_slogdet.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3020970Z copying torch/include/ATen/ops/_slow_conv2d_forward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3022320Z copying torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3023280Z copying torch/include/ATen/ops/special_bessel_y1.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3024580Z copying torch/include/ATen/ops/slice.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3026080Z copying torch/include/ATen/ops/_nested_tensor_size_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3031000Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3031550Z copying torch/include/ATen/ops/_spdiags.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3031950Z copying torch/include/ATen/ops/linalg_matmul_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3032460Z copying torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3032810Z copying torch/include/ATen/ops/_neg_view.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3034490Z copying torch/include/ATen/ops/unsafe_split.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3035840Z copying torch/include/ATen/ops/sign_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3037280Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3038550Z copying torch/include/ATen/ops/logaddexp2_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3040200Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3040860Z copying torch/include/ATen/ops/div_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3042460Z copying torch/include/ATen/ops/trace_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3044030Z copying torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3044750Z copying torch/include/ATen/ops/fft_hfft_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3046510Z copying torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3047810Z copying torch/include/ATen/ops/linear_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3049280Z copying torch/include/ATen/ops/nll_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3050880Z copying torch/include/ATen/ops/_nested_tensor_strides_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3052130Z copying torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3053700Z copying torch/include/ATen/ops/fft_ifft_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3055140Z copying torch/include/ATen/ops/value_selecting_reduction_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3056010Z copying torch/include/ATen/ops/triplet_margin_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3057560Z copying torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3058970Z copying torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3060590Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3061570Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3062940Z copying torch/include/ATen/ops/col2im_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3064240Z copying torch/include/ATen/ops/_fft_c2r_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3065680Z copying torch/include/ATen/ops/arcsinh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3066890Z copying torch/include/ATen/ops/type_as_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3068310Z copying torch/include/ATen/ops/linalg_eigvals_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3069520Z copying torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3071040Z copying torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3072420Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3073310Z copying torch/include/ATen/ops/_copy_from_and_resize.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3075040Z copying torch/include/ATen/ops/linalg_ldl_solve_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3076330Z copying torch/include/ATen/ops/logdet.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3077740Z copying torch/include/ATen/ops/align_as_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3079030Z copying torch/include/ATen/ops/tanh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3080430Z copying torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3081840Z copying torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3083210Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3084480Z copying torch/include/ATen/ops/tanh_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3085380Z copying torch/include/ATen/ops/_unsafe_masked_index_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3086920Z copying torch/include/ATen/ops/trunc_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3088270Z copying torch/include/ATen/ops/_cholesky_solve_helper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3089830Z copying torch/include/ATen/ops/special_laguerre_polynomial_l.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3090580Z copying torch/include/ATen/ops/mv.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3092100Z copying torch/include/ATen/ops/logit.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3093360Z copying torch/include/ATen/ops/min_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3094710Z copying torch/include/ATen/ops/isnan_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3096010Z copying torch/include/ATen/ops/_unique2_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3097330Z copying torch/include/ATen/ops/_mkldnn_reshape_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3098960Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3100370Z copying torch/include/ATen/ops/_pack_padded_sequence_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3101630Z copying torch/include/ATen/ops/upsample_trilinear3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3102830Z copying torch/include/ATen/ops/normal_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3104350Z copying torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3105730Z copying torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3106480Z copying torch/include/ATen/ops/smm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3108130Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3109490Z copying torch/include/ATen/ops/less_equal_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3111000Z copying torch/include/ATen/ops/new_ones_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3112340Z copying torch/include/ATen/ops/nonzero_static_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3113750Z copying torch/include/ATen/ops/sinc_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3115030Z copying torch/include/ATen/ops/binary_cross_entropy_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3116470Z copying torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3117630Z copying torch/include/ATen/ops/expand_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3118950Z copying torch/include/ATen/ops/complex_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3120050Z copying torch/include/ATen/ops/_weight_norm_interface_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3121670Z copying torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3122940Z copying torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3124210Z copying torch/include/ATen/ops/isin_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3125540Z copying torch/include/ATen/ops/pinverse_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3126800Z copying torch/include/ATen/ops/_foreach_atan_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3128010Z copying torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3129200Z copying torch/include/ATen/ops/lstm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3130590Z copying torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3131790Z copying torch/include/ATen/ops/xlogy_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3133320Z copying torch/include/ATen/ops/expm1.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3134690Z copying torch/include/ATen/ops/dist_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3136400Z copying torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3137240Z copying torch/include/ATen/ops/maximum.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3138890Z copying torch/include/ATen/ops/remainder_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3140270Z copying torch/include/ATen/ops/ones.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3141830Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3143150Z copying torch/include/ATen/ops/_foreach_maximum.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3144400Z copying torch/include/ATen/ops/slow_conv3d_forward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3145810Z copying torch/include/ATen/ops/aminmax_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3147200Z copying torch/include/ATen/ops/special_modified_bessel_i1.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3148710Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3149490Z copying torch/include/ATen/ops/mse_loss_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3150920Z copying torch/include/ATen/ops/_cummax_helper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3152310Z copying torch/include/ATen/ops/pad.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3153670Z copying torch/include/ATen/ops/linalg_cross_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3154920Z copying torch/include/ATen/ops/_resize_output_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3156220Z copying torch/include/ATen/ops/gru_cell_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3157470Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3158700Z copying torch/include/ATen/ops/std_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3160020Z copying torch/include/ATen/ops/round_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3161540Z copying torch/include/ATen/ops/_to_cpu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3163120Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3164320Z copying torch/include/ATen/ops/fft_irfft2_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3165240Z copying torch/include/ATen/ops/block_diag.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3166840Z copying torch/include/ATen/ops/_nested_get_offsets.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3168630Z copying torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3169450Z copying torch/include/ATen/ops/atanh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3171230Z copying torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3172630Z copying torch/include/ATen/ops/to_sparse_bsc_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3174110Z copying torch/include/ATen/ops/exponential_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3175250Z copying torch/include/ATen/ops/miopen_depthwise_convolution_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3176640Z copying torch/include/ATen/ops/gather_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3178100Z copying torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3179380Z copying torch/include/ATen/ops/geqrf.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3180740Z copying torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3181960Z copying torch/include/ATen/ops/bitwise_xor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3183590Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3185030Z copying torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3186310Z copying torch/include/ATen/ops/_aminmax_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3187680Z copying torch/include/ATen/ops/native_layer_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3188940Z copying torch/include/ATen/ops/sym_constrain_range_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3190350Z copying torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3191850Z copying torch/include/ATen/ops/frexp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3193310Z copying torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3194690Z copying torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3195620Z copying torch/include/ATen/ops/linalg_vander_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3197430Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3198830Z copying torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3199760Z copying torch/include/ATen/ops/split_with_sizes.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3201530Z copying torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3202890Z copying torch/include/ATen/ops/special_i1_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3203740Z copying torch/include/ATen/ops/sum_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3205030Z copying torch/include/ATen/ops/vdot_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3206570Z copying torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3208020Z copying torch/include/ATen/ops/pinverse_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3209400Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3211080Z copying torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3211760Z copying torch/include/ATen/ops/add.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3213540Z copying torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3214910Z copying torch/include/ATen/ops/_cummax_helper_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3216280Z copying torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3217630Z copying torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3218930Z copying torch/include/ATen/ops/eq_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3220220Z copying torch/include/ATen/ops/_batch_norm_impl_index_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3221680Z copying torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3223060Z copying torch/include/ATen/ops/upsample_nearest1d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3224530Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3225320Z copying torch/include/ATen/ops/sort_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3226760Z copying torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3228230Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3229900Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3231560Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3233110Z copying torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3234610Z copying torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3236360Z copying torch/include/ATen/ops/max_pool1d_with_indices_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3237870Z copying torch/include/ATen/ops/special_erf_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3239190Z copying torch/include/ATen/ops/avg_pool3d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3240780Z copying torch/include/ATen/ops/upsample_nearest1d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3242360Z copying torch/include/ATen/ops/sin_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3243920Z copying torch/include/ATen/ops/sum_to_size.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3245610Z copying torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3251520Z copying torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3252130Z copying torch/include/ATen/ops/special_hermite_polynomial_he_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3252590Z copying torch/include/ATen/ops/gradient_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3252940Z copying torch/include/ATen/ops/_cslt_compress.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3253360Z copying torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3254040Z copying torch/include/ATen/ops/fractional_max_pool2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3255510Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3256810Z copying torch/include/ATen/ops/_test_optional_intlist_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3258190Z copying torch/include/ATen/ops/log_normal_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3259450Z copying torch/include/ATen/ops/hypot_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3260880Z copying torch/include/ATen/ops/hypot.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3262250Z copying torch/include/ATen/ops/nll_loss_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3263540Z copying torch/include/ATen/ops/_nested_tensor_size_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3265180Z copying torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3266550Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3267780Z copying torch/include/ATen/ops/linalg_qr_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3269250Z copying torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3270740Z copying torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3271660Z copying torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3273240Z copying torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3274770Z copying torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3276110Z copying torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3277750Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3278570Z copying torch/include/ATen/ops/linalg_cross_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3280280Z copying torch/include/ATen/ops/special_bessel_j0_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3281500Z copying torch/include/ATen/ops/rsub_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3282970Z copying torch/include/ATen/ops/sort_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3283830Z copying torch/include/ATen/ops/sparse_resize_and_clear_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3285390Z copying torch/include/ATen/ops/put_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3286480Z copying torch/include/ATen/ops/eq_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3288040Z copying torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3289320Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3290570Z copying torch/include/ATen/ops/_foreach_floor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3292080Z copying torch/include/ATen/ops/signbit_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3293340Z copying torch/include/ATen/ops/erfinv_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3294620Z copying torch/include/ATen/ops/diag_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3296190Z copying torch/include/ATen/ops/_functional_sym_constrain_range_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3297190Z copying torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3298700Z copying torch/include/ATen/ops/_logcumsumexp_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3299680Z copying torch/include/ATen/ops/fractional_max_pool3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3301200Z copying torch/include/ATen/ops/logical_or.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3302690Z copying torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3304220Z copying torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3305440Z copying torch/include/ATen/ops/_pdist_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3306890Z copying torch/include/ATen/ops/empty_permuted_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3307980Z copying torch/include/ATen/ops/topk_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3309410Z copying torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3310690Z copying torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3312300Z copying torch/include/ATen/ops/bincount_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3313600Z copying torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3314880Z copying torch/include/ATen/ops/i0_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3316150Z copying torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3317550Z copying torch/include/ATen/ops/asinh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3318990Z copying torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3320290Z copying torch/include/ATen/ops/resize_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3321570Z copying torch/include/ATen/ops/logcumsumexp_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3322910Z copying torch/include/ATen/ops/ravel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3324040Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3325410Z copying torch/include/ATen/ops/bitwise_and_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3327050Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3328120Z copying torch/include/ATen/ops/_index_put_impl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3329440Z copying torch/include/ATen/ops/isin_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3330790Z copying torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3331700Z copying torch/include/ATen/ops/_cast_Short.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3333490Z copying torch/include/ATen/ops/_sparse_broadcast_to_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3334880Z copying torch/include/ATen/ops/select_scatter_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3336050Z copying torch/include/ATen/ops/fmod_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3337360Z copying torch/include/ATen/ops/masked_scatter_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3339040Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3339810Z copying torch/include/ATen/ops/hardtanh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3341500Z copying torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3342930Z copying torch/include/ATen/ops/index_reduce_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3344250Z copying torch/include/ATen/ops/_linalg_solve_ex_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3345670Z copying torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3346880Z copying torch/include/ATen/ops/std_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3348110Z copying torch/include/ATen/ops/vsplit_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3349730Z copying torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3351100Z copying torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3352330Z copying torch/include/ATen/ops/linalg_lu_solve_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3353880Z copying torch/include/ATen/ops/_sparse_csr_sum.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3354990Z copying torch/include/ATen/ops/view_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3356390Z copying torch/include/ATen/ops/ccol_indices_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3358010Z copying torch/include/ATen/ops/resize_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3359440Z copying torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3360670Z copying torch/include/ATen/ops/constant_pad_nd_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3362140Z copying torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3363360Z copying torch/include/ATen/ops/silu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3364810Z copying torch/include/ATen/ops/choose_qparams_optimized_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3365750Z copying torch/include/ATen/ops/log_softmax.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3367540Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3368750Z copying torch/include/ATen/ops/_foreach_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3370110Z copying torch/include/ATen/ops/_version_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3371380Z copying torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3372910Z copying torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3374120Z copying torch/include/ATen/ops/corrcoef_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3375490Z copying torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3376690Z copying torch/include/ATen/ops/_to_sparse_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3378090Z copying torch/include/ATen/ops/sin_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3379360Z copying torch/include/ATen/ops/_cast_Half_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3380840Z copying torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3382380Z copying torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3383270Z copying torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3384720Z copying torch/include/ATen/ops/hardswish_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3386170Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3387720Z copying torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3388720Z copying torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3390110Z copying torch/include/ATen/ops/_flash_attention_forward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3391760Z copying torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3392930Z copying torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3394450Z copying torch/include/ATen/ops/hardsigmoid_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3395560Z copying torch/include/ATen/ops/linalg_matmul_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3397060Z copying torch/include/ATen/ops/_to_sparse_bsr_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3398470Z copying torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3399700Z copying torch/include/ATen/ops/_pad_circular.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3401220Z copying torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3402280Z copying torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3403660Z copying torch/include/ATen/ops/_foreach_div.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3405090Z copying torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3406530Z copying torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3407470Z copying torch/include/ATen/ops/to_sparse_bsr_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3409020Z copying torch/include/ATen/ops/bmm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3410270Z copying torch/include/ATen/ops/conv3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3411520Z copying torch/include/ATen/ops/addcdiv_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3413190Z copying torch/include/ATen/ops/add_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3414660Z copying torch/include/ATen/ops/multi_margin_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3415990Z copying torch/include/ATen/ops/bitwise_xor_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3417420Z copying torch/include/ATen/ops/exp2_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3418640Z copying torch/include/ATen/ops/_nested_from_padded.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3420010Z copying torch/include/ATen/ops/sparse_bsr_tensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3421330Z copying torch/include/ATen/ops/combinations_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3422560Z copying torch/include/ATen/ops/fmod_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3423880Z copying torch/include/ATen/ops/broadcast_to.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3425360Z copying torch/include/ATen/ops/hardswish_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3426950Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3428210Z copying torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3429460Z copying torch/include/ATen/ops/linalg_lu_solve_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3430970Z copying torch/include/ATen/ops/bitwise_or_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3432210Z copying torch/include/ATen/ops/special_i0e_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3433660Z copying torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3434890Z copying torch/include/ATen/ops/vdot_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3435800Z copying torch/include/ATen/ops/_conj_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3437350Z copying torch/include/ATen/ops/gt_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3438750Z copying torch/include/ATen/ops/diag_embed.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3440100Z copying torch/include/ATen/ops/sqrt_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3441370Z copying torch/include/ATen/ops/nan_to_num_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3442660Z copying torch/include/ATen/ops/conv2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3443960Z copying torch/include/ATen/ops/_batch_norm_with_update.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3445280Z copying torch/include/ATen/ops/_foreach_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3446720Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3447940Z copying torch/include/ATen/ops/hardshrink_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3449130Z copying torch/include/ATen/ops/heaviside_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3450420Z copying torch/include/ATen/ops/pdist.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3451950Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3452900Z copying torch/include/ATen/ops/cholesky_solve_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3454310Z copying torch/include/ATen/ops/is_signed.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3455700Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3457250Z copying torch/include/ATen/ops/ne_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3458670Z copying torch/include/ATen/ops/index_reduce.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3459920Z copying torch/include/ATen/ops/logit_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3461290Z copying torch/include/ATen/ops/linalg_multi_dot_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3465850Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3466530Z copying torch/include/ATen/ops/linalg_eig_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3466950Z copying torch/include/ATen/ops/special_i1e_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3467430Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3467890Z copying torch/include/ATen/ops/_conj_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3469380Z copying torch/include/ATen/ops/randperm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3470870Z copying torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3472150Z copying torch/include/ATen/ops/_fused_adamw_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3473020Z copying torch/include/ATen/ops/rand_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3474740Z copying torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3475970Z copying torch/include/ATen/ops/_foreach_cosh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3477360Z copying torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3478770Z copying torch/include/ATen/ops/rename_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3480140Z copying torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3481470Z copying torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3482450Z copying torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3484270Z copying torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3485010Z copying torch/include/ATen/ops/_is_zerotensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3486580Z copying torch/include/ATen/ops/exp_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3487840Z copying torch/include/ATen/ops/multilabel_margin_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3489230Z copying torch/include/ATen/ops/_test_check_tensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3490370Z copying torch/include/ATen/ops/embedding_dense_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3491910Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3493060Z copying torch/include/ATen/ops/_cast_Float.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3494490Z copying torch/include/ATen/ops/_neg_view_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3495700Z copying torch/include/ATen/ops/acosh_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3497210Z copying torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3498180Z copying torch/include/ATen/ops/_assert_tensor_metadata_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3499830Z copying torch/include/ATen/ops/sigmoid_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3501150Z copying torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3502500Z copying torch/include/ATen/ops/index_fill_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3503930Z copying torch/include/ATen/ops/pad_sequence_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3505200Z copying torch/include/ATen/ops/unsafe_split_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3506750Z copying torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3507540Z copying torch/include/ATen/ops/mish_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3509290Z copying torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3510400Z copying torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3511790Z copying torch/include/ATen/ops/addmm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3513290Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3514190Z copying torch/include/ATen/ops/_convolution_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3515880Z copying torch/include/ATen/ops/atan2_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3517120Z copying torch/include/ATen/ops/bucketize_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3518490Z copying torch/include/ATen/ops/native_layer_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3519690Z copying torch/include/ATen/ops/tan.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3521270Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3522330Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3523750Z copying torch/include/ATen/ops/ge_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3525240Z copying torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3526490Z copying torch/include/ATen/ops/lu_solve_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3527700Z copying torch/include/ATen/ops/conv_tbc_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3529030Z copying torch/include/ATen/ops/_log_softmax_backward_data_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3530490Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3531980Z copying torch/include/ATen/ops/_sobol_engine_draw_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3532790Z copying torch/include/ATen/ops/hardtanh_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3534150Z copying torch/include/ATen/ops/bitwise_and_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3535560Z copying torch/include/ATen/ops/masked_select_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3537160Z copying torch/include/ATen/ops/lerp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3538380Z copying torch/include/ATen/ops/matrix_exp_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3539600Z copying torch/include/ATen/ops/special_erfc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3540880Z copying torch/include/ATen/ops/cosh_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3542280Z copying torch/include/ATen/ops/linalg_cross_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3543630Z copying torch/include/ATen/ops/index_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3544510Z copying torch/include/ATen/ops/linalg_multi_dot_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3546240Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3547630Z copying torch/include/ATen/ops/_cslt_sparse_mm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3548490Z copying torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3549920Z copying torch/include/ATen/ops/index_add.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3551360Z copying torch/include/ATen/ops/lt_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3552590Z copying torch/include/ATen/ops/max_pool2d_with_indices.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3554010Z copying torch/include/ATen/ops/nonzero_static_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3555360Z copying torch/include/ATen/ops/exponential_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3556780Z copying torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3558270Z copying torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3559440Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3560930Z copying torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3562200Z copying torch/include/ATen/ops/cummin_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3563310Z copying torch/include/ATen/ops/quantize_per_channel_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3564840Z copying torch/include/ATen/ops/cauchy_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3566080Z copying torch/include/ATen/ops/rsqrt_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3567470Z copying torch/include/ATen/ops/linspace_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3568860Z copying torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3570170Z copying torch/include/ATen/ops/special_modified_bessel_i1_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3571350Z copying torch/include/ATen/ops/frac_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3572660Z copying torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3573940Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3575270Z copying torch/include/ATen/ops/select_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3576700Z copying torch/include/ATen/ops/_nested_sum_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3578070Z copying torch/include/ATen/ops/_foreach_log_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3579590Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3580580Z copying torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3582020Z copying torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3583360Z copying torch/include/ATen/ops/inner_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3584520Z copying torch/include/ATen/ops/_triton_scaled_dot_attention.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3586070Z copying torch/include/ATen/ops/is_coalesced.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3587300Z copying torch/include/ATen/ops/native_group_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3588730Z copying torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3590030Z copying torch/include/ATen/ops/fft_fftfreq_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3591550Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3592240Z copying torch/include/ATen/ops/max_pool2d_with_indices_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3593940Z copying torch/include/ATen/ops/_standard_gamma_grad_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3595290Z copying torch/include/ATen/ops/linalg_inv_ex_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3596560Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3597860Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3599270Z copying torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3600530Z copying torch/include/ATen/ops/hinge_embedding_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3601730Z copying torch/include/ATen/ops/nanmedian_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3602960Z copying torch/include/ATen/ops/dot_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3604560Z copying torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3605610Z copying torch/include/ATen/ops/stack_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3607000Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3608320Z copying torch/include/ATen/ops/smooth_l1_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3609660Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3611220Z copying torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3612570Z copying torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3614110Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3615190Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3616790Z copying torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3617540Z copying torch/include/ATen/ops/index_put_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3619250Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3620720Z copying torch/include/ATen/ops/glu_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3621520Z copying torch/include/ATen/ops/view_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3623100Z copying torch/include/ATen/ops/_foreach_sign_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3624490Z copying torch/include/ATen/ops/index_add_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3625780Z copying torch/include/ATen/ops/native_layer_norm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3627000Z copying torch/include/ATen/ops/to_padded_tensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3628340Z copying torch/include/ATen/ops/is_set_to_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3629600Z copying torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3630940Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3632240Z copying torch/include/ATen/ops/concatenate.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3633420Z copying torch/include/ATen/ops/logaddexp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3634660Z copying torch/include/ATen/ops/batch_norm_backward_reduce.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3636010Z copying torch/include/ATen/ops/_linalg_eigvals.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3637300Z copying torch/include/ATen/ops/qscheme.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3638570Z copying torch/include/ATen/ops/silu_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3639920Z copying torch/include/ATen/ops/movedim_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3641330Z copying torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3642640Z copying torch/include/ATen/ops/lu_unpack_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3643840Z copying torch/include/ATen/ops/thnn_conv2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3645280Z copying torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3646330Z copying torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3647820Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3649280Z copying torch/include/ATen/ops/sparse_sampled_addmm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3650610Z copying torch/include/ATen/ops/igammac_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3652090Z copying torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3653810Z copying torch/include/ATen/ops/quantized_max_pool1d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3655270Z copying torch/include/ATen/ops/special_airy_ai_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3656960Z copying torch/include/ATen/ops/addcdiv_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3657910Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3659540Z copying torch/include/ATen/ops/_nested_get_max_seqlen_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3660830Z copying torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3662070Z copying torch/include/ATen/ops/addcdiv_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3663570Z copying torch/include/ATen/ops/rsqrt.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3665030Z copying torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3665880Z copying torch/include/ATen/ops/_foreach_lgamma.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3667400Z copying torch/include/ATen/ops/argmax_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3669020Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3670390Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3671640Z copying torch/include/ATen/ops/erfc_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3673090Z copying torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3674470Z copying torch/include/ATen/ops/threshold_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3678830Z copying torch/include/ATen/ops/svd_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3679280Z copying torch/include/ATen/ops/addmm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3679630Z copying torch/include/ATen/ops/lift_fresh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3680180Z copying torch/include/ATen/ops/_foreach_zero_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3681620Z copying torch/include/ATen/ops/flatten_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3682850Z copying torch/include/ATen/ops/linalg_lu_factor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3684410Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3685720Z copying torch/include/ATen/ops/where_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3687190Z copying torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3688460Z copying torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3689430Z copying torch/include/ATen/ops/_pad_enum_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3691080Z copying torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3692390Z copying torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3693700Z copying torch/include/ATen/ops/from_file.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3695200Z copying torch/include/ATen/ops/row_stack_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3696640Z copying torch/include/ATen/ops/clamp_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3698080Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3698870Z copying torch/include/ATen/ops/celu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3700270Z copying torch/include/ATen/ops/matrix_exp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3701780Z copying torch/include/ATen/ops/special_logit_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3703140Z copying torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3704400Z copying torch/include/ATen/ops/lstm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3705850Z copying torch/include/ATen/ops/atan2_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3707430Z copying torch/include/ATen/ops/cummaxmin_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3708850Z copying torch/include/ATen/ops/_functional_sym_constrain_range.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3710430Z copying torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3711860Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3713150Z copying torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3714520Z copying torch/include/ATen/ops/zero_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3715770Z copying torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3717120Z copying torch/include/ATen/ops/row_stack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3718510Z copying torch/include/ATen/ops/slow_conv_transpose3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3719940Z copying torch/include/ATen/ops/miopen_convolution_add_relu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3720860Z copying torch/include/ATen/ops/max_pool2d_with_indices_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3722390Z copying torch/include/ATen/ops/real.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3723920Z copying torch/include/ATen/ops/replication_pad1d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3725270Z copying torch/include/ATen/ops/pairwise_distance_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3726390Z copying torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3727830Z copying torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3729030Z copying torch/include/ATen/ops/_make_dual.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3730250Z copying torch/include/ATen/ops/_make_dual_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3731950Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3733420Z copying torch/include/ATen/ops/renorm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3734510Z copying torch/include/ATen/ops/relu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3736130Z copying torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3737590Z copying torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3738920Z copying torch/include/ATen/ops/avg_pool2d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3739650Z copying torch/include/ATen/ops/_foreach_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3741410Z copying torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3742630Z copying torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3743850Z copying torch/include/ATen/ops/ceil.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3745470Z copying torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3746430Z copying torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3747800Z copying torch/include/ATen/ops/sqrt_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3749320Z copying torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3750720Z copying torch/include/ATen/ops/min_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3752050Z copying torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3753510Z copying torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3754270Z copying torch/include/ATen/ops/_nnpack_available_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3756030Z copying torch/include/ATen/ops/bitwise_right_shift.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3757550Z copying torch/include/ATen/ops/threshold_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3758980Z copying torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3760460Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3761260Z copying torch/include/ATen/ops/_autocast_to_full_precision.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3762910Z copying torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3764060Z copying torch/include/ATen/ops/_nested_get_min_seqlen.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3765550Z copying torch/include/ATen/ops/remainder_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3767010Z copying torch/include/ATen/ops/linalg_det_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3768580Z copying torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3770170Z copying torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3771570Z copying torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3773120Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3774360Z copying torch/include/ATen/ops/randint_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3776090Z copying torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3777420Z copying torch/include/ATen/ops/nested_to_padded_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3779170Z copying torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3780620Z copying torch/include/ATen/ops/resize_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3782080Z copying torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3783610Z copying torch/include/ATen/ops/isclose_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3785010Z copying torch/include/ATen/ops/resize_as_sparse_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3786460Z copying torch/include/ATen/ops/view_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3787970Z copying torch/include/ATen/ops/replication_pad1d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3789610Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3791200Z copying torch/include/ATen/ops/triu_indices_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3792690Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3793980Z copying torch/include/ATen/ops/mish_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3795360Z copying torch/include/ATen/ops/atleast_2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3796970Z copying torch/include/ATen/ops/_nested_get_lengths.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3798330Z copying torch/include/ATen/ops/renorm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3799970Z copying torch/include/ATen/ops/native_group_norm_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3801420Z copying torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3803060Z copying torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3804440Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3805840Z copying torch/include/ATen/ops/take_along_dim_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3807320Z copying torch/include/ATen/ops/_reshape_from_tensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3808880Z copying torch/include/ATen/ops/hsplit_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3810160Z copying torch/include/ATen/ops/gather_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3811710Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3813280Z copying torch/include/ATen/ops/threshold_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3814670Z copying torch/include/ATen/ops/t_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3816190Z copying torch/include/ATen/ops/triu_indices_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3817770Z copying torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3819110Z copying torch/include/ATen/ops/absolute_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3820550Z copying torch/include/ATen/ops/isnan_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3822140Z copying torch/include/ATen/ops/fft_hfft2_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3823640Z copying torch/include/ATen/ops/upsample_nearest3d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3824970Z copying torch/include/ATen/ops/atanh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3826690Z copying torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3828020Z copying torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3829380Z copying torch/include/ATen/ops/fill_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3830760Z copying torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3832360Z copying torch/include/ATen/ops/batch_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3834030Z copying torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3835220Z copying torch/include/ATen/ops/sparse_mask_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3836790Z copying torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3838430Z copying torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3839920Z copying torch/include/ATen/ops/rsub_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3841410Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3842740Z copying torch/include/ATen/ops/sinc_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3844400Z copying torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3845900Z copying torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3847280Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3848820Z copying torch/include/ATen/ops/randint_like_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3850430Z copying torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3851830Z copying torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3853360Z copying torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3854570Z copying torch/include/ATen/ops/abs.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3856460Z copying torch/include/ATen/ops/isin_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3857940Z copying torch/include/ATen/ops/huber_loss_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3859140Z copying torch/include/ATen/ops/retain_grad.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3860560Z copying torch/include/ATen/ops/sparse_resize_and_clear.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3862010Z copying torch/include/ATen/ops/kron_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3863300Z copying torch/include/ATen/ops/log1p_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3864590Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3865860Z copying torch/include/ATen/ops/_batch_norm_no_update_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3867120Z copying torch/include/ATen/ops/bucketize.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3868860Z copying torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3869710Z copying torch/include/ATen/ops/logaddexp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3871320Z copying torch/include/ATen/ops/gather_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3872770Z copying torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3874170Z copying torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3875490Z copying torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3876740Z copying torch/include/ATen/ops/clip_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3878090Z copying torch/include/ATen/ops/bernoulli_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3879370Z copying torch/include/ATen/ops/_local_scalar_dense_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3880860Z copying torch/include/ATen/ops/_cslt_sparse_mm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3882260Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3883310Z copying torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3884690Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3886040Z copying torch/include/ATen/ops/max_pool3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3887460Z copying torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3888800Z copying torch/include/ATen/ops/special_erf_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3890290Z copying torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3891580Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3892520Z copying torch/include/ATen/ops/pow_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3894040Z copying torch/include/ATen/ops/_cast_Double.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3895540Z copying torch/include/ATen/ops/frobenius_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3897550Z copying torch/include/ATen/ops/sinc_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3899140Z copying torch/include/ATen/ops/softplus.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3900410Z copying torch/include/ATen/ops/_foreach_pow_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3905210Z copying torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3905710Z copying torch/include/ATen/ops/kthvalue_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3906060Z copying torch/include/ATen/ops/_is_any_true.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3906430Z copying torch/include/ATen/ops/reshape_as_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3907160Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3908440Z copying torch/include/ATen/ops/special_bessel_y0_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3909890Z copying torch/include/ATen/ops/crow_indices_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3910940Z copying torch/include/ATen/ops/_weight_int8pack_mm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3912230Z copying torch/include/ATen/ops/uniform_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3913640Z copying torch/include/ATen/ops/_embedding_bag_dense_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3915170Z copying torch/include/ATen/ops/to_sparse_csc_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3916510Z copying torch/include/ATen/ops/reshape_as_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3917730Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3919000Z copying torch/include/ATen/ops/replication_pad1d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3920340Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3921650Z copying torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3923240Z copying torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3924490Z copying torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3925890Z copying torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3926820Z copying torch/include/ATen/ops/set_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3928360Z copying torch/include/ATen/ops/numpy_T.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3929870Z copying torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3930850Z copying torch/include/ATen/ops/miopen_batch_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3932610Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3934020Z copying torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3935020Z copying torch/include/ATen/ops/float_power.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3936370Z copying torch/include/ATen/ops/narrow_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3937920Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3939320Z copying torch/include/ATen/ops/unique_consecutive_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3940550Z copying torch/include/ATen/ops/rot90.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3941820Z copying torch/include/ATen/ops/t.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3943690Z copying torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3944950Z copying torch/include/ATen/ops/squeeze_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3946490Z copying torch/include/ATen/ops/clamp_min_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3947700Z copying torch/include/ATen/ops/greater.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3949360Z copying torch/include/ATen/ops/swapaxes_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3950960Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3952020Z copying torch/include/ATen/ops/avg_pool3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3953540Z copying torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3954870Z copying torch/include/ATen/ops/_foreach_sign.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3956410Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3957750Z copying torch/include/ATen/ops/_linalg_svd_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3958750Z copying torch/include/ATen/ops/from_blob.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3960170Z copying torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3961720Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3962910Z copying torch/include/ATen/ops/exp_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3964240Z copying torch/include/ATen/ops/index_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3965890Z copying torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3967240Z copying torch/include/ATen/ops/linspace_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3968600Z copying torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3969860Z copying torch/include/ATen/ops/special_ndtri_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3971370Z copying torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3972860Z copying torch/include/ATen/ops/put_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3974350Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3975400Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3977150Z copying torch/include/ATen/ops/linalg_lu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3978520Z copying torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3979760Z copying torch/include/ATen/ops/log1p_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3981160Z copying torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3982000Z copying torch/include/ATen/ops/tril_indices_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3983920Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3985070Z copying torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3986590Z copying torch/include/ATen/ops/_compute_linear_combination_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3988100Z copying torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3989290Z copying torch/include/ATen/ops/put.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3990660Z copying torch/include/ATen/ops/special_airy_ai_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3992110Z copying torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3993380Z copying torch/include/ATen/ops/reflection_pad1d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3994710Z copying torch/include/ATen/ops/eq_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3996140Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3997380Z copying torch/include/ATen/ops/im2col_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.3998820Z copying torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4000200Z copying torch/include/ATen/ops/cumprod_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4001260Z copying torch/include/ATen/ops/fill_diagonal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4002730Z copying torch/include/ATen/ops/lgamma_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4004010Z copying torch/include/ATen/ops/equal_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4005510Z copying torch/include/ATen/ops/linalg_eigvals_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4006810Z copying torch/include/ATen/ops/_flash_attention_forward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4008410Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4009810Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4011310Z copying torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4012800Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4014310Z copying torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4015500Z copying torch/include/ATen/ops/value_selecting_reduction_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4016710Z copying torch/include/ATen/ops/_unpack_dual.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4018200Z copying torch/include/ATen/ops/special_log_ndtr_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4019740Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4020670Z copying torch/include/ATen/ops/sparse_csc_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4022180Z copying torch/include/ATen/ops/log1p_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4023620Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4024850Z copying torch/include/ATen/ops/flatten_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4026270Z copying torch/include/ATen/ops/sym_numel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4027650Z copying torch/include/ATen/ops/linalg_svdvals_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4028930Z copying torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4030340Z copying torch/include/ATen/ops/masked_select.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4031360Z copying torch/include/ATen/ops/unfold_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4032900Z copying torch/include/ATen/ops/special_airy_ai.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4034310Z copying torch/include/ATen/ops/min_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4035670Z copying torch/include/ATen/ops/fmin_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4036960Z copying torch/include/ATen/ops/logit_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4038300Z copying torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4039480Z copying torch/include/ATen/ops/view.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4040830Z copying torch/include/ATen/ops/threshold_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4042110Z copying torch/include/ATen/ops/mkldnn_rnn_layer_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4043380Z copying torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4044860Z copying torch/include/ATen/ops/_efficient_attention_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4046050Z copying torch/include/ATen/ops/slice_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4047540Z copying torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4048900Z copying torch/include/ATen/ops/polar_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4050220Z copying torch/include/ATen/ops/linspace.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4051550Z copying torch/include/ATen/ops/linalg_matrix_power_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4053010Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4054250Z copying torch/include/ATen/ops/softplus_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4055850Z copying torch/include/ATen/ops/arccos_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4056480Z copying torch/include/ATen/ops/silu_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4058030Z copying torch/include/ATen/ops/digamma_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4059430Z copying torch/include/ATen/ops/cudnn_is_acceptable_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4060790Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4062170Z copying torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4063590Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4064470Z copying torch/include/ATen/ops/special_erfcx_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4066010Z copying torch/include/ATen/ops/_cdist_forward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4067410Z copying torch/include/ATen/ops/mean_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4068710Z copying torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4070050Z copying torch/include/ATen/ops/_foreach_mul_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4071650Z copying torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4072900Z copying torch/include/ATen/ops/round_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4074220Z copying torch/include/ATen/ops/moveaxis.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4075650Z copying torch/include/ATen/ops/_efficient_attention_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4076830Z copying torch/include/ATen/ops/mul_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4078140Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4079810Z copying torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4080590Z copying torch/include/ATen/ops/select_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4082190Z copying torch/include/ATen/ops/acos_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4083550Z copying torch/include/ATen/ops/nansum_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4085000Z copying torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4085930Z copying torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4087560Z copying torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4088910Z copying torch/include/ATen/ops/diag_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4090370Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4091530Z copying torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4093110Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4094370Z copying torch/include/ATen/ops/_embedding_bag_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4095660Z copying torch/include/ATen/ops/mean_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4097110Z copying torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4098580Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4099390Z copying torch/include/ATen/ops/_cudnn_ctc_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4101300Z copying torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4102040Z copying torch/include/ATen/ops/trunc_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4103680Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4104960Z copying torch/include/ATen/ops/detach.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4106360Z copying torch/include/ATen/ops/special_hermite_polynomial_he.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4107720Z copying torch/include/ATen/ops/logaddexp2_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4109070Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4110340Z copying torch/include/ATen/ops/random_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4111730Z copying torch/include/ATen/ops/_aminmax_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4112670Z copying torch/include/ATen/ops/gelu_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4114160Z copying torch/include/ATen/ops/masked_select_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4115730Z copying torch/include/ATen/ops/row_indices_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4116600Z copying torch/include/ATen/ops/expand.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4121490Z copying torch/include/ATen/ops/asinh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4122040Z copying torch/include/ATen/ops/atanh_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4122530Z copying torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4122870Z copying torch/include/ATen/ops/sub_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4123300Z copying torch/include/ATen/ops/affine_grid_generator_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4124460Z copying torch/include/ATen/ops/rnn_tanh_cell_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4125960Z copying torch/include/ATen/ops/ger_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4127580Z copying torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4128670Z copying torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4130030Z copying torch/include/ATen/ops/upsample_linear1d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4131480Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4132850Z copying torch/include/ATen/ops/result_type_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4134500Z copying torch/include/ATen/ops/_prelu_kernel_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4136010Z copying torch/include/ATen/ops/ormqr_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4137510Z copying torch/include/ATen/ops/floor_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4139010Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4140430Z copying torch/include/ATen/ops/slice_inverse_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4141860Z copying torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4143320Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4144400Z copying torch/include/ATen/ops/threshold.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4145960Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4147370Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4148720Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4149990Z copying torch/include/ATen/ops/special_ndtri_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4151390Z copying torch/include/ATen/ops/_sparse_addmm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4152930Z copying torch/include/ATen/ops/special_xlogy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4154570Z copying torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4155990Z copying torch/include/ATen/ops/is_floating_point_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4157390Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4158360Z copying torch/include/ATen/ops/_foreach_pow.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4159710Z copying torch/include/ATen/ops/fft_irfftn_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4161250Z copying torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4162840Z copying torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4164330Z copying torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4165190Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4166480Z copying torch/include/ATen/ops/median_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4168170Z copying torch/include/ATen/ops/fft_ifft.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4169410Z copying torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4170800Z copying torch/include/ATen/ops/ceil_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4172140Z copying torch/include/ATen/ops/leaky_relu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4173370Z copying torch/include/ATen/ops/full_like.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4174880Z copying torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4176160Z copying torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4177620Z copying torch/include/ATen/ops/rad2deg_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4179140Z copying torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4180250Z copying torch/include/ATen/ops/fmax_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4181810Z copying torch/include/ATen/ops/refine_names.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4183080Z copying torch/include/ATen/ops/linalg_cond_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4184550Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4185980Z copying torch/include/ATen/ops/embedding_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4187370Z copying torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4188580Z copying torch/include/ATen/ops/tensordot_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4190250Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4191570Z copying torch/include/ATen/ops/clamp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4192920Z copying torch/include/ATen/ops/_foreach_sqrt_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4194530Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4195340Z copying torch/include/ATen/ops/glu_jvp_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4196850Z copying torch/include/ATen/ops/batch_norm_elemt.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4198460Z copying torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4199890Z copying torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4200860Z copying torch/include/ATen/ops/special_erfcx_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4202280Z copying torch/include/ATen/ops/nextafter_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4203690Z copying torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4205080Z copying torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4206530Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4207750Z copying torch/include/ATen/ops/batch_norm_stats_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4208990Z copying torch/include/ATen/ops/conv_tbc_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4210280Z copying torch/include/ATen/ops/mkldnn_linear_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4211730Z copying torch/include/ATen/ops/_assert_tensor_metadata.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4212950Z copying torch/include/ATen/ops/slice_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4214570Z copying torch/include/ATen/ops/add_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4215870Z copying torch/include/ATen/ops/rnn_tanh_cell.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4217370Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4218710Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4219910Z copying torch/include/ATen/ops/expand_as_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4221380Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4222650Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4223570Z copying torch/include/ATen/ops/masked_scatter_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4225430Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4226340Z copying torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4227760Z copying torch/include/ATen/ops/_aminmax_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4229140Z copying torch/include/ATen/ops/istft_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4230490Z copying torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4231700Z copying torch/include/ATen/ops/max_pool3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4232740Z copying torch/include/ATen/ops/special_expit_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4234270Z copying torch/include/ATen/ops/_stack_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4235610Z copying torch/include/ATen/ops/fliplr_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4236860Z copying torch/include/ATen/ops/acos_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4238490Z copying torch/include/ATen/ops/log10_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4239850Z copying torch/include/ATen/ops/argmax_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4240940Z copying torch/include/ATen/ops/triu_indices.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4242380Z copying torch/include/ATen/ops/sparse_dim_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4243620Z copying torch/include/ATen/ops/bitwise_and_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4244840Z copying torch/include/ATen/ops/atan_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4246520Z copying torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4247110Z copying torch/include/ATen/ops/prod.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4248720Z copying torch/include/ATen/ops/mul_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4250180Z copying torch/include/ATen/ops/is_pinned.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4251000Z copying torch/include/ATen/ops/index_add_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4252680Z copying torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4254170Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4255360Z copying torch/include/ATen/ops/unfold.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4256770Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4258080Z copying torch/include/ATen/ops/rrelu_with_noise_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4259320Z copying torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4260590Z copying torch/include/ATen/ops/upsample_trilinear3d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4262170Z copying torch/include/ATen/ops/linalg_householder_product.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4263500Z copying torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4264400Z copying torch/include/ATen/ops/aminmax_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4265920Z copying torch/include/ATen/ops/view_as_real.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4267230Z copying torch/include/ATen/ops/_softmax_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4268780Z copying torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4269960Z copying torch/include/ATen/ops/huber_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4271710Z copying torch/include/ATen/ops/_native_batch_norm_legit_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4272420Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4274120Z copying torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4275510Z copying torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4276800Z copying torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4278350Z copying torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4279170Z copying torch/include/ATen/ops/diagflat.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4280790Z copying torch/include/ATen/ops/amax_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4282060Z copying torch/include/ATen/ops/addr_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4283320Z copying torch/include/ATen/ops/special_i1e.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4284640Z copying torch/include/ATen/ops/_embedding_bag_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4286130Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4286910Z copying torch/include/ATen/ops/zero_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4288510Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4289830Z copying torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4290980Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4292540Z copying torch/include/ATen/ops/arange_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4293820Z copying torch/include/ATen/ops/mish_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4295380Z copying torch/include/ATen/ops/chalf_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4296700Z copying torch/include/ATen/ops/linalg_svdvals.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4298020Z copying torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4299420Z copying torch/include/ATen/ops/special_spherical_bessel_j0.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4300870Z copying torch/include/ATen/ops/_weight_int4pack_mm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4302090Z copying torch/include/ATen/ops/expm1_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4303530Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4304420Z copying torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4306270Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4307030Z copying torch/include/ATen/ops/std_mean.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4308680Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4309910Z copying torch/include/ATen/ops/_linalg_eigh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4311300Z copying torch/include/ATen/ops/smooth_l1_loss_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4312460Z copying torch/include/ATen/ops/igamma_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4314010Z copying torch/include/ATen/ops/_embedding_bag_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4315300Z copying torch/include/ATen/ops/remainder_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4316770Z copying torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4317520Z copying torch/include/ATen/ops/masked_select_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4319140Z copying torch/include/ATen/ops/_sparse_sum_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4320340Z copying torch/include/ATen/ops/empty.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4322000Z copying torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4323310Z copying torch/include/ATen/ops/baddbmm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4324560Z copying torch/include/ATen/ops/poisson_nll_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4325790Z copying torch/include/ATen/ops/baddbmm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4326950Z copying torch/include/ATen/ops/ger.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4328700Z copying torch/include/ATen/ops/_conv_depthwise2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4329690Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4331350Z copying torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4332770Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4337450Z copying torch/include/ATen/ops/lift_fresh_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4337980Z copying torch/include/ATen/ops/nll_loss2d_forward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4338460Z copying torch/include/ATen/ops/imag_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4338830Z copying torch/include/ATen/ops/full_like_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4339250Z copying torch/include/ATen/ops/_cast_Float_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4340200Z copying torch/include/ATen/ops/upsample_nearest3d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4341780Z copying torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4342980Z copying torch/include/ATen/ops/lt_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4344280Z copying torch/include/ATen/ops/copysign.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4345700Z copying torch/include/ATen/ops/_indices_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4347090Z copying torch/include/ATen/ops/replication_pad3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4348420Z copying torch/include/ATen/ops/index_fill_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4349290Z copying torch/include/ATen/ops/conv_tbc_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4351080Z copying torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4352260Z copying torch/include/ATen/ops/logical_xor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4353700Z copying torch/include/ATen/ops/logit_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4354970Z copying torch/include/ATen/ops/softplus_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4356400Z copying torch/include/ATen/ops/upsample_nearest3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4357630Z copying torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4358890Z copying torch/include/ATen/ops/ceil_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4360180Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4361490Z copying torch/include/ATen/ops/nanquantile_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4362830Z copying torch/include/ATen/ops/_make_dep_token_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4364190Z copying torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4365970Z copying torch/include/ATen/ops/batch_norm_backward_elemt_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4366510Z copying torch/include/ATen/ops/special_round_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4368080Z copying torch/include/ATen/ops/_reshape_alias.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4369260Z copying torch/include/ATen/ops/le_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4370440Z copying torch/include/ATen/ops/softshrink_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4372030Z copying torch/include/ATen/ops/resolve_neg_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4373260Z copying torch/include/ATen/ops/binomial_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4374260Z copying torch/include/ATen/ops/mvlgamma_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4375800Z copying torch/include/ATen/ops/lshift_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4377190Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4378590Z copying torch/include/ATen/ops/_efficient_attention_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4379560Z copying torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4381210Z copying torch/include/ATen/ops/special_gammaincc_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4382640Z copying torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4383430Z copying torch/include/ATen/ops/cosh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4384940Z copying torch/include/ATen/ops/clamp_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4386190Z copying torch/include/ATen/ops/binary_cross_entropy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4387430Z copying torch/include/ATen/ops/concat.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4388660Z copying torch/include/ATen/ops/mul_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4390060Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4391510Z copying torch/include/ATen/ops/special_multigammaln.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4392740Z copying torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4393930Z copying torch/include/ATen/ops/fft_ifftn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4395360Z copying torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4396510Z copying torch/include/ATen/ops/nonzero_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4397600Z copying torch/include/ATen/ops/nonzero.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4399220Z copying torch/include/ATen/ops/fliplr_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4400360Z copying torch/include/ATen/ops/negative_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4401750Z copying torch/include/ATen/ops/fft_fftn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4403110Z copying torch/include/ATen/ops/native_batch_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4404450Z copying torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4405770Z copying torch/include/ATen/ops/new_empty_strided_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4407120Z copying torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4408340Z copying torch/include/ATen/ops/scatter_add_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4409670Z copying torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4410960Z copying torch/include/ATen/ops/eye_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4412220Z copying torch/include/ATen/ops/cartesian_prod_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4413670Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4415170Z copying torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4416000Z copying torch/include/ATen/ops/conv_transpose2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4417370Z copying torch/include/ATen/ops/as_strided.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4418710Z copying torch/include/ATen/ops/geometric_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4419700Z copying torch/include/ATen/ops/cosh_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4421330Z copying torch/include/ATen/ops/copysign_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4422740Z copying torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4424010Z copying torch/include/ATen/ops/output_nr_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4425240Z copying torch/include/ATen/ops/argsort_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4426570Z copying torch/include/ATen/ops/fft_hfft_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4427780Z copying torch/include/ATen/ops/sinh_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4429030Z copying torch/include/ATen/ops/_foreach_sin_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4430110Z copying torch/include/ATen/ops/_unique_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4431530Z copying torch/include/ATen/ops/sin_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4432790Z copying torch/include/ATen/ops/range_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4434130Z copying torch/include/ATen/ops/special_log_softmax.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4435630Z copying torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4436850Z copying torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4438180Z copying torch/include/ATen/ops/argmax_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4439370Z copying torch/include/ATen/ops/detach_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4440960Z copying torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4441860Z copying torch/include/ATen/ops/isnan.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4443200Z copying torch/include/ATen/ops/special_xlogy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4444690Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4445610Z copying torch/include/ATen/ops/all_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4447280Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4448750Z copying torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4449550Z copying torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4451220Z copying torch/include/ATen/ops/cumsum_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4452570Z copying torch/include/ATen/ops/as_strided_scatter_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4453490Z copying torch/include/ATen/ops/scatter_reduce_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4455240Z copying torch/include/ATen/ops/_indices.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4456020Z copying torch/include/ATen/ops/_linalg_det_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4457670Z copying torch/include/ATen/ops/sin_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4459300Z copying torch/include/ATen/ops/random_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4460510Z copying torch/include/ATen/ops/_pdist_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4461800Z copying torch/include/ATen/ops/nll_loss_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4462990Z copying torch/include/ATen/ops/tanh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4464230Z copying torch/include/ATen/ops/cumprod.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4465330Z copying torch/include/ATen/ops/special_entr_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4466830Z copying torch/include/ATen/ops/_foreach_lgamma_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4468130Z copying torch/include/ATen/ops/any_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4469580Z copying torch/include/ATen/ops/_add_batch_dim_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4471080Z copying torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4471950Z copying torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4473670Z copying torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4474690Z copying torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4476390Z copying torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4477790Z copying torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4478690Z copying torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4480250Z copying torch/include/ATen/ops/linalg_cholesky_ex.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4481670Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4482920Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4484280Z copying torch/include/ATen/ops/geqrf_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4485540Z copying torch/include/ATen/ops/fft_rfftn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4486910Z copying torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4488210Z copying torch/include/ATen/ops/slow_conv3d_forward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4490020Z copying torch/include/ATen/ops/qr_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4490680Z copying torch/include/ATen/ops/linalg_cholesky.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4492350Z copying torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4493440Z copying torch/include/ATen/ops/lerp_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4495330Z copying torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4495980Z copying torch/include/ATen/ops/masked_scatter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4497510Z copying torch/include/ATen/ops/flip_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4498780Z copying torch/include/ATen/ops/topk_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4500160Z copying torch/include/ATen/ops/_neg_view_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4501570Z copying torch/include/ATen/ops/silu_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4502850Z copying torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4504090Z copying torch/include/ATen/ops/col_indices_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4505590Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4506430Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4507860Z copying torch/include/ATen/ops/rand_like_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4509240Z copying torch/include/ATen/ops/_foobar_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4510540Z copying torch/include/ATen/ops/histogram_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4511830Z copying torch/include/ATen/ops/all_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4513290Z copying torch/include/ATen/ops/native_channel_shuffle.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4514450Z copying torch/include/ATen/ops/vdot.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4515790Z copying torch/include/ATen/ops/slow_conv_dilated3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4517250Z copying torch/include/ATen/ops/any_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4518130Z copying torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4519650Z copying torch/include/ATen/ops/_sparse_log_softmax_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4521010Z copying torch/include/ATen/ops/avg_pool2d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4521850Z copying torch/include/ATen/ops/_dirichlet_grad_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4523180Z copying torch/include/ATen/ops/_coalesced_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4524820Z copying torch/include/ATen/ops/baddbmm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4525940Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4527350Z copying torch/include/ATen/ops/trace_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4528630Z copying torch/include/ATen/ops/nextafter_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4529990Z copying torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4531510Z copying torch/include/ATen/ops/softshrink_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4532320Z copying torch/include/ATen/ops/native_dropout_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4533960Z copying torch/include/ATen/ops/_native_multi_head_attention.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4535330Z copying torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4536750Z copying torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4538070Z copying torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4539530Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4540990Z copying torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4541730Z copying torch/include/ATen/ops/renorm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4546870Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4547390Z copying torch/include/ATen/ops/t_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4547830Z copying torch/include/ATen/ops/unsafe_split_with_sizes_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4548250Z copying torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4548630Z copying torch/include/ATen/ops/fmin_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4549410Z copying torch/include/ATen/ops/_sparse_sum_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4551080Z copying torch/include/ATen/ops/special_sinc_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4552140Z copying torch/include/ATen/ops/nll_loss_nd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4553650Z copying torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4554970Z copying torch/include/ATen/ops/_softmax_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4556170Z copying torch/include/ATen/ops/miopen_batch_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4557540Z copying torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4558710Z copying torch/include/ATen/ops/gather_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4559960Z copying torch/include/ATen/ops/reflection_pad3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4561290Z copying torch/include/ATen/ops/relu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4562790Z copying torch/include/ATen/ops/poisson_nll_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4564090Z copying torch/include/ATen/ops/bitwise_not_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4565370Z copying torch/include/ATen/ops/item_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4566690Z copying torch/include/ATen/ops/_native_batch_norm_legit_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4568170Z copying torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4569440Z copying torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4571000Z copying torch/include/ATen/ops/special_legendre_polynomial_p.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4571910Z copying torch/include/ATen/ops/cudnn_batch_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4573590Z copying torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4574750Z copying torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4576240Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4577540Z copying torch/include/ATen/ops/pixel_shuffle_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4578890Z copying torch/include/ATen/ops/rshift.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4580250Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4581510Z copying torch/include/ATen/ops/batch_norm_update_stats_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4582520Z copying torch/include/ATen/ops/squeeze_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4584100Z copying torch/include/ATen/ops/special_i0e_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4585410Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4586630Z copying torch/include/ATen/ops/mish.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4587890Z copying torch/include/ATen/ops/subtract.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4589190Z copying torch/include/ATen/ops/trunc_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4590540Z copying torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4591790Z copying torch/include/ATen/ops/amin_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4593150Z copying torch/include/ATen/ops/amin_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4594800Z copying torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4595530Z copying torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4597070Z copying torch/include/ATen/ops/miopen_convolution_relu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4598460Z copying torch/include/ATen/ops/indices_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4599880Z copying torch/include/ATen/ops/_reshape_from_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4600790Z copying torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4602230Z copying torch/include/ATen/ops/blackman_window_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4603660Z copying torch/include/ATen/ops/batch_norm_elemt_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4605090Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4606360Z copying torch/include/ATen/ops/_sobol_engine_ff_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4607220Z copying torch/include/ATen/ops/sort_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4608570Z copying torch/include/ATen/ops/logit_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4610160Z copying torch/include/ATen/ops/cat_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4611530Z copying torch/include/ATen/ops/le_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4612950Z copying torch/include/ATen/ops/mean_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4613830Z copying torch/include/ATen/ops/is_inference.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4615380Z copying torch/include/ATen/ops/fft_ihfftn_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4616410Z copying torch/include/ATen/ops/mode_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4617890Z copying torch/include/ATen/ops/segment_reduce_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4619240Z copying torch/include/ATen/ops/detach_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4620610Z copying torch/include/ATen/ops/_triton_multi_head_attention_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4621770Z copying torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4623280Z copying torch/include/ATen/ops/corrcoef_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4624650Z copying torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4626260Z copying torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4627630Z copying torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4628650Z copying torch/include/ATen/ops/unflatten_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4630240Z copying torch/include/ATen/ops/avg_pool3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4631380Z copying torch/include/ATen/ops/ldexp_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4632740Z copying torch/include/ATen/ops/special_log1p.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4634280Z copying torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4635780Z copying torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4637130Z copying torch/include/ATen/ops/le_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4638400Z copying torch/include/ATen/ops/threshold_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4639910Z copying torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4640730Z copying torch/include/ATen/ops/align_as.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4642180Z copying torch/include/ATen/ops/linspace_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4643850Z copying torch/include/ATen/ops/_nested_get_ragged_idx_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4645380Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4646630Z copying torch/include/ATen/ops/slow_conv_transpose2d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4647880Z copying torch/include/ATen/ops/narrow.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4649350Z copying torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4650790Z copying torch/include/ATen/ops/hspmm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4651860Z copying torch/include/ATen/ops/_saturate_weight_to_fp16.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4653610Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4655090Z copying torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4655830Z copying torch/include/ATen/ops/var_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4657350Z copying torch/include/ATen/ops/erfinv_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4658680Z copying torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4660160Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4661650Z copying torch/include/ATen/ops/dot_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4662920Z copying torch/include/ATen/ops/sparse_dim_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4664360Z copying torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4665590Z copying torch/include/ATen/ops/resize.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4666980Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4668420Z copying torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4669750Z copying torch/include/ATen/ops/erfc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4671380Z copying torch/include/ATen/ops/logical_not_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4672790Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4674160Z copying torch/include/ATen/ops/to_sparse_bsr_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4675420Z copying torch/include/ATen/ops/digamma_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4676760Z copying torch/include/ATen/ops/lstm_cell.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4678230Z copying torch/include/ATen/ops/digamma_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4679770Z copying torch/include/ATen/ops/argsort_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4681300Z copying torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4682100Z copying torch/include/ATen/ops/col_indices.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4683790Z copying torch/include/ATen/ops/tile_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4685270Z copying torch/include/ATen/ops/mm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4686620Z copying torch/include/ATen/ops/movedim_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4687990Z copying torch/include/ATen/ops/bincount_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4689760Z copying torch/include/ATen/ops/tril_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4690580Z copying torch/include/ATen/ops/logical_xor_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4692050Z copying torch/include/ATen/ops/_nested_view_from_jagged_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4693410Z copying torch/include/ATen/ops/matrix_H_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4694910Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4696200Z copying torch/include/ATen/ops/bitwise_not_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4697430Z copying torch/include/ATen/ops/_indices_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4698970Z copying torch/include/ATen/ops/addbmm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4699760Z copying torch/include/ATen/ops/sym_storage_offset_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4701330Z copying torch/include/ATen/ops/ctc_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4702590Z copying torch/include/ATen/ops/quantized_max_pool3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4703870Z copying torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4705290Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4706580Z copying torch/include/ATen/ops/eq_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4707940Z copying torch/include/ATen/ops/angle_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4709700Z copying torch/include/ATen/ops/take_along_dim_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4711250Z copying torch/include/ATen/ops/_dimI_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4712560Z copying torch/include/ATen/ops/atan_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4714150Z copying torch/include/ATen/ops/unfold_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4715540Z copying torch/include/ATen/ops/_sparse_sparse_matmul_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4716930Z copying torch/include/ATen/ops/_debug_has_internal_overlap.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4718160Z copying torch/include/ATen/ops/special_ndtri_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4719350Z copying torch/include/ATen/ops/resize_as_sparse_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4721060Z copying torch/include/ATen/ops/to_mkldnn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4722220Z copying torch/include/ATen/ops/le.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4723750Z copying torch/include/ATen/ops/fft_ihfftn_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4724950Z copying torch/include/ATen/ops/lstm_mps_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4726370Z copying torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4727570Z copying torch/include/ATen/ops/transpose_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4728820Z copying torch/include/ATen/ops/meshgrid_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4730380Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4731700Z copying torch/include/ATen/ops/_cudnn_rnn_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4733670Z copying torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4736310Z copying torch/include/ATen/ops/_fused_adam_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4736760Z copying torch/include/ATen/ops/copy_sparse_to_sparse_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4738120Z copying torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4739450Z copying torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4740710Z copying torch/include/ATen/ops/special_gammainc_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4742050Z copying torch/include/ATen/ops/embedding_sparse_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4743280Z copying torch/include/ATen/ops/adaptive_max_pool1d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4744780Z copying torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4746140Z copying torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4746960Z copying torch/include/ATen/ops/fft_hfft2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4748560Z copying torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4749770Z copying torch/include/ATen/ops/split_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4751030Z copying torch/include/ATen/ops/empty_permuted.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4752310Z copying torch/include/ATen/ops/smm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4753570Z copying torch/include/ATen/ops/_foreach_expm1_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4755000Z copying torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4759390Z copying torch/include/ATen/ops/is_conj_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4759920Z copying torch/include/ATen/ops/fft_fftshift_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4760350Z copying torch/include/ATen/ops/_convolution_mode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4760730Z copying torch/include/ATen/ops/diagonal_scatter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4761170Z copying torch/include/ATen/ops/sym_constrain_range_for_size_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4762550Z copying torch/include/ATen/ops/_unique_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4763780Z copying torch/include/ATen/ops/cdist_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4765100Z copying torch/include/ATen/ops/conv_tbc_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4766450Z copying torch/include/ATen/ops/triangular_solve_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4767780Z copying torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4769030Z copying torch/include/ATen/ops/unique_dim_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4770380Z copying torch/include/ATen/ops/searchsorted_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4771790Z copying torch/include/ATen/ops/logspace_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4772740Z copying torch/include/ATen/ops/record_stream_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4774330Z copying torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4775590Z copying torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4776860Z copying torch/include/ATen/ops/frac.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4778290Z copying torch/include/ATen/ops/binomial_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4779540Z copying torch/include/ATen/ops/fft_ihfft_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4781020Z copying torch/include/ATen/ops/amin_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4781790Z copying torch/include/ATen/ops/hamming_window_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4783590Z copying torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4784570Z copying torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4786230Z copying torch/include/ATen/ops/indices.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4787310Z copying torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4788860Z copying torch/include/ATen/ops/bitwise_and_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4790150Z copying torch/include/ATen/ops/searchsorted_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4791460Z copying torch/include/ATen/ops/histc_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4792530Z copying torch/include/ATen/ops/_assert_tensor_metadata_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4794140Z copying torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4795460Z copying torch/include/ATen/ops/is_pinned_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4796630Z copying torch/include/ATen/ops/empty_quantized_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4797910Z copying torch/include/ATen/ops/cholesky_inverse_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4799380Z copying torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4800280Z copying torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4801630Z copying torch/include/ATen/ops/arctanh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4802940Z copying torch/include/ATen/ops/alias_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4804630Z copying torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4805940Z copying torch/include/ATen/ops/linalg_pinv.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4807160Z copying torch/include/ATen/ops/instance_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4808490Z copying torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4809470Z copying torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4811170Z copying torch/include/ATen/ops/scatter_add_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4812530Z copying torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4813710Z copying torch/include/ATen/ops/kron_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4815160Z copying torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4816540Z copying torch/include/ATen/ops/arctan2_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4817870Z copying torch/include/ATen/ops/eye.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4819540Z copying torch/include/ATen/ops/_foreach_log1p_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4821100Z copying torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4822220Z copying torch/include/ATen/ops/_foreach_sqrt.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4823940Z copying torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4825000Z copying torch/include/ATen/ops/silu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4826440Z copying torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4827690Z copying torch/include/ATen/ops/nll_loss2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4829270Z copying torch/include/ATen/ops/rnn_relu_cell_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4830640Z copying torch/include/ATen/ops/bitwise_or_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4831400Z copying torch/include/ATen/ops/bartlett_window.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4833040Z copying torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4834500Z copying torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4835880Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4837120Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4838180Z copying torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4839600Z copying torch/include/ATen/ops/empty_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4841130Z copying torch/include/ATen/ops/_linalg_check_errors_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4842480Z copying torch/include/ATen/ops/cudnn_batch_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4843740Z copying torch/include/ATen/ops/_gather_sparse_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4845100Z copying torch/include/ATen/ops/empty_strided_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4846470Z copying torch/include/ATen/ops/view_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4847850Z copying torch/include/ATen/ops/special_entr_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4848790Z copying torch/include/ATen/ops/sinh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4850720Z copying torch/include/ATen/ops/_nested_from_padded_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4852270Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4853810Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4854820Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4856190Z copying torch/include/ATen/ops/frac_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4857720Z copying torch/include/ATen/ops/special_i1_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4859230Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4860010Z copying torch/include/ATen/ops/_foreach_tan_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4861660Z copying torch/include/ATen/ops/tan_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4862930Z copying torch/include/ATen/ops/frobenius_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4864260Z copying torch/include/ATen/ops/linalg_matrix_exp_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4865590Z copying torch/include/ATen/ops/sgn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4866880Z copying torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4868080Z copying torch/include/ATen/ops/_trilinear.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4869590Z copying torch/include/ATen/ops/glu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4871350Z copying torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4872190Z copying torch/include/ATen/ops/cudnn_convolution_add_relu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4874080Z copying torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4875320Z copying torch/include/ATen/ops/as_strided_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4876760Z copying torch/include/ATen/ops/_test_optional_floatlist_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4878230Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4879430Z copying torch/include/ATen/ops/sum.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4880470Z copying torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4881820Z copying torch/include/ATen/ops/special_xlog1py.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4883380Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4884820Z copying torch/include/ATen/ops/inner_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4885940Z copying torch/include/ATen/ops/elu_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4887410Z copying torch/include/ATen/ops/_foreach_round_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4888650Z copying torch/include/ATen/ops/equal_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4890040Z copying torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4891310Z copying torch/include/ATen/ops/linalg_lu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4892630Z copying torch/include/ATen/ops/unbind_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4894000Z copying torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4895290Z copying torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4896630Z copying torch/include/ATen/ops/_pin_memory_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4897940Z copying torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4899270Z copying torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4900470Z copying torch/include/ATen/ops/linalg_det.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4901560Z copying torch/include/ATen/ops/chalf_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4903120Z copying torch/include/ATen/ops/_sobol_engine_scramble_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4904530Z copying torch/include/ATen/ops/floor_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4905950Z copying torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4907210Z copying torch/include/ATen/ops/special_polygamma_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4908500Z copying torch/include/ATen/ops/values.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4910000Z copying torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4911330Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4912360Z copying torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4913940Z copying torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4915240Z copying torch/include/ATen/ops/gelu_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4916550Z copying torch/include/ATen/ops/adaptive_avg_pool1d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4918130Z copying torch/include/ATen/ops/cumsum_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4919480Z copying torch/include/ATen/ops/bernoulli_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4920730Z copying torch/include/ATen/ops/_assert_async_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4922150Z copying torch/include/ATen/ops/isposinf_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4923610Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4924600Z copying torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4926350Z copying torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4927640Z copying torch/include/ATen/ops/special_i0_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4928840Z copying torch/include/ATen/ops/linalg_cond_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4930150Z copying torch/include/ATen/ops/to.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4931460Z copying torch/include/ATen/ops/_linalg_svd_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4932720Z copying torch/include/ATen/ops/angle.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.4934070Z copying torch/include/ATen/ops/softplus_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.5196020Z copying torch/include/ATen/ops/allclose.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6392550Z copying torch/include/ATen/ops/special_i1_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6393830Z copying torch/include/ATen/ops/_embedding_bag.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6395690Z copying torch/include/ATen/ops/kaiser_window_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6396380Z copying torch/include/ATen/ops/_unpack_dual_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6398050Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6399690Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6403060Z copying torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6404470Z copying torch/include/ATen/ops/clamp_min_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6405850Z copying torch/include/ATen/ops/expand_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6407330Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6408720Z copying torch/include/ATen/ops/binary_cross_entropy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6410280Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6417760Z copying torch/include/ATen/ops/_debug_has_internal_overlap_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6420060Z copying torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6420540Z copying torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6422010Z copying torch/include/ATen/ops/soft_margin_loss_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6423320Z copying torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6425180Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6425950Z copying torch/include/ATen/ops/special_modified_bessel_k1.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6427470Z copying torch/include/ATen/ops/rsqrt_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6429290Z copying torch/include/ATen/ops/to_dense.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6430060Z copying torch/include/ATen/ops/fmin.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6431790Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6432900Z copying torch/include/ATen/ops/scatter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6435060Z copying torch/include/ATen/ops/scaled_dot_product_attention.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6440630Z copying torch/include/ATen/ops/mode_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6441170Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6441640Z copying torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6442050Z copying torch/include/ATen/ops/masked_select_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6442440Z copying torch/include/ATen/ops/_test_ambiguous_defaults.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6443240Z copying torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6444450Z copying torch/include/ATen/ops/mul.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6446000Z copying torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6447290Z copying torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6448710Z copying torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6450100Z copying torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6451420Z copying torch/include/ATen/ops/upsample_nearest2d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6452800Z copying torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6454130Z copying torch/include/ATen/ops/sparse_csc_tensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6455300Z copying torch/include/ATen/ops/gcd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6456610Z copying torch/include/ATen/ops/_dimV.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6459540Z copying torch/include/ATen/ops/batch_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6461090Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6462450Z copying torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6463720Z copying torch/include/ATen/ops/native_layer_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6464770Z copying torch/include/ATen/ops/special_ndtr_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6466520Z copying torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6467290Z copying torch/include/ATen/ops/retain_grad_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6468820Z copying torch/include/ATen/ops/asin_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6470220Z copying torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6471530Z copying torch/include/ATen/ops/column_stack_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6473040Z copying torch/include/ATen/ops/_weight_int8pack_mm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6475540Z copying torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6481030Z copying torch/include/ATen/ops/_flash_attention_forward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6488190Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6492430Z copying torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6499220Z copying torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6501480Z copying torch/include/ATen/ops/logit_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6517750Z copying torch/include/ATen/ops/log_normal_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6518920Z copying torch/include/ATen/ops/qr_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6526090Z copying torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6532300Z copying torch/include/ATen/ops/trunc_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6534070Z copying torch/include/ATen/ops/miopen_rnn_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6540960Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6545140Z copying torch/include/ATen/ops/_foreach_sub_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6549240Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6553250Z copying torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6554540Z copying torch/include/ATen/ops/clamp_min_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6557620Z copying torch/include/ATen/ops/is_leaf.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6564980Z copying torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6569450Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6571160Z copying torch/include/ATen/ops/ldexp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6578260Z copying torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6580570Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6584210Z copying torch/include/ATen/ops/upsample_nearest3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6585860Z copying torch/include/ATen/ops/bmm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6599380Z copying torch/include/ATen/ops/linalg_inv.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6610740Z copying torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6616200Z copying torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6619180Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6622160Z copying torch/include/ATen/ops/_pack_padded_sequence_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6624310Z copying torch/include/ATen/ops/randperm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6630910Z copying torch/include/ATen/ops/index_reduce_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6632160Z copying torch/include/ATen/ops/lu_solve_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6636380Z copying torch/include/ATen/ops/dense_dim_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6637870Z copying torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6643750Z copying torch/include/ATen/ops/exp2_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6645830Z copying torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6652600Z copying torch/include/ATen/ops/margin_ranking_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6654110Z copying torch/include/ATen/ops/bitwise_right_shift_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6657210Z copying torch/include/ATen/ops/sparse_csr_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6658620Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6660600Z copying torch/include/ATen/ops/sqrt_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6666760Z copying torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6667980Z copying torch/include/ATen/ops/index_fill_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6674220Z copying torch/include/ATen/ops/maximum_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6675470Z copying torch/include/ATen/ops/asinh_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6681880Z copying torch/include/ATen/ops/bitwise_not_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6684440Z copying torch/include/ATen/ops/random_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6686090Z copying torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6688390Z copying torch/include/ATen/ops/_foreach_expm1_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6692550Z copying torch/include/ATen/ops/special_spherical_bessel_j0_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6695000Z copying torch/include/ATen/ops/special_entr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6699700Z copying torch/include/ATen/ops/argsort_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6702440Z copying torch/include/ATen/ops/upsample_bilinear2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6707120Z copying torch/include/ATen/ops/erf_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6708580Z copying torch/include/ATen/ops/_cast_Char.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6712030Z copying torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6716100Z copying torch/include/ATen/ops/trace_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6718980Z copying torch/include/ATen/ops/hinge_embedding_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6723820Z copying torch/include/ATen/ops/bartlett_window_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6725130Z copying torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6730950Z copying torch/include/ATen/ops/indices_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6732630Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6738970Z copying torch/include/ATen/ops/unsafe_chunk.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6740700Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6742290Z copying torch/include/ATen/ops/_dirichlet_grad.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6744500Z copying torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6749020Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6751550Z copying torch/include/ATen/ops/glu_backward_jvp_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6777310Z copying torch/include/ATen/ops/igammac_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6778660Z copying torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6780350Z copying torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6782020Z copying torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6787680Z copying torch/include/ATen/ops/reflection_pad3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6789760Z copying torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6791700Z copying torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6794150Z copying torch/include/ATen/ops/gt.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6805860Z copying torch/include/ATen/ops/_nnpack_available_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6807170Z copying torch/include/ATen/ops/fft_fft_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6808610Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6812340Z copying torch/include/ATen/ops/argsort_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6814070Z copying torch/include/ATen/ops/relu_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6815410Z copying torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6816950Z copying torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6818380Z copying torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6819870Z copying torch/include/ATen/ops/_shape_as_tensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6822630Z copying torch/include/ATen/ops/logical_and.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6825520Z copying torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6828030Z copying torch/include/ATen/ops/diff.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6832680Z copying torch/include/ATen/ops/round_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6838150Z copying torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6843960Z copying torch/include/ATen/ops/softplus_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6845310Z copying torch/include/ATen/ops/bincount_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6846660Z copying torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6850670Z copying torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6851890Z copying torch/include/ATen/ops/_mkldnn_transpose.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6854220Z copying torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6859440Z copying torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6866350Z copying torch/include/ATen/ops/grid_sampler_2d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6869290Z copying torch/include/ATen/ops/special_digamma_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6874340Z copying torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6879340Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6881040Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6882580Z copying torch/include/ATen/ops/isposinf_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6886040Z copying torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6888030Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6891150Z copying torch/include/ATen/ops/floor_divide_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6893880Z copying torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6899360Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6901150Z copying torch/include/ATen/ops/_cast_Char_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6905360Z copying torch/include/ATen/ops/embedding_renorm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6908830Z copying torch/include/ATen/ops/promote_types_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6912150Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6915710Z copying torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6916930Z copying torch/include/ATen/ops/_to_sparse_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6920730Z copying torch/include/ATen/ops/cov_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6924020Z copying torch/include/ATen/ops/greater_equal_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6927550Z copying torch/include/ATen/ops/gather_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6932240Z copying torch/include/ATen/ops/scaled_dot_product_attention_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6935590Z copying torch/include/ATen/ops/_is_all_true_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6943830Z copying torch/include/ATen/ops/nonzero_numpy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6945260Z copying torch/include/ATen/ops/masked_scatter_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6946500Z copying torch/include/ATen/ops/hardsigmoid_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6951900Z copying torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6953020Z copying torch/include/ATen/ops/msort.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6956100Z copying torch/include/ATen/ops/_embedding_bag_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6958220Z copying torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6961880Z copying torch/include/ATen/ops/hstack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6965670Z copying torch/include/ATen/ops/_unique2_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6968920Z copying torch/include/ATen/ops/divide_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6972420Z copying torch/include/ATen/ops/randn_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6975870Z copying torch/include/ATen/ops/var_mean.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6978640Z copying torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6982490Z copying torch/include/ATen/ops/hardsigmoid_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6989140Z copying torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6989700Z copying torch/include/ATen/ops/_linalg_svd_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6990090Z copying torch/include/ATen/ops/_sparse_softmax_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6995660Z copying torch/include/ATen/ops/q_per_channel_axis.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.6997380Z copying torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7003230Z copying torch/include/ATen/ops/_fused_adamw_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7004700Z copying torch/include/ATen/ops/complex_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7009940Z copying torch/include/ATen/ops/fix_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7011610Z copying torch/include/ATen/ops/upsample_bicubic2d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7017280Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7018770Z copying torch/include/ATen/ops/cat_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7024530Z copying torch/include/ATen/ops/_empty_affine_quantized.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7026250Z copying torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7032370Z copying torch/include/ATen/ops/to_sparse_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7033670Z copying torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7038670Z copying torch/include/ATen/ops/_foreach_div_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7040210Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7042920Z copying torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7046640Z copying torch/include/ATen/ops/segment_reduce.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7050440Z copying torch/include/ATen/ops/cos_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7051930Z copying torch/include/ATen/ops/linalg_tensorinv_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7054740Z copying torch/include/ATen/ops/fft_ifft2_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7057620Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7061470Z copying torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7068220Z copying torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7071070Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7072440Z copying torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7077220Z copying torch/include/ATen/ops/sym_stride.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7081370Z copying torch/include/ATen/ops/special_hermite_polynomial_h_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7085280Z copying torch/include/ATen/ops/tan_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7088000Z copying torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7091420Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7094010Z copying torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7098590Z copying torch/include/ATen/ops/triu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7100260Z copying torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7105830Z copying torch/include/ATen/ops/hardshrink_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7107510Z copying torch/include/ATen/ops/argmax_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7112840Z copying torch/include/ATen/ops/softshrink_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7114760Z copying torch/include/ATen/ops/randn_like.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7117860Z copying torch/include/ATen/ops/histogram_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7122370Z copying torch/include/ATen/ops/dstack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7124930Z copying torch/include/ATen/ops/_to_sparse_csc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7130010Z copying torch/include/ATen/ops/binary_cross_entropy_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7130840Z copying torch/include/ATen/ops/_int_mm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7135580Z copying torch/include/ATen/ops/_lu_with_info_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7137370Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7142830Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7146390Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7148720Z copying torch/include/ATen/ops/trace.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7150600Z copying torch/include/ATen/ops/matrix_exp_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7154520Z copying torch/include/ATen/ops/indices_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7159280Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7161330Z copying torch/include/ATen/ops/gru_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7168810Z copying torch/include/ATen/ops/elu_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7170200Z copying torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7176240Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7177720Z copying torch/include/ATen/ops/_test_warn_in_autograd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7179220Z copying torch/include/ATen/ops/arcsin_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7184250Z copying torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7186520Z copying torch/include/ATen/ops/adaptive_max_pool2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7189500Z copying torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7192440Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7194610Z copying torch/include/ATen/ops/atleast_3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7198070Z copying torch/include/ATen/ops/kthvalue_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7201110Z copying torch/include/ATen/ops/_foreach_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7205710Z copying torch/include/ATen/ops/smooth_l1_loss_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7207620Z copying torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7211410Z copying torch/include/ATen/ops/to_sparse_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7215350Z copying torch/include/ATen/ops/mkldnn_max_pool3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7217600Z copying torch/include/ATen/ops/trapz.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7221900Z copying torch/include/ATen/ops/_trilinear_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7228350Z copying torch/include/ATen/ops/native_batch_norm_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7230110Z copying torch/include/ATen/ops/linear_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7231440Z copying torch/include/ATen/ops/_ctc_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7234020Z copying torch/include/ATen/ops/dropout.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7238710Z copying torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7242000Z copying torch/include/ATen/ops/randperm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7244770Z copying torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7248830Z copying torch/include/ATen/ops/less_equal_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7250220Z copying torch/include/ATen/ops/mse_loss_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7254960Z copying torch/include/ATen/ops/nll_loss2d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7259410Z copying torch/include/ATen/ops/qscheme_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7261750Z copying torch/include/ATen/ops/cumprod_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7266350Z copying torch/include/ATen/ops/bmm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7271550Z copying torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7273730Z copying torch/include/ATen/ops/blackman_window.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7275640Z copying torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7276540Z copying torch/include/ATen/ops/elu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7284080Z copying torch/include/ATen/ops/triu_indices_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7287280Z copying torch/include/ATen/ops/conv_transpose3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7293300Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7295480Z copying torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7299920Z copying torch/include/ATen/ops/gelu_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7303130Z copying torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7307610Z copying torch/include/ATen/ops/index_select_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7309510Z copying torch/include/ATen/ops/dropout_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7315550Z copying torch/include/ATen/ops/lstm_mps_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7317680Z copying torch/include/ATen/ops/cartesian_prod.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7318800Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7326460Z copying torch/include/ATen/ops/_indices_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7329600Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7330550Z copying torch/include/ATen/ops/ormqr_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7335250Z copying torch/include/ATen/ops/hardshrink_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7336400Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7338670Z copying torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7342370Z copying torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7346300Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7351600Z copying torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7352820Z copying torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7360000Z copying torch/include/ATen/ops/channel_shuffle.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7360930Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7363350Z copying torch/include/ATen/ops/indices_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7365370Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7368000Z copying torch/include/ATen/ops/ge_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7371230Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7375360Z copying torch/include/ATen/ops/minimum_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7378740Z copying torch/include/ATen/ops/_dimI_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7382390Z copying torch/include/ATen/ops/resize_as.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7384240Z copying torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7389130Z copying torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7390140Z copying torch/include/ATen/ops/or.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7395480Z copying torch/include/ATen/ops/is_same_size_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7398090Z copying torch/include/ATen/ops/cumsum.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7401510Z copying torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7405070Z copying torch/include/ATen/ops/set_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7407340Z copying torch/include/ATen/ops/exponential_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7412500Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7413740Z copying torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7419200Z copying torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7424640Z copying torch/include/ATen/ops/copysign_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7428770Z copying torch/include/ATen/ops/asin_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7429930Z copying torch/include/ATen/ops/upsample_nearest3d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7432580Z copying torch/include/ATen/ops/mode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7434750Z copying torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7438010Z copying torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7441990Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7445520Z copying torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7449100Z copying torch/include/ATen/ops/_foreach_sigmoid_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7451200Z copying torch/include/ATen/ops/alias_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7455760Z copying torch/include/ATen/ops/ormqr_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7457700Z copying torch/include/ATen/ops/hsplit_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7462450Z copying torch/include/ATen/ops/heaviside_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7465080Z copying torch/include/ATen/ops/kaiser_window_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7468460Z copying torch/include/ATen/ops/fft_fftfreq_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7470600Z copying torch/include/ATen/ops/greater_equal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7476240Z copying torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7478390Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7481560Z copying torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7484400Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7487720Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7489210Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7494640Z copying torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7499500Z copying torch/include/ATen/ops/special_modified_bessel_k0_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7501580Z copying torch/include/ATen/ops/vsplit.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7505490Z copying torch/include/ATen/ops/_linalg_eigh_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7510700Z copying torch/include/ATen/ops/special_modified_bessel_i1_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7513220Z copying torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7518830Z copying torch/include/ATen/ops/addmm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7519800Z copying torch/include/ATen/ops/atan.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7521550Z copying torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7525170Z copying torch/include/ATen/ops/channel_shuffle_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7527580Z copying torch/include/ATen/ops/glu_jvp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7531880Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7534280Z copying torch/include/ATen/ops/mkldnn_convolution_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7537260Z copying torch/include/ATen/ops/_is_all_true.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7542970Z copying torch/include/ATen/ops/le_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7547690Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7548940Z copying torch/include/ATen/ops/polygamma_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7553050Z copying torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7554250Z copying torch/include/ATen/ops/index_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7557140Z copying torch/include/ATen/ops/max_pool2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7561510Z copying torch/include/ATen/ops/special_hermite_polynomial_he_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7564390Z copying torch/include/ATen/ops/_nested_get_values_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7567790Z copying torch/include/ATen/ops/addmv_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7571680Z copying torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7574240Z copying torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7577990Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7583220Z copying torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7587640Z copying torch/include/ATen/ops/as_strided_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7589730Z copying torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7591880Z copying torch/include/ATen/ops/embedding_bag_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7595160Z copying torch/include/ATen/ops/flatten_dense_tensors.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7598850Z copying torch/include/ATen/ops/fft_hfftn_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7599910Z copying torch/include/ATen/ops/mvlgamma_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7603850Z copying torch/include/ATen/ops/_cudnn_rnn_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7607390Z copying torch/include/ATen/ops/isreal_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7610380Z copying torch/include/ATen/ops/cumprod_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7615080Z copying torch/include/ATen/ops/logical_xor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7618380Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7621170Z copying torch/include/ATen/ops/_unsafe_index_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7623430Z copying torch/include/ATen/ops/cos_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7627280Z copying torch/include/ATen/ops/fft_fftn_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7633240Z copying torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7637950Z copying torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7640060Z copying torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7642640Z copying torch/include/ATen/ops/rnn_tanh_cell_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7650710Z copying torch/include/ATen/ops/_embedding_bag_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7652600Z copying torch/include/ATen/ops/_weight_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7655220Z copying torch/include/ATen/ops/eq.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7656420Z copying torch/include/ATen/ops/_efficient_attention_forward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7659480Z copying torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7661550Z copying torch/include/ATen/ops/cumprod_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7665110Z copying torch/include/ATen/ops/fmod_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7669870Z copying torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7671210Z copying torch/include/ATen/ops/_fft_c2c.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7675620Z copying torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7679440Z copying torch/include/ATen/ops/_to_sparse_bsc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7685540Z copying torch/include/ATen/ops/pad_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7686830Z copying torch/include/ATen/ops/special_modified_bessel_i0.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7689240Z copying torch/include/ATen/ops/reflection_pad1d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7691290Z copying torch/include/ATen/ops/arcsinh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7694650Z copying torch/include/ATen/ops/addr_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7697650Z copying torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7701210Z copying torch/include/ATen/ops/cudnn_convolution_relu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7704700Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7707130Z copying torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7711950Z copying torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7714780Z copying torch/include/ATen/ops/lu_unpack_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7717940Z copying torch/include/ATen/ops/_coalesced_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7721470Z copying torch/include/ATen/ops/special_erfcx_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7724220Z copying torch/include/ATen/ops/var_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7728070Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7730790Z copying torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7735580Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7738060Z copying torch/include/ATen/ops/_triton_multi_head_attention_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7743560Z copying torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7744600Z copying torch/include/ATen/ops/var_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7749130Z copying torch/include/ATen/ops/tanh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7751210Z copying torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7754830Z copying torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7758440Z copying torch/include/ATen/ops/lgamma_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7762640Z copying torch/include/ATen/ops/_scaled_mm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7764800Z copying torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7767780Z copying torch/include/ATen/ops/to_mkldnn_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7770820Z copying torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7774990Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7779200Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7780470Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7784110Z copying torch/include/ATen/ops/replication_pad3d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7787260Z copying torch/include/ATen/ops/bmm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7792230Z copying torch/include/ATen/ops/_to_dense.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7795080Z copying torch/include/ATen/ops/batch_norm_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7797730Z copying torch/include/ATen/ops/log.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7803290Z copying torch/include/ATen/ops/igamma_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7805080Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7809230Z copying torch/include/ATen/ops/new_full.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7810460Z copying torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7815280Z copying torch/include/ATen/ops/embedding_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7819770Z copying torch/include/ATen/ops/linalg_slogdet.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7822200Z copying torch/include/ATen/ops/fft_rfft2_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7825530Z copying torch/include/ATen/ops/_foreach_atan_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7828750Z copying torch/include/ATen/ops/clip.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7832520Z copying torch/include/ATen/ops/reshape.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7835890Z copying torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7836960Z copying torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7840460Z copying torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7844610Z copying torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7847140Z copying torch/include/ATen/ops/_cslt_sparse_mm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7853500Z copying torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7855480Z copying torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7858890Z copying torch/include/ATen/ops/view_as_complex_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7864110Z copying torch/include/ATen/ops/mvlgamma.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7867390Z copying torch/include/ATen/ops/permute_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7871720Z copying torch/include/ATen/ops/sign_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7875290Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7877410Z copying torch/include/ATen/ops/reflection_pad2d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7885700Z copying torch/include/ATen/ops/_foreach_minimum.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7887300Z copying torch/include/ATen/ops/int_repr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7891820Z copying torch/include/ATen/ops/heaviside_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7892840Z copying torch/include/ATen/ops/column_stack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7894510Z copying torch/include/ATen/ops/scatter_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7899070Z copying torch/include/ATen/ops/minimum.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7900110Z copying torch/include/ATen/ops/to_sparse_bsc_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7904690Z copying torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7908900Z copying torch/include/ATen/ops/from_file_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7913100Z copying torch/include/ATen/ops/miopen_convolution_transpose.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7917720Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7918620Z copying torch/include/ATen/ops/sinc_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7920430Z copying torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7927580Z copying torch/include/ATen/ops/real_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7928840Z copying torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7933020Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7935130Z copying torch/include/ATen/ops/align_tensors_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7938030Z copying torch/include/ATen/ops/acos_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7940750Z copying torch/include/ATen/ops/minimum_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7945420Z copying torch/include/ATen/ops/special_bessel_y0.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7948890Z copying torch/include/ATen/ops/sspaddmm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7951050Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7956900Z copying torch/include/ATen/ops/logdet_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7957820Z copying torch/include/ATen/ops/cauchy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7963660Z copying torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7964690Z copying torch/include/ATen/ops/is_vulkan_available_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7970650Z copying torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7973280Z copying torch/include/ATen/ops/gt_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7975790Z copying torch/include/ATen/ops/ccol_indices.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7978000Z copying torch/include/ATen/ops/normal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7981070Z copying torch/include/ATen/ops/cudnn_convolution_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7985890Z copying torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7991980Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7998150Z copying torch/include/ATen/ops/_to_sparse_bsc_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.7999260Z copying torch/include/ATen/ops/linalg_eigh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8001100Z copying torch/include/ATen/ops/upsample_bilinear2d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8002120Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8005480Z copying torch/include/ATen/ops/rnn_relu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8008040Z copying torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8012560Z copying torch/include/ATen/ops/replication_pad1d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8015250Z copying torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8018530Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8021350Z copying torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8024840Z copying torch/include/ATen/ops/sym_constrain_range_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8030140Z copying torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8031210Z copying torch/include/ATen/ops/leaky_relu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8035530Z copying torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8037770Z copying torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8040990Z copying torch/include/ATen/ops/linalg_ldl_factor_ex.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8045340Z copying torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8047450Z copying torch/include/ATen/ops/heaviside_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8054720Z copying torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8055740Z copying torch/include/ATen/ops/histc_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8059530Z copying torch/include/ATen/ops/_pad_packed_sequence_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8062940Z copying torch/include/ATen/ops/q_per_channel_zero_points_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8064990Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8071800Z copying torch/include/ATen/ops/square.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8072870Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8079060Z copying torch/include/ATen/ops/diagflat_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8080250Z copying torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8083190Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8087350Z copying torch/include/ATen/ops/prod_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8089310Z copying torch/include/ATen/ops/cdist.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8091950Z copying torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8094540Z copying torch/include/ATen/ops/special_expm1_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8099420Z copying torch/include/ATen/ops/atleast_1d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8101360Z copying torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8105920Z copying torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8108270Z copying torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8113420Z copying torch/include/ATen/ops/conv_transpose1d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8115650Z copying torch/include/ATen/ops/_assert_async_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8120670Z copying torch/include/ATen/ops/fft_rfftfreq.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8121740Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8127610Z copying torch/include/ATen/ops/cummax.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8128730Z copying torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8131290Z copying torch/include/ATen/ops/normal_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8134420Z copying torch/include/ATen/ops/leaky_relu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8140630Z copying torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8141580Z copying torch/include/ATen/ops/cumsum_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8148150Z copying torch/include/ATen/ops/reflection_pad2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8149450Z copying torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8155210Z copying torch/include/ATen/ops/histogram_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8156420Z copying torch/include/ATen/ops/_foreach_acos.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8157870Z copying torch/include/ATen/ops/softshrink_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8161250Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8163980Z copying torch/include/ATen/ops/amin_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8168220Z copying torch/include/ATen/ops/_foreach_log_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8179760Z copying torch/include/ATen/ops/linalg_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8181530Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8182470Z copying torch/include/ATen/ops/linalg_matrix_power.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8188520Z copying torch/include/ATen/ops/avg_pool1d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8190320Z copying torch/include/ATen/ops/unfold_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8191290Z copying torch/include/ATen/ops/_batch_norm_no_update_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8196020Z copying torch/include/ATen/ops/sigmoid_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8196880Z copying torch/include/ATen/ops/clamp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8199720Z copying torch/include/ATen/ops/norm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8205310Z copying torch/include/ATen/ops/trunc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8207240Z copying torch/include/ATen/ops/linalg_qr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8209380Z copying torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8211500Z copying torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8216920Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8218040Z copying torch/include/ATen/ops/avg_pool2d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8224890Z copying torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8227480Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8233470Z copying torch/include/ATen/ops/lt_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8234460Z copying torch/include/ATen/ops/scatter_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8237050Z copying torch/include/ATen/ops/crow_indices.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8242680Z copying torch/include/ATen/ops/to_dense_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8244620Z copying torch/include/ATen/ops/minimum_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8245610Z copying torch/include/ATen/ops/pixel_shuffle_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8248820Z copying torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8251510Z copying torch/include/ATen/ops/view_as_complex_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8257180Z copying torch/include/ATen/ops/_foreach_clamp_min_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8258300Z copying torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8263520Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8265390Z copying torch/include/ATen/ops/special_expit.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8269940Z copying torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8272450Z copying torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8275010Z copying torch/include/ATen/ops/lstm_cell_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8278910Z copying torch/include/ATen/ops/binary_cross_entropy_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8281090Z copying torch/include/ATen/ops/elu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8284940Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8289080Z copying torch/include/ATen/ops/rename.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8290490Z copying torch/include/ATen/ops/addbmm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8295120Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8298520Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8302120Z copying torch/include/ATen/ops/xor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8304350Z copying torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8308860Z copying torch/include/ATen/ops/max_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8318880Z copying torch/include/ATen/ops/log2_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8320060Z copying torch/include/ATen/ops/sub_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8321740Z copying torch/include/ATen/ops/view_as_real_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8326690Z copying torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8327750Z copying torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8330040Z copying torch/include/ATen/ops/norm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8333040Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8338130Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8339140Z copying torch/include/ATen/ops/empty_like_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8340910Z copying torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8345880Z copying torch/include/ATen/ops/native_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8349100Z copying torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8351830Z copying torch/include/ATen/ops/_is_zerotensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8355850Z copying torch/include/ATen/ops/_log_softmax_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8358110Z copying torch/include/ATen/ops/col_indices_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8361030Z copying torch/include/ATen/ops/diagonal_scatter_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8364660Z copying torch/include/ATen/ops/index_select_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8370350Z copying torch/include/ATen/ops/gt_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8373000Z copying torch/include/ATen/ops/vander.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8375780Z copying torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8380530Z copying torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8381590Z copying torch/include/ATen/ops/_unsafe_masked_index_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8384830Z copying torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8389860Z copying torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8391040Z copying torch/include/ATen/ops/signbit_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8396330Z copying torch/include/ATen/ops/_foreach_add_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8397390Z copying torch/include/ATen/ops/add_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8404420Z copying torch/include/ATen/ops/_addmm_activation_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8406880Z copying torch/include/ATen/ops/maximum_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8410640Z copying torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8413790Z copying torch/include/ATen/ops/elu_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8415950Z copying torch/include/ATen/ops/quantized_max_pool2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8418090Z copying torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8424990Z copying torch/include/ATen/ops/tril_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8426020Z copying torch/include/ATen/ops/special_bessel_j0_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8432980Z copying torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8434100Z copying torch/include/ATen/ops/_test_optional_floatlist_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8438510Z copying torch/include/ATen/ops/_lazy_clone_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8439500Z copying torch/include/ATen/ops/silu_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8442350Z copying torch/include/ATen/ops/_slow_conv2d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8445800Z copying torch/include/ATen/ops/avg_pool2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8448900Z copying torch/include/ATen/ops/result_type_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8452910Z copying torch/include/ATen/ops/lcm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8454940Z copying torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8460770Z copying torch/include/ATen/ops/q_per_channel_zero_points_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8461730Z copying torch/include/ATen/ops/special_softmax_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8465590Z copying torch/include/ATen/ops/_make_dep_token_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8471270Z copying torch/include/ATen/ops/poisson_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8476050Z copying torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8476900Z copying torch/include/ATen/ops/_pad_packed_sequence_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8478830Z copying torch/include/ATen/ops/fft_irfft.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8482320Z copying torch/include/ATen/ops/softshrink_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8485060Z copying torch/include/ATen/ops/sum_to_size_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8490910Z copying torch/include/ATen/ops/transpose_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8491890Z copying torch/include/ATen/ops/trace_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8498720Z copying torch/include/ATen/ops/fft_rfft.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8501040Z copying torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8504870Z copying torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8506030Z copying torch/include/ATen/ops/one_hot.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8511210Z copying torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8512320Z copying torch/include/ATen/ops/_to_sparse_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8513360Z copying torch/include/ATen/ops/atleast_2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8517790Z copying torch/include/ATen/ops/argmin_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8521310Z copying torch/include/ATen/ops/randint.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8524690Z copying torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8529590Z copying torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8530700Z copying torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8537200Z copying torch/include/ATen/ops/smooth_l1_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8538980Z copying torch/include/ATen/ops/broadcast_tensors_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8545290Z copying torch/include/ATen/ops/mkldnn_max_pool2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8546240Z copying torch/include/ATen/ops/sym_constrain_range.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8549770Z copying torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8552020Z copying torch/include/ATen/ops/fft_fftshift_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8554270Z copying torch/include/ATen/ops/glu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8561450Z copying torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8562470Z copying torch/include/ATen/ops/diag.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8568090Z copying torch/include/ATen/ops/mse_loss_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8570050Z copying torch/include/ATen/ops/gather_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8578150Z copying torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8579130Z copying torch/include/ATen/ops/median.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8580760Z copying torch/include/ATen/ops/rnn_relu_cell_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8581680Z copying torch/include/ATen/ops/cummin_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8585860Z copying torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8586790Z copying torch/include/ATen/ops/cummax_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8588900Z copying torch/include/ATen/ops/native_layer_norm_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8594260Z copying torch/include/ATen/ops/view_as_complex_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8599890Z copying torch/include/ATen/ops/igammac_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8601970Z copying torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8605050Z copying torch/include/ATen/ops/linalg_qr_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8607880Z copying torch/include/ATen/ops/celu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8612510Z copying torch/include/ATen/ops/_functional_assert_scalar_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8615200Z copying torch/include/ATen/ops/addr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8618890Z copying torch/include/ATen/ops/where.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8622390Z copying torch/include/ATen/ops/empty_strided_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8627290Z copying torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8630320Z copying torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8633210Z copying torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8635780Z copying torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8637920Z copying torch/include/ATen/ops/embedding.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8641670Z copying torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8647380Z copying torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8648420Z copying torch/include/ATen/ops/sym_size_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8654880Z copying torch/include/ATen/ops/fill_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8655860Z copying torch/include/ATen/ops/relu6.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8662120Z copying torch/include/ATen/ops/_coalesce.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8663180Z copying torch/include/ATen/ops/bitwise_right_shift_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8665020Z copying torch/include/ATen/ops/nextafter_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8670950Z copying torch/include/ATen/ops/reflection_pad3d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8672000Z copying torch/include/ATen/ops/nonzero_static_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8679570Z copying torch/include/ATen/ops/_sobol_engine_initialize_state.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8680580Z copying torch/include/ATen/ops/range_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8683190Z copying torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8686800Z copying torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8688880Z copying torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8692160Z copying torch/include/ATen/ops/bmm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8695720Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8699890Z copying torch/include/ATen/ops/_add_relu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8701140Z copying torch/include/ATen/ops/triu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8705470Z copying torch/include/ATen/ops/negative.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8710790Z copying torch/include/ATen/ops/linalg_lstsq_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8712800Z copying torch/include/ATen/ops/empty_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8717580Z copying torch/include/ATen/ops/argmax_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8719650Z copying torch/include/ATen/ops/_to_cpu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8721380Z copying torch/include/ATen/ops/native_group_norm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8724790Z copying torch/include/ATen/ops/upsample_bicubic2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8729560Z copying torch/include/ATen/ops/arcsinh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8730640Z copying torch/include/ATen/ops/q_per_channel_scales.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8737430Z copying torch/include/ATen/ops/tanh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8738380Z copying torch/include/ATen/ops/_test_optional_intlist_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8743570Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8744910Z copying torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8754910Z copying torch/include/ATen/ops/pdist_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8755750Z copying torch/include/ATen/ops/_test_string_default.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8756610Z copying torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8757450Z copying torch/include/ATen/ops/narrow_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8761740Z copying torch/include/ATen/ops/_sparse_semi_structured_tile.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8765740Z copying torch/include/ATen/ops/argmax.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8769700Z copying torch/include/ATen/ops/_fused_sdp_choice_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8772080Z copying torch/include/ATen/ops/is_signed_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8773950Z copying torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8778450Z copying torch/include/ATen/ops/_test_optional_intlist.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8781500Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8785880Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8789950Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8794190Z copying torch/include/ATen/ops/_weight_norm_interface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8795150Z copying torch/include/ATen/ops/atanh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8797480Z copying torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8800770Z copying torch/include/ATen/ops/var_mean_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8805140Z copying torch/include/ATen/ops/polar_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8807850Z copying torch/include/ATen/ops/square_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8812400Z copying torch/include/ATen/ops/argsort.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8815590Z copying torch/include/ATen/ops/slice_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8818870Z copying torch/include/ATen/ops/erf_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8821190Z copying torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8824670Z copying torch/include/ATen/ops/linalg_cholesky_ex_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8829720Z copying torch/include/ATen/ops/_sparse_log_softmax_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8832010Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8835660Z copying torch/include/ATen/ops/norm_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8838610Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8840900Z copying torch/include/ATen/ops/mean.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8845890Z copying torch/include/ATen/ops/_assert_tensor_metadata_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8847230Z copying torch/include/ATen/ops/_sparse_addmm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8852590Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8854730Z copying torch/include/ATen/ops/empty_strided_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8859510Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8862110Z copying torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8865600Z copying torch/include/ATen/ops/chalf.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8868430Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8870700Z copying torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8875270Z copying torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8878180Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8880870Z copying torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8884860Z copying torch/include/ATen/ops/_amp_update_scale_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8887140Z copying torch/include/ATen/ops/hardswish_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8891340Z copying torch/include/ATen/ops/pow_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8897450Z copying torch/include/ATen/ops/frexp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8901880Z copying torch/include/ATen/ops/cholesky_solve.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8904450Z copying torch/include/ATen/ops/_dim_arange_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8906510Z copying torch/include/ATen/ops/median_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8907780Z copying torch/include/ATen/ops/sigmoid.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8912150Z copying torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8915510Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8921360Z copying torch/include/ATen/ops/bernoulli_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8922700Z copying torch/include/ATen/ops/_nested_get_values_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8927440Z copying torch/include/ATen/ops/masked_select_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8928520Z copying torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8934390Z copying torch/include/ATen/ops/_foreach_sigmoid.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8936270Z copying torch/include/ATen/ops/logical_and_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8940930Z copying torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8943190Z copying torch/include/ATen/ops/cudnn_is_acceptable_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8945480Z copying torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8950420Z copying torch/include/ATen/ops/conv1d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8952920Z copying torch/include/ATen/ops/lcm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8955590Z copying torch/include/ATen/ops/rrelu_with_noise_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8960670Z copying torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8962040Z copying torch/include/ATen/ops/special_modified_bessel_i0_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8965100Z copying torch/include/ATen/ops/empty_strided_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8970090Z copying torch/include/ATen/ops/_make_dep_token.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8973780Z copying torch/include/ATen/ops/complex_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8978530Z copying torch/include/ATen/ops/max_pool1d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8979980Z copying torch/include/ATen/ops/count_nonzero_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8981300Z copying torch/include/ATen/ops/logaddexp_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8983870Z copying torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8987360Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8988660Z copying torch/include/ATen/ops/adaptive_avg_pool2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8992130Z copying torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.8997790Z copying torch/include/ATen/ops/special_modified_bessel_i1_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9000800Z copying torch/include/ATen/ops/nansum_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9004460Z copying torch/include/ATen/ops/cholesky_inverse_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9008530Z copying torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9011350Z copying torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9013880Z copying torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9018020Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9021890Z copying torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9025470Z copying torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9028960Z copying torch/include/ATen/ops/scatter_reduce_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9031060Z copying torch/include/ATen/ops/floor_divide_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9035430Z copying torch/include/ATen/ops/_efficientzerotensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9260760Z copying torch/include/ATen/ops/_softmax_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9261360Z copying torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9261930Z copying torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9262300Z copying torch/include/ATen/ops/polygamma_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9262700Z copying torch/include/ATen/ops/lgamma_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9263130Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9263620Z copying torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9264020Z copying torch/include/ATen/ops/cholesky_inverse.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9264360Z copying torch/include/ATen/ops/max_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9264740Z copying torch/include/ATen/ops/rsqrt_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9265210Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9265580Z copying torch/include/ATen/ops/row_stack_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9270010Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9270520Z copying torch/include/ATen/ops/segment_reduce_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9271050Z copying torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9271460Z copying torch/include/ATen/ops/empty_strided.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9271850Z copying torch/include/ATen/ops/_embedding_bag_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9273250Z copying torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9274500Z copying torch/include/ATen/ops/abs_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9275970Z copying torch/include/ATen/ops/moveaxis_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9277060Z copying torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9278590Z copying torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9279960Z copying torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9280840Z copying torch/include/ATen/ops/conj_physical.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9282190Z copying torch/include/ATen/ops/_foreach_asin_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9283850Z copying torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9285160Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9286410Z copying torch/include/ATen/ops/deg2rad_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9287870Z copying torch/include/ATen/ops/median_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9289210Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9290530Z copying torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9291820Z copying torch/include/ATen/ops/polygamma_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9293080Z copying torch/include/ATen/ops/_linalg_solve_ex_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9294530Z copying torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9295740Z copying torch/include/ATen/ops/batch_norm_stats.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9297020Z copying torch/include/ATen/ops/baddbmm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9298410Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9299740Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9301000Z copying torch/include/ATen/ops/_linalg_solve_ex_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9302350Z copying torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9303960Z copying torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9305170Z copying torch/include/ATen/ops/unfold_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9306500Z copying torch/include/ATen/ops/view_as_complex_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9307820Z copying torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9309100Z copying torch/include/ATen/ops/huber_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9310370Z copying torch/include/ATen/ops/_ctc_loss_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9311610Z copying torch/include/ATen/ops/pin_memory.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9312920Z copying torch/include/ATen/ops/logaddexp2_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9314190Z copying torch/include/ATen/ops/stft.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9315540Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9316960Z copying torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9317950Z copying torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9319620Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9320950Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9322230Z copying torch/include/ATen/ops/linalg_slogdet_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9323710Z copying torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9325060Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9326320Z copying torch/include/ATen/ops/special_ndtri_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9327650Z copying torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9328900Z copying torch/include/ATen/ops/logit_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9330210Z copying torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9331430Z copying torch/include/ATen/ops/nanmean_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9332640Z copying torch/include/ATen/ops/to_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9334220Z copying torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9335620Z copying torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9336540Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9338020Z copying torch/include/ATen/ops/polygamma_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9339250Z copying torch/include/ATen/ops/normal_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9340940Z copying torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9342320Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9343620Z copying torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9344840Z copying torch/include/ATen/ops/add_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9346320Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9347150Z copying torch/include/ATen/ops/special_gammainc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9348770Z copying torch/include/ATen/ops/batch_norm_gather_stats.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9350000Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9351340Z copying torch/include/ATen/ops/sspaddmm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9352620Z copying torch/include/ATen/ops/stack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9353790Z copying torch/include/ATen/ops/isin.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9355220Z copying torch/include/ATen/ops/multi_margin_loss_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9356780Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9358130Z copying torch/include/ATen/ops/svd_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9359600Z copying torch/include/ATen/ops/sparse_bsc_tensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9360890Z copying torch/include/ATen/ops/hspmm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9362180Z copying torch/include/ATen/ops/conj_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9363580Z copying torch/include/ATen/ops/linalg_lu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9364970Z copying torch/include/ATen/ops/addmm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9366340Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9367550Z copying torch/include/ATen/ops/clone_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9369040Z copying torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9370370Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9371910Z copying torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9372810Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9374590Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9375890Z copying torch/include/ATen/ops/linalg_eigvals.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9377160Z copying torch/include/ATen/ops/linalg_vander_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9378760Z copying torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9380030Z copying torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9381280Z copying torch/include/ATen/ops/conv_tbc_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9382180Z copying torch/include/ATen/ops/isposinf_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9383930Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9385240Z copying torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9386580Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9388960Z copying torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9391460Z copying torch/include/ATen/ops/triu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9396010Z copying torch/include/ATen/ops/scatter_add.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9401740Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9402990Z copying torch/include/ATen/ops/miopen_batch_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9404890Z copying torch/include/ATen/ops/fill_diagonal_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9408200Z copying torch/include/ATen/ops/special_digamma_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9412270Z copying torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9413520Z copying torch/include/ATen/ops/_test_serialization_subcmul.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9418160Z copying torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9424490Z copying torch/include/ATen/ops/_nested_get_values.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9426040Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9433120Z copying torch/include/ATen/ops/neg_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9434810Z copying torch/include/ATen/ops/linalg_tensorinv_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9436280Z copying torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9442270Z copying torch/include/ATen/ops/sparse_dim.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9443990Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9449960Z copying torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9452440Z copying torch/include/ATen/ops/linalg_matrix_exp_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9456680Z copying torch/include/ATen/ops/_copy_from_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9458310Z copying torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9461220Z copying torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9467220Z copying torch/include/ATen/ops/linalg_vector_norm_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9469920Z copying torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9474190Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9475680Z copying torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9477840Z copying torch/include/ATen/ops/dequantize_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9481820Z copying torch/include/ATen/ops/erfinv_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9486030Z copying torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9489750Z copying torch/include/ATen/ops/sign_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9491550Z copying torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9493790Z copying torch/include/ATen/ops/_dimV_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9498650Z copying torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9503250Z copying torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9506190Z copying torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9508560Z copying torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9511110Z copying torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9515240Z copying torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9518210Z copying torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9522390Z copying torch/include/ATen/ops/_prelu_kernel_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9525160Z copying torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9528940Z copying torch/include/ATen/ops/relu6_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9530610Z copying torch/include/ATen/ops/special_modified_bessel_k1_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9534200Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9538170Z copying torch/include/ATen/ops/expm1_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9541260Z copying torch/include/ATen/ops/kron.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9549150Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9553830Z copying torch/include/ATen/ops/cat_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9555150Z copying torch/include/ATen/ops/_linalg_check_errors_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9557460Z copying torch/include/ATen/ops/triplet_margin_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9560550Z copying torch/include/ATen/ops/tril.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9565230Z copying torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9570950Z copying torch/include/ATen/ops/fft_rfft_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9572970Z copying torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9575120Z copying torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9578730Z copying torch/include/ATen/ops/_remove_batch_dim_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9580360Z copying torch/include/ATen/ops/linalg_cholesky_ex_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9584830Z copying torch/include/ATen/ops/quantized_rnn_relu_cell.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9587430Z copying torch/include/ATen/ops/silu_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9591460Z copying torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9594900Z copying torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9599170Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9601220Z copying torch/include/ATen/ops/_to_sparse_semi_structured_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9605080Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9608790Z copying torch/include/ATen/ops/sym_stride_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9611560Z copying torch/include/ATen/ops/_make_dual_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9615430Z copying torch/include/ATen/ops/hardswish_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9616970Z copying torch/include/ATen/ops/elu_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9621580Z copying torch/include/ATen/ops/miopen_batch_norm_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9629570Z copying torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9630170Z copying torch/include/ATen/ops/abs_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9631010Z copying torch/include/ATen/ops/conv_transpose1d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9634250Z copying torch/include/ATen/ops/isneginf_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9640110Z copying torch/include/ATen/ops/adaptive_max_pool3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9643800Z copying torch/include/ATen/ops/poisson_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9645950Z copying torch/include/ATen/ops/embedding_renorm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9648120Z copying torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9650420Z copying torch/include/ATen/ops/max_pool2d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9654510Z copying torch/include/ATen/ops/minimum_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9657980Z copying torch/include/ATen/ops/log_sigmoid_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9661480Z copying torch/include/ATen/ops/_sobol_engine_ff.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9664510Z copying torch/include/ATen/ops/native_batch_norm_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9667810Z copying torch/include/ATen/ops/block_diag_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9672580Z copying torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9677040Z copying torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9680110Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9682160Z copying torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9685110Z copying torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9686690Z copying torch/include/ATen/ops/acosh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9690870Z copying torch/include/ATen/ops/roll_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9697650Z copying torch/include/ATen/ops/_copy_from_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9698860Z copying torch/include/ATen/ops/_foreach_log2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9704520Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9705970Z copying torch/include/ATen/ops/linear_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9711610Z copying torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9713070Z copying torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9716000Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9720950Z copying torch/include/ATen/ops/native_batch_norm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9725240Z copying torch/include/ATen/ops/digamma_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9731000Z copying torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9732410Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9733700Z copying torch/include/ATen/ops/native_dropout_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9734640Z copying torch/include/ATen/ops/conj_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9736250Z copying torch/include/ATen/ops/native_dropout.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9738870Z copying torch/include/ATen/ops/_unsafe_index.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9740940Z copying torch/include/ATen/ops/cosh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9744800Z copying torch/include/ATen/ops/_nested_get_jagged_dummy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9749160Z copying torch/include/ATen/ops/record_stream_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9758860Z copying torch/include/ATen/ops/cudnn_convolution_transpose.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9764140Z copying torch/include/ATen/ops/_unique2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9765470Z copying torch/include/ATen/ops/special_i1e_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9769930Z copying torch/include/ATen/ops/_foreach_log2_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9772510Z copying torch/include/ATen/ops/native_dropout_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9776940Z copying torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9778390Z copying torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9784930Z copying torch/include/ATen/ops/_to_dense_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9786330Z copying torch/include/ATen/ops/empty_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9798470Z copying torch/include/ATen/ops/_test_parallel_materialize_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9801310Z copying torch/include/ATen/ops/bernoulli.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9802880Z copying torch/include/ATen/ops/_pad_circular_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9805330Z copying torch/include/ATen/ops/diagonal_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9806770Z copying torch/include/ATen/ops/index_select_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9808080Z copying torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9809640Z copying torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9811760Z copying torch/include/ATen/ops/size_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9815470Z copying torch/include/ATen/ops/_log_softmax_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9818890Z copying torch/include/ATen/ops/replication_pad3d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9821560Z copying torch/include/ATen/ops/special_psi.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9826430Z copying torch/include/ATen/ops/_log_softmax_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9827640Z copying torch/include/ATen/ops/addcmul.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9835330Z copying torch/include/ATen/ops/sigmoid_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9837240Z copying torch/include/ATen/ops/select_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9844020Z copying torch/include/ATen/ops/special_multigammaln_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9845340Z copying torch/include/ATen/ops/exp2_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9846610Z copying torch/include/ATen/ops/_foreach_addcmul.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9852450Z copying torch/include/ATen/ops/addmv_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9853860Z copying torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9858760Z copying torch/include/ATen/ops/type_as_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9861100Z copying torch/include/ATen/ops/linalg_tensorsolve_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9862430Z copying torch/include/ATen/ops/range_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9865490Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9869020Z copying torch/include/ATen/ops/glu_backward_jvp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9872230Z copying torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9875950Z copying torch/include/ATen/ops/upsample_nearest1d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9881660Z copying torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9883360Z copying torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9887000Z copying torch/include/ATen/ops/bincount.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9889870Z copying torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9891390Z copying torch/include/ATen/ops/hann_window_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9897970Z copying torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9900210Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9904450Z copying torch/include/ATen/ops/elu_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9906640Z copying torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9908210Z copying torch/include/ATen/ops/cummaxmin_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9912930Z copying torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9916250Z copying torch/include/ATen/ops/affine_grid_generator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9919400Z copying torch/include/ATen/ops/logical_and_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9921680Z copying torch/include/ATen/ops/split_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9924350Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9928540Z copying torch/include/ATen/ops/native_channel_shuffle_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9930150Z copying torch/include/ATen/ops/greater_equal_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9935570Z copying torch/include/ATen/ops/imag.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9937310Z copying torch/include/ATen/ops/argmin_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9941890Z copying torch/include/ATen/ops/special_i0e_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9945340Z copying torch/include/ATen/ops/max_unpool3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9947010Z copying torch/include/ATen/ops/erf.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9950540Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9953760Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9957570Z copying torch/include/ATen/ops/matrix_H.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9959110Z copying torch/include/ATen/ops/transpose_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9968000Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9971280Z copying torch/include/ATen/ops/fill_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9975700Z copying torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9978250Z copying torch/include/ATen/ops/copysign_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9983260Z copying torch/include/ATen/ops/amin_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9985650Z copying torch/include/ATen/ops/rms_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9989650Z copying torch/include/ATen/ops/asin_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9992390Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9994730Z copying torch/include/ATen/ops/fliplr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:53.9997730Z copying torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0001490Z copying torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0003560Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0007960Z copying torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0011960Z copying torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0016870Z copying torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0018340Z copying torch/include/ATen/ops/sparse_sampled_addmm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0021380Z copying torch/include/ATen/ops/log10.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0023140Z copying torch/include/ATen/ops/aminmax_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0026990Z copying torch/include/ATen/ops/quantized_max_pool2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0031860Z copying torch/include/ATen/ops/masked_scatter_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0034870Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0038600Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0040670Z copying torch/include/ATen/ops/log_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0046140Z copying torch/include/ATen/ops/scatter_add_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0047530Z copying torch/include/ATen/ops/_reshape_alias_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0052340Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0055050Z copying torch/include/ATen/ops/lcm_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0057890Z copying torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0061620Z copying torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0066840Z copying torch/include/ATen/ops/softplus_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0067790Z copying torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0072170Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0075070Z copying torch/include/ATen/ops/hardshrink_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0077330Z copying torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0080580Z copying torch/include/ATen/ops/conj_physical_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0085050Z copying torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0087940Z copying torch/include/ATen/ops/erfinv.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0090600Z copying torch/include/ATen/ops/avg_pool1d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0094470Z copying torch/include/ATen/ops/_gather_sparse_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0097920Z copying torch/include/ATen/ops/addbmm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0102400Z copying torch/include/ATen/ops/upsample_trilinear3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0104130Z copying torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0107590Z copying torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0110410Z copying torch/include/ATen/ops/matmul_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0122670Z copying torch/include/ATen/ops/coalesce.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0123770Z copying torch/include/ATen/ops/_foreach_log10_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0125200Z copying torch/include/ATen/ops/_lu_with_info_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0128770Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0130270Z copying torch/include/ATen/ops/expm1_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0131600Z copying torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0132920Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0134780Z copying torch/include/ATen/ops/_weight_norm_interface_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0138490Z copying torch/include/ATen/ops/scatter_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0147080Z copying torch/include/ATen/ops/ne_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0149230Z copying torch/include/ATen/ops/addcmul_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0150950Z copying torch/include/ATen/ops/special_logsumexp_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0154600Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0157360Z copying torch/include/ATen/ops/to_sparse_csr_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0160500Z copying torch/include/ATen/ops/_foreach_round.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0167440Z copying torch/include/ATen/ops/floor_divide_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0169320Z copying torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0174810Z copying torch/include/ATen/ops/margin_ranking_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0178540Z copying torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0180530Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0183640Z copying torch/include/ATen/ops/triangular_solve_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0187290Z copying torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0193260Z copying torch/include/ATen/ops/dstack_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0194600Z copying torch/include/ATen/ops/log_sigmoid_forward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0199100Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0200230Z copying torch/include/ATen/ops/special_xlog1py_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0204930Z copying torch/include/ATen/ops/maximum_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0208540Z copying torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0210940Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0215560Z copying torch/include/ATen/ops/contiguous.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0217450Z copying torch/include/ATen/ops/view_as.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0221590Z copying torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0225810Z copying torch/include/ATen/ops/group_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0227930Z copying torch/include/ATen/ops/_fused_dropout_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0231250Z copying torch/include/ATen/ops/sgn_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0234380Z copying torch/include/ATen/ops/max_pool2d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0238820Z copying torch/include/ATen/ops/multiply_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0243660Z copying torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0247250Z copying torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0249040Z copying torch/include/ATen/ops/cudnn_affine_grid_generator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0251220Z copying torch/include/ATen/ops/is_signed_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0255810Z copying torch/include/ATen/ops/special_ndtri.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0257650Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0261340Z copying torch/include/ATen/ops/lt_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0265890Z copying torch/include/ATen/ops/requires_grad_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0267550Z copying torch/include/ATen/ops/hypot_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0271270Z copying torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0273850Z copying torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0277090Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0280430Z copying torch/include/ATen/ops/round_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0284150Z copying torch/include/ATen/ops/reflection_pad1d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0287650Z copying torch/include/ATen/ops/norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0290120Z copying torch/include/ATen/ops/_prelu_kernel_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0294960Z copying torch/include/ATen/ops/nonzero_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0301690Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0302960Z copying torch/include/ATen/ops/batch_norm_backward_reduce_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0306650Z copying torch/include/ATen/ops/fmin_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0308040Z copying torch/include/ATen/ops/index_copy_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0310030Z copying torch/include/ATen/ops/rand.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0313820Z copying torch/include/ATen/ops/searchsorted_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0317360Z copying torch/include/ATen/ops/prod_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0321080Z copying torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0324090Z copying torch/include/ATen/ops/q_per_channel_scales_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0328490Z copying torch/include/ATen/ops/special_softmax_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0331050Z copying torch/include/ATen/ops/erfc_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0334060Z copying torch/include/ATen/ops/i0_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0337590Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0341020Z copying torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0346150Z copying torch/include/ATen/ops/quantize_per_tensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0349300Z copying torch/include/ATen/ops/_nested_get_values_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0351930Z copying torch/include/ATen/ops/special_hermite_polynomial_he_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0355840Z copying torch/include/ATen/ops/upsample_linear1d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0360710Z copying torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0362310Z copying torch/include/ATen/ops/_cslt_sparse_mm_search.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0366290Z copying torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0367860Z copying torch/include/ATen/ops/_sparse_csr_prod_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0370680Z copying torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0375340Z copying torch/include/ATen/ops/replication_pad3d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0383130Z copying torch/include/ATen/ops/avg_pool3d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0384480Z copying torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0390490Z copying torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0391610Z copying torch/include/ATen/ops/_pin_memory_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0396730Z copying torch/include/ATen/ops/nuclear_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0398450Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0402760Z copying torch/include/ATen/ops/ceil_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0405110Z copying torch/include/ATen/ops/_empty_affine_quantized_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0409030Z copying torch/include/ATen/ops/zero_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0411900Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0415080Z copying torch/include/ATen/ops/gelu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0417980Z copying torch/include/ATen/ops/isnan_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0422110Z copying torch/include/ATen/ops/frac_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0424550Z copying torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0428980Z copying torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0430680Z copying torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0434160Z copying torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0437540Z copying torch/include/ATen/ops/quantized_max_pool2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0440380Z copying torch/include/ATen/ops/replication_pad3d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0445170Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0449010Z copying torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0450780Z copying torch/include/ATen/ops/erf_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0456650Z copying torch/include/ATen/ops/eye_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0462480Z copying torch/include/ATen/ops/argsort_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0463760Z copying torch/include/ATen/ops/column_stack_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0465160Z copying torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0468490Z copying torch/include/ATen/ops/uniform_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0471220Z copying torch/include/ATen/ops/_fw_primal_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0474460Z copying torch/include/ATen/ops/sum_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0478430Z copying torch/include/ATen/ops/asin_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0480530Z copying torch/include/ATen/ops/cross_entropy_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0484980Z copying torch/include/ATen/ops/fft_irfft_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0488470Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0493690Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0495010Z copying torch/include/ATen/ops/permute_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0502980Z copying torch/include/ATen/ops/_cdist_forward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0504500Z copying torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0510170Z copying torch/include/ATen/ops/tanh_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0511450Z copying torch/include/ATen/ops/row_indices.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0517930Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0519290Z copying torch/include/ATen/ops/matrix_exp_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0520670Z copying torch/include/ATen/ops/quantize_per_channel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0524830Z copying torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0526240Z copying torch/include/ATen/ops/slow_conv_dilated2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0527470Z copying torch/include/ATen/ops/histogram.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0528950Z copying torch/include/ATen/ops/_conv_depthwise2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0531940Z copying torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0534390Z copying torch/include/ATen/ops/as_strided_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0537330Z copying torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0540900Z copying torch/include/ATen/ops/special_xlog1py_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0544630Z copying torch/include/ATen/ops/_functional_assert_async_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0549050Z copying torch/include/ATen/ops/amax_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0550700Z copying torch/include/ATen/ops/retains_grad_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0554200Z copying torch/include/ATen/ops/mean_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0558620Z copying torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0560910Z copying torch/include/ATen/ops/smooth_l1_loss_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0565330Z copying torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0567640Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0571340Z copying torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0573840Z copying torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0578230Z copying torch/include/ATen/ops/view_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0579850Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0588160Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0590860Z copying torch/include/ATen/ops/numpy_T_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0593890Z copying torch/include/ATen/ops/fft_rfftfreq_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0598260Z copying torch/include/ATen/ops/cauchy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0600230Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0603540Z copying torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0609400Z copying torch/include/ATen/ops/unflatten_dense_tensors_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0611210Z copying torch/include/ATen/ops/atanh_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0615650Z copying torch/include/ATen/ops/miopen_convolution_add_relu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0620470Z copying torch/include/ATen/ops/native_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0623840Z copying torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0625270Z copying torch/include/ATen/ops/_masked_softmax_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0630340Z copying torch/include/ATen/ops/floor_divide_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0631680Z copying torch/include/ATen/ops/_foreach_expm1.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0635800Z copying torch/include/ATen/ops/fft_fftshift.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0638330Z copying torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0642720Z copying torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0644170Z copying torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0649600Z copying torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0651090Z copying torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0655580Z copying torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0657000Z copying torch/include/ATen/ops/_cast_Short_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0660640Z copying torch/include/ATen/ops/linspace_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0664330Z copying torch/include/ATen/ops/logit_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0667880Z copying torch/include/ATen/ops/remainder_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0672480Z copying torch/include/ATen/ops/bilinear.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0676760Z copying torch/include/ATen/ops/reflection_pad2d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0680820Z copying torch/include/ATen/ops/_sparse_softmax_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0682320Z copying torch/include/ATen/ops/_foreach_asin.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0686040Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0687300Z copying torch/include/ATen/ops/split_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0691570Z copying torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0695340Z copying torch/include/ATen/ops/any_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0699960Z copying torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0704860Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0709330Z copying torch/include/ATen/ops/softplus_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0710040Z copying torch/include/ATen/ops/softmax_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0710690Z copying torch/include/ATen/ops/ccol_indices_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0715370Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0717470Z copying torch/include/ATen/ops/_fft_r2c.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0721830Z copying torch/include/ATen/ops/outer_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0725170Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0727570Z copying torch/include/ATen/ops/hypot_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0730740Z copying torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0735160Z copying torch/include/ATen/ops/adjoint.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0737690Z copying torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0741510Z copying torch/include/ATen/ops/flip_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0746490Z copying torch/include/ATen/ops/flipud.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0747820Z copying torch/include/ATen/ops/argmin_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0752680Z copying torch/include/ATen/ops/_foreach_exp_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0754320Z copying torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0758780Z copying torch/include/ATen/ops/addbmm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0762290Z copying torch/include/ATen/ops/masked_fill_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0764130Z copying torch/include/ATen/ops/exp_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0767310Z copying torch/include/ATen/ops/_ctc_loss_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0771370Z copying torch/include/ATen/ops/flipud_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0777500Z copying torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0780600Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0785840Z copying torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0787050Z copying torch/include/ATen/ops/_dimV_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0788720Z copying torch/include/ATen/ops/reflection_pad2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0793080Z copying torch/include/ATen/ops/mvlgamma_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0794690Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0800730Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0802750Z copying torch/include/ATen/ops/_batch_norm_with_update_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0808870Z copying torch/include/ATen/ops/log_normal_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0811420Z copying torch/include/ATen/ops/_sparse_sum_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0814290Z copying torch/include/ATen/ops/_aminmax_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0819910Z copying torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0821490Z copying torch/include/ATen/ops/miopen_convolution_transpose_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0825640Z copying torch/include/ATen/ops/miopen_rnn_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0826950Z copying torch/include/ATen/ops/normal_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0831560Z copying torch/include/ATen/ops/dot.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0834770Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0837910Z copying torch/include/ATen/ops/view_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0842950Z copying torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0844840Z copying torch/include/ATen/ops/angle_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0848740Z copying torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0852520Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0857890Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0859220Z copying torch/include/ATen/ops/_make_dual_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0862190Z copying torch/include/ATen/ops/_rowwise_prune_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0864940Z copying torch/include/ATen/ops/special_erfcx_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0867040Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0870610Z copying torch/include/ATen/ops/cosine_embedding_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0874350Z copying torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0879800Z copying torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0884890Z copying torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0885760Z copying torch/include/ATen/ops/_unsafe_view.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0887510Z copying torch/include/ATen/ops/_conj_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0890800Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0896120Z copying torch/include/ATen/ops/special_log_ndtr_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0897940Z copying torch/include/ATen/ops/asinh_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0903420Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0904660Z copying torch/include/ATen/ops/cumulative_trapezoid_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0908420Z copying torch/include/ATen/ops/grid_sampler_2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0910610Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0914150Z copying torch/include/ATen/ops/_fused_sgd_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0917790Z copying torch/include/ATen/ops/_fused_adam_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0920170Z copying torch/include/ATen/ops/mish_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0924060Z copying torch/include/ATen/ops/can_cast_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0927390Z copying torch/include/ATen/ops/ge_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0930470Z copying torch/include/ATen/ops/unique_consecutive.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0933710Z copying torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0939250Z copying torch/include/ATen/ops/max.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0940700Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0945980Z copying torch/include/ATen/ops/_euclidean_dist_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0949000Z copying torch/include/ATen/ops/avg_pool3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0951390Z copying torch/include/ATen/ops/logical_and_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0957260Z copying torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0958540Z copying torch/include/ATen/ops/as_strided_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0962670Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0964660Z copying torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0968090Z copying torch/include/ATen/ops/sym_constrain_range_for_size.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0971300Z copying torch/include/ATen/ops/soft_margin_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0973590Z copying torch/include/ATen/ops/isinf.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0977070Z copying torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0980570Z copying torch/include/ATen/ops/clamp_max_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0984740Z copying torch/include/ATen/ops/mkldnn_max_pool2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0987600Z copying torch/include/ATen/ops/linear_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0990140Z copying torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0995390Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.0999470Z copying torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1001220Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1005270Z copying torch/include/ATen/ops/exp_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1009530Z copying torch/include/ATen/ops/upsample_bicubic2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1011540Z copying torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1013460Z copying torch/include/ATen/ops/select_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1018510Z copying torch/include/ATen/ops/miopen_convolution_transpose_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1023740Z copying torch/include/ATen/ops/zeros_like_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1027690Z copying torch/include/ATen/ops/triangular_solve_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1030340Z copying torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1038280Z copying torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1039760Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1044180Z copying torch/include/ATen/ops/_foreach_sinh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1045550Z copying torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1047980Z copying torch/include/ATen/ops/_to_sparse_semi_structured.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1051270Z copying torch/include/ATen/ops/_foreach_log2_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1055930Z copying torch/include/ATen/ops/logspace_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1058860Z copying torch/include/ATen/ops/softshrink_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1062560Z copying torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1063810Z copying torch/include/ATen/ops/cholesky.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1067920Z copying torch/include/ATen/ops/_masked_scale_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1072120Z copying torch/include/ATen/ops/fft_ihfftn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1074220Z copying torch/include/ATen/ops/or_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1079040Z copying torch/include/ATen/ops/sparse_coo_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1082270Z copying torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1084750Z copying torch/include/ATen/ops/upsample_nearest3d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1091450Z copying torch/include/ATen/ops/max_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1094050Z copying torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1101130Z copying torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1102620Z copying torch/include/ATen/ops/clamp_min.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1103530Z copying torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1107730Z copying torch/include/ATen/ops/repeat_interleave.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1110560Z copying torch/include/ATen/ops/upsample_nearest2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1113290Z copying torch/include/ATen/ops/item_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1116340Z copying torch/include/ATen/ops/cudnn_convolution_relu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1118090Z copying torch/include/ATen/ops/nextafter_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1120480Z copying torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1124470Z copying torch/include/ATen/ops/fft_fft2_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1132050Z copying torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1136180Z copying torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1138410Z copying torch/include/ATen/ops/mkldnn_convolution.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1139760Z copying torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1142690Z copying torch/include/ATen/ops/_fft_r2c_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1146160Z copying torch/include/ATen/ops/glu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1147910Z copying torch/include/ATen/ops/_test_optional_filled_intlist_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1152020Z copying torch/include/ATen/ops/cat_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1155810Z copying torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1158150Z copying torch/include/ATen/ops/_test_warn_in_autograd_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1165920Z copying torch/include/ATen/ops/_coalesced_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1167430Z copying torch/include/ATen/ops/cudnn_convolution_relu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1172170Z copying torch/include/ATen/ops/upsample_nearest2d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1174110Z copying torch/include/ATen/ops/special_gammaln.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1175370Z copying torch/include/ATen/ops/_ctc_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1180650Z copying torch/include/ATen/ops/fill_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1182140Z copying torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1184960Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1190920Z copying torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1192450Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1198060Z copying torch/include/ATen/ops/sparse_bsc_tensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1199460Z copying torch/include/ATen/ops/gcd_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1202070Z copying torch/include/ATen/ops/index_add_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1205890Z copying torch/include/ATen/ops/logit_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1207550Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1211110Z copying torch/include/ATen/ops/fft_hfftn_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1215580Z copying torch/include/ATen/ops/_flash_attention_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1217790Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1221440Z copying torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1224460Z copying torch/include/ATen/ops/_foreach_trunc_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1229120Z copying torch/include/ATen/ops/arccos_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1235820Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1240940Z copying torch/include/ATen/ops/unfold_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1242700Z copying torch/include/ATen/ops/conv_tbc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1244270Z copying torch/include/ATen/ops/_foreach_frac_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1251250Z copying torch/include/ATen/ops/new_empty_strided_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1251780Z copying torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1254490Z copying torch/include/ATen/ops/sparse_mask.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1258780Z copying torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1261130Z copying torch/include/ATen/ops/atanh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1265230Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1267510Z copying torch/include/ATen/ops/exponential_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1270230Z copying torch/include/ATen/ops/_sparse_semi_structured_apply.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1274050Z copying torch/include/ATen/ops/lift_fresh_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1277690Z copying torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1280510Z copying torch/include/ATen/ops/_foreach_sign_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1284500Z copying torch/include/ATen/ops/adjoint_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1286660Z copying torch/include/ATen/ops/addcdiv_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1291960Z copying torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1293580Z copying torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1298190Z copying torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1304650Z copying torch/include/ATen/ops/mish_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1305940Z copying torch/include/ATen/ops/full.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1309580Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1310830Z copying torch/include/ATen/ops/view_as_real_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1316140Z copying torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1320480Z copying torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1322210Z copying torch/include/ATen/ops/linear_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1325020Z copying torch/include/ATen/ops/addmm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1329220Z copying torch/include/ATen/ops/reshape_as.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1331800Z copying torch/include/ATen/ops/upsample_nearest1d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1335890Z copying torch/include/ATen/ops/prod_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1338000Z copying torch/include/ATen/ops/abs_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1343430Z copying torch/include/ATen/ops/lift_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1347320Z copying torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1350850Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1354840Z copying torch/include/ATen/ops/erfc_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1356090Z copying torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1359480Z copying torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1364830Z copying torch/include/ATen/ops/_linalg_slogdet_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1366140Z copying torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1370760Z copying torch/include/ATen/ops/pad_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1371960Z copying torch/include/ATen/ops/signbit_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1376520Z copying torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1378700Z copying torch/include/ATen/ops/convolution_backward_overrideable_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1383080Z copying torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1387040Z copying torch/include/ATen/ops/clamp_max_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1388620Z copying torch/include/ATen/ops/sort_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1390170Z copying torch/include/ATen/ops/triu_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1396930Z copying torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1399250Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1403890Z copying torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1405330Z copying torch/include/ATen/ops/special_i0.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1408700Z copying torch/include/ATen/ops/atleast_3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1412880Z copying torch/include/ATen/ops/_nested_select_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1416380Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1419620Z copying torch/include/ATen/ops/special_airy_ai_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1424980Z copying torch/include/ATen/ops/addmm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1427650Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1428960Z copying torch/include/ATen/ops/special_gammaincc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1430700Z copying torch/include/ATen/ops/mish_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1435090Z copying torch/include/ATen/ops/min_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1436600Z copying torch/include/ATen/ops/acosh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1445740Z copying torch/include/ATen/ops/_pad_enum_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1450320Z copying torch/include/ATen/ops/inverse_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1451710Z copying torch/include/ATen/ops/mm_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1453430Z copying torch/include/ATen/ops/broadcast_tensors_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1458640Z copying torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1462150Z copying torch/include/ATen/ops/zero_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1464500Z copying torch/include/ATen/ops/_foreach_tanh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1468000Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1472500Z copying torch/include/ATen/ops/reflection_pad1d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1474290Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1478510Z copying torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1482670Z copying torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1485500Z copying torch/include/ATen/ops/renorm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1491430Z copying torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1492600Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1494100Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1498640Z copying torch/include/ATen/ops/conv_depthwise3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1502930Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1504850Z copying torch/include/ATen/ops/_foreach_reciprocal_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1509650Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1511050Z copying torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1515560Z copying torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1517650Z copying torch/include/ATen/ops/rsub_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1521950Z copying torch/include/ATen/ops/fractional_max_pool3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1524000Z copying torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1529120Z copying torch/include/ATen/ops/isneginf_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1532060Z copying torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1536060Z copying torch/include/ATen/ops/cat.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1537530Z copying torch/include/ATen/ops/_thnn_fused_gru_cell.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1541850Z copying torch/include/ATen/ops/_cudnn_rnn_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1544640Z copying torch/include/ATen/ops/rand_like_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1550810Z copying torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1552020Z copying torch/include/ATen/ops/trapezoid_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1557460Z copying torch/include/ATen/ops/relu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1558700Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1564660Z copying torch/include/ATen/ops/_nested_get_jagged_dummy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1566050Z copying torch/include/ATen/ops/clamp_max_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1572050Z copying torch/include/ATen/ops/_unpack_dual_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1573710Z copying torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1576030Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1578920Z copying torch/include/ATen/ops/var_mean_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1582020Z copying torch/include/ATen/ops/polar_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1584360Z copying torch/include/ATen/ops/narrow_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1589150Z copying torch/include/ATen/ops/vstack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1594020Z copying torch/include/ATen/ops/convolution_overrideable_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1595740Z copying torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1599540Z copying torch/include/ATen/ops/transpose_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1601130Z copying torch/include/ATen/ops/threshold_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1604450Z copying torch/include/ATen/ops/tanh_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1608820Z copying torch/include/ATen/ops/bucketize_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1610860Z copying torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1613830Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1618080Z copying torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1621070Z copying torch/include/ATen/ops/_cdist_forward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1623420Z copying torch/include/ATen/ops/view_as_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1630530Z copying torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1632740Z copying torch/include/ATen/ops/log_sigmoid_forward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1637070Z copying torch/include/ATen/ops/_cudnn_ctc_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1638600Z copying torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1641400Z copying torch/include/ATen/ops/view_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1644870Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1649270Z copying torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1656580Z copying torch/include/ATen/ops/eye_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1658060Z copying torch/include/ATen/ops/exp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1662630Z copying torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1666530Z copying torch/include/ATen/ops/expm1_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1669940Z copying torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1671780Z copying torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1673660Z copying torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1677620Z copying torch/include/ATen/ops/rsqrt_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1680540Z copying torch/include/ATen/ops/triu_indices_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1686360Z copying torch/include/ATen/ops/convolution_overrideable.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1688210Z copying torch/include/ATen/ops/diag_embed_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1692580Z copying torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1694190Z copying torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1698220Z copying torch/include/ATen/ops/lift_fresh_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1702080Z copying torch/include/ATen/ops/atanh_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1705010Z copying torch/include/ATen/ops/reciprocal_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1708420Z copying torch/include/ATen/ops/im2col_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1710430Z copying torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1716230Z copying torch/include/ATen/ops/_nested_view_from_buffer_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1719200Z copying torch/include/ATen/ops/sum_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1721390Z copying torch/include/ATen/ops/fft_ifft_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1724210Z copying torch/include/ATen/ops/combinations.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1726890Z copying torch/include/ATen/ops/_to_sparse_csr_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1733250Z copying torch/include/ATen/ops/_fft_r2c_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1738640Z copying torch/include/ATen/ops/hardtanh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1740990Z copying torch/include/ATen/ops/promote_types.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1743040Z copying torch/include/ATen/ops/cross_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1745500Z copying torch/include/ATen/ops/nansum_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1749060Z copying torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1754330Z copying torch/include/ATen/ops/log1p_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1755550Z copying torch/include/ATen/ops/_foreach_sub.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1758190Z copying torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1761090Z copying torch/include/ATen/ops/_cast_Int_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1764890Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1767940Z copying torch/include/ATen/ops/lshift_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1771980Z copying torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1775590Z copying torch/include/ATen/ops/negative_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1779550Z copying torch/include/ATen/ops/_cast_Byte.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1782350Z copying torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1785500Z copying torch/include/ATen/ops/logaddexp2_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1793610Z copying torch/include/ATen/ops/mish_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1794080Z copying torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1794520Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1801100Z copying torch/include/ATen/ops/linalg_cross_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1802620Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1808110Z copying torch/include/ATen/ops/view_as_complex_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1809270Z copying torch/include/ATen/ops/cos.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1812400Z copying torch/include/ATen/ops/bernoulli_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1813680Z copying torch/include/ATen/ops/rrelu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1818140Z copying torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1821900Z copying torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1824520Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1830400Z copying torch/include/ATen/ops/to_sparse_csr_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1832640Z copying torch/include/ATen/ops/median_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1837590Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1839490Z copying torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1841530Z copying torch/include/ATen/ops/uniform_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1844610Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1849090Z copying torch/include/ATen/ops/linalg_diagonal_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1853360Z copying torch/include/ATen/ops/index_reduce_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1855370Z copying torch/include/ATen/ops/_foobar_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1857620Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1860250Z copying torch/include/ATen/ops/randn_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1864730Z copying torch/include/ATen/ops/logical_or_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1871810Z copying torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1874320Z copying torch/include/ATen/ops/neg.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1878750Z copying torch/include/ATen/ops/igamma_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1880940Z copying torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1885160Z copying torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1888350Z copying torch/include/ATen/ops/norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1892480Z copying torch/include/ATen/ops/trace_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1893770Z copying torch/include/ATen/ops/log_sigmoid.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1901000Z copying torch/include/ATen/ops/linalg_ldl_factor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1902200Z copying torch/include/ATen/ops/eq_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1907950Z copying torch/include/ATen/ops/put_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1909570Z copying torch/include/ATen/ops/hinge_embedding_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1911700Z copying torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1916090Z copying torch/include/ATen/ops/softshrink_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1919520Z copying torch/include/ATen/ops/native_dropout_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1921270Z copying torch/include/ATen/ops/argmin_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1924750Z copying torch/include/ATen/ops/vstack_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1926680Z copying torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1930830Z copying torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1935830Z copying torch/include/ATen/ops/can_cast_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1942360Z copying torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1943650Z copying torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1946210Z copying torch/include/ATen/ops/topk_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1948590Z copying torch/include/ATen/ops/_foreach_tan_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1951820Z copying torch/include/ATen/ops/expm1_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1955370Z copying torch/include/ATen/ops/_nested_get_values_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1958660Z copying torch/include/ATen/ops/_masked_softmax_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1962590Z copying torch/include/ATen/ops/_foreach_lerp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1965610Z copying torch/include/ATen/ops/matmul_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1967390Z copying torch/include/ATen/ops/special_zeta_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1972270Z copying torch/include/ATen/ops/huber_loss_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1978360Z copying torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1980670Z copying torch/include/ATen/ops/conv_transpose2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1984820Z copying torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1986810Z copying torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1989550Z copying torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1994490Z copying torch/include/ATen/ops/signbit_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1995710Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.1998350Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2003420Z copying torch/include/ATen/ops/logsumexp_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2005020Z copying torch/include/ATen/ops/_foreach_neg_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2011320Z copying torch/include/ATen/ops/_embedding_bag_forward_only_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2013140Z copying torch/include/ATen/ops/_log_softmax_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2017640Z copying torch/include/ATen/ops/neg_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2018870Z copying torch/include/ATen/ops/take_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2022130Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2025480Z copying torch/include/ATen/ops/i0_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2031280Z copying torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2037020Z copying torch/include/ATen/ops/special_gammainc_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2038050Z copying torch/include/ATen/ops/squeeze_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2042250Z copying torch/include/ATen/ops/_sparse_broadcast_to.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2044480Z copying torch/include/ATen/ops/hardtanh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2047860Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2052930Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2055570Z copying torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2063530Z copying torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2064940Z copying torch/include/ATen/ops/_reshape_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2066280Z copying torch/include/ATen/ops/index_reduce_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2070070Z copying torch/include/ATen/ops/diagonal_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2073060Z copying torch/include/ATen/ops/dsplit.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2074500Z copying torch/include/ATen/ops/gather_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2078660Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2082360Z copying torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2085430Z copying torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2089220Z copying torch/include/ATen/ops/_debug_has_internal_overlap_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2092640Z copying torch/include/ATen/ops/_assert_scalar_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2094640Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2097590Z copying torch/include/ATen/ops/_unique.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2102640Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2105980Z copying torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2110600Z copying torch/include/ATen/ops/silu_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2111860Z copying torch/include/ATen/ops/resize_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2114460Z copying torch/include/ATen/ops/range_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2117890Z copying torch/include/ATen/ops/max_pool1d_with_indices.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2122100Z copying torch/include/ATen/ops/replication_pad1d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2124920Z copying torch/include/ATen/ops/int_repr_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2129960Z copying torch/include/ATen/ops/upsample_linear1d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2131460Z copying torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2136350Z copying torch/include/ATen/ops/hardsigmoid_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2137940Z copying torch/include/ATen/ops/_lstm_mps_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2143590Z copying torch/include/ATen/ops/mul_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2146280Z copying torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2149770Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2155050Z copying torch/include/ATen/ops/cos_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2158210Z copying torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2160060Z copying torch/include/ATen/ops/exp2_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2162180Z copying torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2165640Z copying torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2168120Z copying torch/include/ATen/ops/coalesce_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2171980Z copying torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2175030Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2178690Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2183830Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2187680Z copying torch/include/ATen/ops/add_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2191540Z copying torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2194360Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2196120Z copying torch/include/ATen/ops/bmm_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2198450Z copying torch/include/ATen/ops/to_mkldnn_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2201930Z copying torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2202850Z copying torch/include/ATen/ops/special_bessel_y0_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2209510Z copying torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2211820Z copying torch/include/ATen/ops/real_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2216550Z copying torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2219200Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2224070Z copying torch/include/ATen/ops/max_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2225720Z copying torch/include/ATen/ops/_reshape_alias_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2230450Z copying torch/include/ATen/ops/col_indices_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2231680Z copying torch/include/ATen/ops/logcumsumexp_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2237790Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2239240Z copying torch/include/ATen/ops/fmod_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2244820Z copying torch/include/ATen/ops/_foreach_clamp_max_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2246280Z copying torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2250190Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2253720Z copying torch/include/ATen/ops/_foreach_max_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2255110Z copying torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2261820Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2263180Z copying torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2271290Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2272650Z copying torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2273840Z copying torch/include/ATen/ops/copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2277670Z copying torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2279910Z copying torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2282630Z copying torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2288390Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2295230Z copying torch/include/ATen/ops/linalg_solve_triangular_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2296660Z copying torch/include/ATen/ops/max_unpool2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2297690Z copying torch/include/ATen/ops/bitwise_xor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2304450Z copying torch/include/ATen/ops/feature_alpha_dropout_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2305340Z copying torch/include/ATen/ops/_empty_affine_quantized_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2306300Z copying torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2309780Z copying torch/include/ATen/ops/_standard_gamma.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2313270Z copying torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2317290Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2318530Z copying torch/include/ATen/ops/batch_norm_update_stats_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2324990Z copying torch/include/ATen/ops/special_i1e_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2329280Z copying torch/include/ATen/ops/baddbmm_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2332230Z copying torch/include/ATen/ops/cummax_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2334560Z copying torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2336450Z copying torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2338640Z copying torch/include/ATen/ops/norm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2342340Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2346610Z copying torch/include/ATen/ops/concat_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2348680Z copying torch/include/ATen/ops/uniform_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2352180Z copying torch/include/ATen/ops/gcd_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2354480Z copying torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2358490Z copying torch/include/ATen/ops/new_zeros_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2362030Z copying torch/include/ATen/ops/sigmoid_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2365020Z copying torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2369190Z copying torch/include/ATen/ops/_cast_Int_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2372830Z copying torch/include/ATen/ops/_unsafe_index_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2377440Z copying torch/include/ATen/ops/lerp_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2378300Z copying torch/include/ATen/ops/_foreach_add.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2383580Z copying torch/include/ATen/ops/unfold_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2385780Z copying torch/include/ATen/ops/max_pool1d_with_indices_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2389670Z copying torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2392010Z copying torch/include/ATen/ops/masked_fill.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2396750Z copying torch/include/ATen/ops/_log_softmax_backward_data.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2399680Z copying torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2402330Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2404410Z copying torch/include/ATen/ops/unflatten_dense_tensors.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2408450Z copying torch/include/ATen/ops/new_ones_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2414930Z copying torch/include/ATen/ops/addcdiv.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2417740Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2423800Z copying torch/include/ATen/ops/_to_sparse_bsr_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2425240Z copying torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2426480Z copying torch/include/ATen/ops/ravel_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2430930Z copying torch/include/ATen/ops/_foreach_addcdiv.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2432180Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2437440Z copying torch/include/ATen/ops/linalg_pinv_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2439410Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2446530Z copying torch/include/ATen/ops/view_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2447450Z copying torch/include/ATen/ops/max_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2450330Z copying torch/include/ATen/ops/msort_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2452500Z copying torch/include/ATen/ops/q_per_channel_scales_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2457920Z copying torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2459040Z copying torch/include/ATen/ops/random_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2463240Z copying torch/include/ATen/ops/scatter_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2465190Z copying torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2472430Z copying torch/include/ATen/ops/linalg_cross_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2473650Z copying torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2479160Z copying torch/include/ATen/ops/mkldnn_linear.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2482170Z copying torch/include/ATen/ops/index_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2486150Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2487520Z copying torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2488490Z copying torch/include/ATen/ops/lerp_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2491400Z copying torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2498280Z copying torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2499250Z copying torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2501700Z copying torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2507850Z copying torch/include/ATen/ops/_add_relu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2508970Z copying torch/include/ATen/ops/fft_ihfft2_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2516450Z copying torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2517580Z copying torch/include/ATen/ops/sin_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2519280Z copying torch/include/ATen/ops/hardsigmoid_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2521940Z copying torch/include/ATen/ops/fmin_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2525840Z copying torch/include/ATen/ops/hardshrink_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2528850Z copying torch/include/ATen/ops/hsplit.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2531570Z copying torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2535190Z copying torch/include/ATen/ops/signbit_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2537880Z copying torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2540680Z copying torch/include/ATen/ops/hardtanh_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2544280Z copying torch/include/ATen/ops/special_modified_bessel_i0_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2548850Z copying torch/include/ATen/ops/_mps_convolution_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2551060Z copying torch/include/ATen/ops/repeat_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2557180Z copying torch/include/ATen/ops/_reshape_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2559700Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2569100Z copying torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2570140Z copying torch/include/ATen/ops/less_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2572450Z copying torch/include/ATen/ops/one_hot_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2582660Z copying torch/include/ATen/ops/gcd_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2584010Z copying torch/include/ATen/ops/_fft_c2c_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2586280Z copying torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2587660Z copying torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2595570Z copying torch/include/ATen/ops/_foreach_log1p.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2596560Z copying torch/include/ATen/ops/cauchy_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2597860Z copying torch/include/ATen/ops/rsqrt_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2599600Z copying torch/include/ATen/ops/_foreach_trunc_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2605900Z copying torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2606810Z copying torch/include/ATen/ops/expand_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2608070Z copying torch/include/ATen/ops/mps_convolution_transpose_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2609840Z copying torch/include/ATen/ops/linalg_matrix_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2611580Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2616590Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2620610Z copying torch/include/ATen/ops/mul_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2622420Z copying torch/include/ATen/ops/miopen_batch_norm_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2627770Z copying torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2630350Z copying torch/include/ATen/ops/unfold_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2634120Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2635210Z copying torch/include/ATen/ops/linalg_svd_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2637910Z copying torch/include/ATen/ops/bitwise_and_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2642760Z copying torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2645510Z copying torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2648810Z copying torch/include/ATen/ops/fft_fft2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2654070Z copying torch/include/ATen/ops/var_mean_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2655180Z copying torch/include/ATen/ops/normal_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2659240Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2662330Z copying torch/include/ATen/ops/max_pool2d_with_indices_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2664580Z copying torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2668110Z copying torch/include/ATen/ops/fft_ifft2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2672140Z copying torch/include/ATen/ops/argmax_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2676040Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2678020Z copying torch/include/ATen/ops/adaptive_max_pool3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2687260Z copying torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2688280Z copying torch/include/ATen/ops/amax_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2689540Z copying torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2692710Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2693810Z copying torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2696040Z copying torch/include/ATen/ops/_unsafe_view_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2702330Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2709030Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2710190Z copying torch/include/ATen/ops/_compute_linear_combination_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2714070Z copying torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2716690Z copying torch/include/ATen/ops/masked_fill_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2718680Z copying torch/include/ATen/ops/polygamma_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2721520Z copying torch/include/ATen/ops/l1_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2726220Z copying torch/include/ATen/ops/trace_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2728380Z copying torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2732000Z copying torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2735440Z copying torch/include/ATen/ops/sort.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2742040Z copying torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2744820Z copying torch/include/ATen/ops/mish_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2752070Z copying torch/include/ATen/ops/is_set_to.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2752850Z copying torch/include/ATen/ops/unflatten_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2753640Z copying torch/include/ATen/ops/_fused_adam_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2756450Z copying torch/include/ATen/ops/_dirichlet_grad_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2757690Z copying torch/include/ATen/ops/einsum_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2763440Z copying torch/include/ATen/ops/nan_to_num.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2765460Z copying torch/include/ATen/ops/q_zero_point_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2773290Z copying torch/include/ATen/ops/as_strided_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2774340Z copying torch/include/ATen/ops/t_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2778850Z copying torch/include/ATen/ops/logical_and_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2781620Z copying torch/include/ATen/ops/split_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2782620Z copying torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2789370Z copying torch/include/ATen/ops/_addmm_activation_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2791520Z copying torch/include/ATen/ops/lerp_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2792530Z copying torch/include/ATen/ops/nansum_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2800090Z copying torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2801260Z copying torch/include/ATen/ops/_fft_c2r_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2803070Z copying torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2807800Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2809930Z copying torch/include/ATen/ops/cosine_similarity_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2812350Z copying torch/include/ATen/ops/fix_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2817290Z copying torch/include/ATen/ops/_reshape_alias_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2818450Z copying torch/include/ATen/ops/flatten_dense_tensors_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2822860Z copying torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2825000Z copying torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2831210Z copying torch/include/ATen/ops/igamma_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2832200Z copying torch/include/ATen/ops/poisson_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2837890Z copying torch/include/ATen/ops/full_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2840200Z copying torch/include/ATen/ops/convolution_backward_overrideable_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2842470Z copying torch/include/ATen/ops/_conj_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2845280Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2850090Z copying torch/include/ATen/ops/linalg_eig_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2851360Z copying torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2856450Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2861560Z copying torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2862820Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2865490Z copying torch/include/ATen/ops/expm1_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2867760Z copying torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2871230Z copying torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2874980Z copying torch/include/ATen/ops/sinh_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2879420Z copying torch/include/ATen/ops/upsample_linear1d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2888760Z copying torch/include/ATen/ops/baddbmm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2892950Z copying torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2894270Z copying torch/include/ATen/ops/group_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2897890Z copying torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2899470Z copying torch/include/ATen/ops/_autocast_to_full_precision_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2900710Z copying torch/include/ATen/ops/exp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2905700Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2906730Z copying torch/include/ATen/ops/upsample_bilinear2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2909600Z copying torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2914100Z copying torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2915340Z copying torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2921910Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2923030Z copying torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2929910Z copying torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2932070Z copying torch/include/ATen/ops/clamp_max_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2933290Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2934600Z copying torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2937850Z copying torch/include/ATen/ops/arange.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2942270Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2945680Z copying torch/include/ATen/ops/hardshrink.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2949290Z copying torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2953370Z copying torch/include/ATen/ops/special_round_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2956590Z copying torch/include/ATen/ops/_reshape_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2958570Z copying torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2960390Z copying torch/include/ATen/ops/index_fill.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2964520Z copying torch/include/ATen/ops/ceil_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2969360Z copying torch/include/ATen/ops/convolution_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2974030Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2977230Z copying torch/include/ATen/ops/linalg_diagonal_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2978420Z copying torch/include/ATen/ops/nonzero_numpy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2982190Z copying torch/include/ATen/ops/_index_put_impl_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2986200Z copying torch/include/ATen/ops/istft.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2988110Z copying torch/include/ATen/ops/_foreach_erfc_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2991920Z copying torch/include/ATen/ops/logit_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2995180Z copying torch/include/ATen/ops/chain_matmul_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.2998820Z copying torch/include/ATen/ops/_conj_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3002200Z copying torch/include/ATen/ops/softplus_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3009980Z copying torch/include/ATen/ops/_foreach_addcmul_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3010770Z copying torch/include/ATen/ops/slice_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3015190Z copying torch/include/ATen/ops/_compute_linear_combination.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3016230Z copying torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3019430Z copying torch/include/ATen/ops/_nnz_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3020900Z copying torch/include/ATen/ops/cummaxmin_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3024690Z copying torch/include/ATen/ops/fft_rfft2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3028470Z copying torch/include/ATen/ops/_stack_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3033340Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3037520Z copying torch/include/ATen/ops/cartesian_prod_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3038490Z copying torch/include/ATen/ops/_test_optional_filled_intlist.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3042230Z copying torch/include/ATen/ops/huber_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3045090Z copying torch/include/ATen/ops/index_select_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3049110Z copying torch/include/ATen/ops/grid_sampler_3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3051660Z copying torch/include/ATen/ops/view_as_real_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3055920Z copying torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3056940Z copying torch/include/ATen/ops/index_add_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3064100Z copying torch/include/ATen/ops/_to_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3070190Z copying torch/include/ATen/ops/max_unpool3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3075570Z copying torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3077790Z copying torch/include/ATen/ops/native_batch_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3082790Z copying torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3085950Z copying torch/include/ATen/ops/_fw_primal_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3087540Z copying torch/include/ATen/ops/isnan_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3089280Z copying torch/include/ATen/ops/full_like_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3091560Z copying torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3093590Z copying torch/include/ATen/ops/fmax_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3094790Z copying torch/include/ATen/ops/randint_like.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3099000Z copying torch/include/ATen/ops/_neg_view_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3105180Z copying torch/include/ATen/ops/lshift_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3110130Z copying torch/include/ATen/ops/unfold_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3112300Z copying torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3115590Z copying torch/include/ATen/ops/istft_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3122030Z copying torch/include/ATen/ops/_unique_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3124740Z copying torch/include/ATen/ops/fmin_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3127680Z copying torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3131250Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3132380Z copying torch/include/ATen/ops/rsqrt_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3136020Z copying torch/include/ATen/ops/searchsorted_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3140290Z copying torch/include/ATen/ops/ones_like_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3143610Z copying torch/include/ATen/ops/tanh_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3146080Z copying torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3147920Z copying torch/include/ATen/ops/_softmax_backward_data.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3154340Z copying torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3157660Z copying torch/include/ATen/ops/_to_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3160160Z copying torch/include/ATen/ops/sinh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3161370Z copying torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3164250Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3171840Z copying torch/include/ATen/ops/unsafe_split_with_sizes_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3177620Z copying torch/include/ATen/ops/geometric_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3187530Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3192490Z copying torch/include/ATen/ops/erf_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3198490Z copying torch/include/ATen/ops/align_as_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3205170Z copying torch/include/ATen/ops/zero.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3209110Z copying torch/include/ATen/ops/xlogy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3212050Z copying torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3217390Z copying torch/include/ATen/ops/mT.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3218600Z copying torch/include/ATen/ops/uniform_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3222700Z copying torch/include/ATen/ops/embedding_dense_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3224740Z copying torch/include/ATen/ops/orgqr_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3228580Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3233670Z copying torch/include/ATen/ops/cumprod_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3234740Z copying torch/include/ATen/ops/range_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3239170Z copying torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3243900Z copying torch/include/ATen/ops/_adaptive_avg_pool3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3245030Z copying torch/include/ATen/ops/_masked_softmax_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3248680Z copying torch/include/ATen/ops/linalg_ldl_solve.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3255510Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3258510Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3259690Z copying torch/include/ATen/ops/slice_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3262980Z copying torch/include/ATen/ops/random_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3265480Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3268300Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3272300Z copying torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3274890Z copying torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3278460Z copying torch/include/ATen/ops/floor_divide_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3282070Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3288750Z copying torch/include/ATen/ops/_linalg_det_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3289770Z copying torch/include/ATen/ops/sin_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3291570Z copying torch/include/ATen/ops/can_cast.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3295260Z copying torch/include/ATen/ops/cumsum_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3298390Z copying torch/include/ATen/ops/atanh_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3303450Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3306790Z copying torch/include/ATen/ops/kl_div_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3311750Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3312920Z copying torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3315110Z copying torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3318060Z copying torch/include/ATen/ops/linalg_vector_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3321330Z copying torch/include/ATen/ops/embedding_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3325120Z copying torch/include/ATen/ops/igamma_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3330780Z copying torch/include/ATen/ops/sparse_bsc_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3332940Z copying torch/include/ATen/ops/special_i0e_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3338020Z copying torch/include/ATen/ops/is_floating_point.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3341270Z copying torch/include/ATen/ops/fft_fft2_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3342460Z copying torch/include/ATen/ops/xlogy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3345120Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3348470Z copying torch/include/ATen/ops/ceil_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3355030Z copying torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3356010Z copying torch/include/ATen/ops/masked_scatter_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3358030Z copying torch/include/ATen/ops/ge_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3362460Z copying torch/include/ATen/ops/_test_check_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3365850Z copying torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3369920Z copying torch/include/ATen/ops/squeeze.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3371410Z copying torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3375140Z copying torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3377530Z copying torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3382560Z copying torch/include/ATen/ops/permute_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3384220Z copying torch/include/ATen/ops/is_distributed_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3388860Z copying torch/include/ATen/ops/_histogramdd_bin_edges.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3393070Z copying torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3395440Z copying torch/include/ATen/ops/relu6_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3399930Z copying torch/include/ATen/ops/sigmoid_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3403670Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3404740Z copying torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3409140Z copying torch/include/ATen/ops/fft_hfft2_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3412120Z copying torch/include/ATen/ops/rad2deg_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3415770Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3420700Z copying torch/include/ATen/ops/leaky_relu_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3421790Z copying torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3424920Z copying torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3427040Z copying torch/include/ATen/ops/silu_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3434050Z copying torch/include/ATen/ops/linalg_solve.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3436720Z copying torch/include/ATen/ops/special_zeta_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3439950Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3442780Z copying torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3444740Z copying torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3449010Z copying torch/include/ATen/ops/_foreach_sigmoid_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3452000Z copying torch/include/ATen/ops/lshift.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3453590Z copying torch/include/ATen/ops/outer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3459980Z copying torch/include/ATen/ops/bilinear_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3461170Z copying torch/include/ATen/ops/rms_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3467930Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3469210Z copying torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3470680Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3471960Z copying torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3475020Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3476130Z copying torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3479970Z copying torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3481100Z copying torch/include/ATen/ops/stft_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3486420Z copying torch/include/ATen/ops/linalg_lu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3492930Z copying torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3496890Z copying torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3501370Z copying torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3502430Z copying torch/include/ATen/ops/_linalg_det.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3506190Z copying torch/include/ATen/ops/cholesky_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3511470Z copying torch/include/ATen/ops/asin_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3514030Z copying torch/include/ATen/ops/from_file_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3516150Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3518930Z copying torch/include/ATen/ops/_test_serialization_subcmul_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3521760Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3524850Z copying torch/include/ATen/ops/_assert_async_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3527210Z copying torch/include/ATen/ops/nansum_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3533860Z copying torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3535990Z copying torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3540500Z copying torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3543210Z copying torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3545370Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3550940Z copying torch/include/ATen/ops/norm_except_dim.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3551940Z copying torch/include/ATen/ops/fft_irfft2_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3555210Z copying torch/include/ATen/ops/_make_dual_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3559070Z copying torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3562680Z copying torch/include/ATen/ops/linalg_solve_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3566040Z copying torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3571530Z copying torch/include/ATen/ops/log1p_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3575570Z copying torch/include/ATen/ops/view_as_complex_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3576810Z copying torch/include/ATen/ops/repeat_interleave_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3578350Z copying torch/include/ATen/ops/is_complex.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3582270Z copying torch/include/ATen/ops/softplus_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3586960Z copying torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3589090Z copying torch/include/ATen/ops/_weight_int4pack_mm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3593790Z copying torch/include/ATen/ops/_version.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3596460Z copying torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3599260Z copying torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3601580Z copying torch/include/ATen/ops/softplus_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3604160Z copying torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3607540Z copying torch/include/ATen/ops/scatter_add_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3611300Z copying torch/include/ATen/ops/tril_indices_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3615350Z copying torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3617870Z copying torch/include/ATen/ops/clip_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3621760Z copying torch/include/ATen/ops/matmul_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3624390Z copying torch/include/ATen/ops/linalg_solve_ex.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3631490Z copying torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3635710Z copying torch/include/ATen/ops/_mkldnn_transpose_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3638650Z copying torch/include/ATen/ops/special_ndtri_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3639730Z copying torch/include/ATen/ops/tensor_split_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3646160Z copying torch/include/ATen/ops/align_to_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3648070Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3649190Z copying torch/include/ATen/ops/convolution_backward_overrideable.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3653910Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3654950Z copying torch/include/ATen/ops/geometric.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3660070Z copying torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3661160Z copying torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3666710Z copying torch/include/ATen/ops/i0_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3667860Z copying torch/include/ATen/ops/hardshrink_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3672490Z copying torch/include/ATen/ops/requires_grad.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3674510Z copying torch/include/ATen/ops/elu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3680080Z copying torch/include/ATen/ops/threshold_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3681800Z copying torch/include/ATen/ops/special_entr_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3686710Z copying torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3688500Z copying torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3690840Z copying torch/include/ATen/ops/bitwise_xor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3694870Z copying torch/include/ATen/ops/special_xlogy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3699640Z copying torch/include/ATen/ops/acos_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3702190Z copying torch/include/ATen/ops/cumprod_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3705720Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3709180Z copying torch/include/ATen/ops/lgamma_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3713610Z copying torch/include/ATen/ops/_amp_update_scale_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3717520Z copying torch/include/ATen/ops/expm1_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3718760Z copying torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3724370Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3725530Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3731140Z copying torch/include/ATen/ops/_index_put_impl_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3732290Z copying torch/include/ATen/ops/unfold_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3737290Z copying torch/include/ATen/ops/reflection_pad3d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3740680Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3741920Z copying torch/include/ATen/ops/addbmm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3743320Z copying torch/include/ATen/ops/matrix_power_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3748810Z copying torch/include/ATen/ops/upsample_nearest1d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3750890Z copying torch/include/ATen/ops/matmul_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3755910Z copying torch/include/ATen/ops/max_pool3d_with_indices_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3760520Z copying torch/include/ATen/ops/_lstm_mps_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3761830Z copying torch/include/ATen/ops/_softmax_backward_data_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3767320Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3768360Z copying torch/include/ATen/ops/mps_convolution_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3774160Z copying torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3776780Z copying torch/include/ATen/ops/_coalesce_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3780380Z copying torch/include/ATen/ops/special_exp2_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3782140Z copying torch/include/ATen/ops/special_erfcx_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3784420Z copying torch/include/ATen/ops/min_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3789150Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3792770Z copying torch/include/ATen/ops/logit_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3796120Z copying torch/include/ATen/ops/scalar_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3800340Z copying torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3801350Z copying torch/include/ATen/ops/_cholesky_solve_helper_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3804480Z copying torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3807480Z copying torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3811430Z copying torch/include/ATen/ops/special_legendre_polynomial_p_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3814380Z copying torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3819270Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3821500Z copying torch/include/ATen/ops/_softmax_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3825910Z copying torch/include/ATen/ops/_foreach_reciprocal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3829380Z copying torch/include/ATen/ops/softplus_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3833680Z copying torch/include/ATen/ops/is_inference_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3835600Z copying torch/include/ATen/ops/any_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3837910Z copying torch/include/ATen/ops/digamma_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3840780Z copying torch/include/ATen/ops/abs_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3848230Z copying torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3849780Z copying torch/include/ATen/ops/elu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3857480Z copying torch/include/ATen/ops/mH_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3858760Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3861730Z copying torch/include/ATen/ops/linalg_cross.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3866870Z copying torch/include/ATen/ops/inner.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3869160Z copying torch/include/ATen/ops/nanmedian_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3870230Z copying torch/include/ATen/ops/fractional_max_pool2d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3871940Z copying torch/include/ATen/ops/kthvalue_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3874540Z copying torch/include/ATen/ops/conj.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3876160Z copying torch/include/ATen/ops/native_group_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3879300Z copying torch/include/ATen/ops/mkldnn_linear_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3881480Z copying torch/include/ATen/ops/select_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3886850Z copying torch/include/ATen/ops/special_log_softmax_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3893960Z copying torch/include/ATen/ops/reshape_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3896800Z copying torch/include/ATen/ops/addcmul_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3898270Z copying torch/include/ATen/ops/atan_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3902040Z copying torch/include/ATen/ops/_test_serialization_subcmul_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3904110Z copying torch/include/ATen/ops/_scaled_mm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3909770Z copying torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3910810Z copying torch/include/ATen/ops/neg_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3916600Z copying torch/include/ATen/ops/_weight_int4pack_mm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3917760Z copying torch/include/ATen/ops/addmm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3923050Z copying torch/include/ATen/ops/hardshrink_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3923980Z copying torch/include/ATen/ops/softmax_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3932390Z copying torch/include/ATen/ops/silu_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3933460Z copying torch/include/ATen/ops/copy_sparse_to_sparse_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3939830Z copying torch/include/ATen/ops/mse_loss_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3941080Z copying torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3942860Z copying torch/include/ATen/ops/vander_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3947030Z copying torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3951290Z copying torch/include/ATen/ops/cumprod_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3953740Z copying torch/include/ATen/ops/_upsample_nearest_exact3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3955980Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3959750Z copying torch/include/ATen/ops/matrix_H_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3962570Z copying torch/include/ATen/ops/_resize_output.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3968140Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3969340Z copying torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3977470Z copying torch/include/ATen/ops/linalg_cond.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3979820Z copying torch/include/ATen/ops/special_polygamma.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3980740Z copying torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3983570Z copying torch/include/ATen/ops/replication_pad2d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3986100Z copying torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3990550Z copying torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3991690Z copying torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.3996590Z copying torch/include/ATen/ops/smm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4002110Z copying torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4003840Z copying torch/include/ATen/ops/_addmm_activation.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4005410Z copying torch/include/ATen/ops/ormqr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4007220Z copying torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4012010Z copying torch/include/ATen/ops/floor_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4014180Z copying torch/include/ATen/ops/sin.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4019680Z copying torch/include/ATen/ops/_spdiags_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4024900Z copying torch/include/ATen/ops/float_power_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4026940Z copying torch/include/ATen/ops/imag_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4028350Z copying torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4032260Z copying torch/include/ATen/ops/_foreach_pow_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4034420Z copying torch/include/ATen/ops/sinh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4039250Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4042060Z copying torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4047110Z copying torch/include/ATen/ops/crow_indices_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4049760Z copying torch/include/ATen/ops/fft_ifftn_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4054690Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4058180Z copying torch/include/ATen/ops/sum_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4059430Z copying torch/include/ATen/ops/exp2_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4062980Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4066800Z copying torch/include/ATen/ops/_assert_scalar_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4070540Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4071800Z copying torch/include/ATen/ops/view_as_complex_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4075900Z copying torch/include/ATen/ops/_log_softmax_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4078910Z copying torch/include/ATen/ops/sigmoid_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4085350Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4086680Z copying torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4088000Z copying torch/include/ATen/ops/empty_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4099360Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4099930Z copying torch/include/ATen/ops/is_neg_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4100300Z copying torch/include/ATen/ops/floor_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4102250Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4107860Z copying torch/include/ATen/ops/prelu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4109630Z copying torch/include/ATen/ops/take_along_dim.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4110970Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4114400Z copying torch/include/ATen/ops/glu_backward_jvp_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4122550Z copying torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4123810Z copying torch/include/ATen/ops/_unsafe_index_put_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4130980Z copying torch/include/ATen/ops/softshrink_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4132490Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4133900Z copying torch/include/ATen/ops/_cudnn_rnn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4139880Z copying torch/include/ATen/ops/replication_pad1d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4140850Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4142370Z copying torch/include/ATen/ops/_linalg_det_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4147450Z copying torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4149530Z copying torch/include/ATen/ops/_cdist_forward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4154450Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4158910Z copying torch/include/ATen/ops/reflection_pad3d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4160200Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4163740Z copying torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4165250Z copying torch/include/ATen/ops/_cdist_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4167460Z copying torch/include/ATen/ops/multi_margin_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4171220Z copying torch/include/ATen/ops/_foreach_add_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4174860Z copying torch/include/ATen/ops/group_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4178510Z copying torch/include/ATen/ops/special_erfcx_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4182520Z copying torch/include/ATen/ops/_foreach_minimum_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4186650Z copying torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4189130Z copying torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4193150Z copying torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4198380Z copying torch/include/ATen/ops/_coalesced.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4200160Z copying torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4203050Z copying torch/include/ATen/ops/_nested_get_ragged_idx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4208310Z copying torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4209700Z copying torch/include/ATen/ops/conv2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4213520Z copying torch/include/ATen/ops/special_logsumexp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4215690Z copying torch/include/ATen/ops/linalg_eigvalsh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4219070Z copying torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4221000Z copying torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4224530Z copying torch/include/ATen/ops/dsplit_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4228780Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4232510Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4235460Z copying torch/include/ATen/ops/igammac.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4240820Z copying torch/include/ATen/ops/_efficientzerotensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4251260Z copying torch/include/ATen/ops/arange_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4252930Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4254270Z copying torch/include/ATen/ops/clamp_min_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4260290Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4261640Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4263750Z copying torch/include/ATen/ops/celu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4265310Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4269850Z copying torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4271210Z copying torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4276160Z copying torch/include/ATen/ops/_foreach_addcdiv_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4279650Z copying torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4285480Z copying torch/include/ATen/ops/_chunk_cat_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4287380Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4289960Z copying torch/include/ATen/ops/fmin_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4292040Z copying torch/include/ATen/ops/upsample_nearest2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4295030Z copying torch/include/ATen/ops/fft_ifftshift_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4299810Z copying torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4302970Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4305100Z copying torch/include/ATen/ops/softplus_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4309190Z copying torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4313260Z copying torch/include/ATen/ops/index_fill_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4316300Z copying torch/include/ATen/ops/quantized_max_pool3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4318090Z copying torch/include/ATen/ops/logaddexp_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4321340Z copying torch/include/ATen/ops/arange_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4324030Z copying torch/include/ATen/ops/_nnpack_spatial_convolution.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4329850Z copying torch/include/ATen/ops/bitwise_not_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4334550Z copying torch/include/ATen/ops/conv_depthwise3d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4336240Z copying torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4339420Z copying torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4340900Z copying torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4345640Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4351530Z copying torch/include/ATen/ops/_batch_norm_impl_index_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4353070Z copying torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4354790Z copying torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4359370Z copying torch/include/ATen/ops/_foreach_sub_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4363940Z copying torch/include/ATen/ops/sub_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4367750Z copying torch/include/ATen/ops/_to_sparse_semi_structured_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4369050Z copying torch/include/ATen/ops/unbind_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4372390Z copying torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4374720Z copying torch/include/ATen/ops/signbit_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4378140Z copying torch/include/ATen/ops/gelu_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4381800Z copying torch/include/ATen/ops/is_neg_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4384430Z copying torch/include/ATen/ops/numpy_T_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4388770Z copying torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4392320Z copying torch/include/ATen/ops/to_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4394320Z copying torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4397240Z copying torch/include/ATen/ops/replication_pad2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4400920Z copying torch/include/ATen/ops/is_floating_point_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4405320Z copying torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4410480Z copying torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4411320Z copying torch/include/ATen/ops/_nested_tensor_strides.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4416260Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4419080Z copying torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4422280Z copying torch/include/ATen/ops/all_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4425910Z copying torch/include/ATen/ops/tanh_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4430460Z copying torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4432750Z copying torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4437190Z copying torch/include/ATen/ops/masked_select_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4438560Z copying torch/include/ATen/ops/_flash_attention_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4441190Z copying torch/include/ATen/ops/logit_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4444930Z copying torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4451840Z copying torch/include/ATen/ops/chunk_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4457480Z copying torch/include/ATen/ops/_foobar_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4458740Z copying torch/include/ATen/ops/atan2_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4465170Z copying torch/include/ATen/ops/nextafter_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4466720Z copying torch/include/ATen/ops/amin.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4471610Z copying torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4472440Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4477760Z copying torch/include/ATen/ops/_sparse_csr_prod.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4479050Z copying torch/include/ATen/ops/_cholesky_solve_helper_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4482250Z copying torch/include/ATen/ops/frexp_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4484550Z copying torch/include/ATen/ops/alias_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4487750Z copying torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4494800Z copying torch/include/ATen/ops/gru_cell.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4496150Z copying torch/include/ATen/ops/isclose_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4500800Z copying torch/include/ATen/ops/batch_norm_gather_stats_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4502500Z copying torch/include/ATen/ops/gather_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4504440Z copying torch/include/ATen/ops/mkldnn_linear_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4512420Z copying torch/include/ATen/ops/grid_sampler_3d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4514730Z copying torch/include/ATen/ops/diagonal_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4517630Z copying torch/include/ATen/ops/sspaddmm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4519180Z copying torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4523200Z copying torch/include/ATen/ops/_test_string_default_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4525510Z copying torch/include/ATen/ops/_logcumsumexp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4529880Z copying torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4531910Z copying torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4535110Z copying torch/include/ATen/ops/_unique_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4538050Z copying torch/include/ATen/ops/_sobol_engine_draw.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4540830Z copying torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4544600Z copying torch/include/ATen/ops/feature_dropout_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4549800Z copying torch/include/ATen/ops/diagflat_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4551550Z copying torch/include/ATen/ops/_values.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4555820Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4558650Z copying torch/include/ATen/ops/index_add_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4563420Z copying torch/include/ATen/ops/glu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4566420Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4569700Z copying torch/include/ATen/ops/combinations_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4571230Z copying torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4578800Z copying torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4581930Z copying torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4586370Z copying torch/include/ATen/ops/swapdims_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4588050Z copying torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4589830Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4593610Z copying torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4595860Z copying torch/include/ATen/ops/isreal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4598810Z copying torch/include/ATen/ops/addcmul_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4602880Z copying torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4608050Z copying torch/include/ATen/ops/cumulative_trapezoid_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4610910Z copying torch/include/ATen/ops/arctan.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4612520Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4614870Z copying torch/include/ATen/ops/_sparse_sum.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4619720Z copying torch/include/ATen/ops/sinh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4623810Z copying torch/include/ATen/ops/reflection_pad1d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4626440Z copying torch/include/ATen/ops/arctanh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4636220Z copying torch/include/ATen/ops/col2im.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4636870Z copying torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4641730Z copying torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4642900Z copying torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4644240Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4645490Z copying torch/include/ATen/ops/upsample_linear1d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4648870Z copying torch/include/ATen/ops/_cudnn_rnn_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4650820Z copying torch/include/ATen/ops/_sparse_semi_structured_mm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4653770Z copying torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4654990Z copying torch/include/ATen/ops/histc_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4665880Z copying torch/include/ATen/ops/unique_dim_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4670750Z copying torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4675740Z copying torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4677750Z copying torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4682640Z copying torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4683910Z copying torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4686430Z copying torch/include/ATen/ops/geometric_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4690210Z copying torch/include/ATen/ops/logit_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4691930Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4693410Z copying torch/include/ATen/ops/mH.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4697230Z copying torch/include/ATen/ops/count_nonzero_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4700860Z copying torch/include/ATen/ops/fmax_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4705200Z copying torch/include/ATen/ops/_nested_view_from_buffer_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4709550Z copying torch/include/ATen/ops/avg_pool3d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4713220Z copying torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4714990Z copying torch/include/ATen/ops/trace_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4719530Z copying torch/include/ATen/ops/_weight_norm_interface_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4722350Z copying torch/include/ATen/ops/addbmm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4727480Z copying torch/include/ATen/ops/empty_strided_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4729130Z copying torch/include/ATen/ops/mv_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4731760Z copying torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4736370Z copying torch/include/ATen/ops/tensor_split.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4740200Z copying torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4743490Z copying torch/include/ATen/ops/var_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4746000Z copying torch/include/ATen/ops/slice_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4750180Z copying torch/include/ATen/ops/feature_alpha_dropout_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4753110Z copying torch/include/ATen/ops/softshrink.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4754370Z copying torch/include/ATen/ops/lgamma.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4759090Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4760840Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4765940Z copying torch/include/ATen/ops/polar_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4769120Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4771520Z copying torch/include/ATen/ops/mean_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4777280Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4778540Z copying torch/include/ATen/ops/_adaptive_avg_pool2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4783790Z copying torch/include/ATen/ops/pow.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4785790Z copying torch/include/ATen/ops/_foreach_zero_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4789520Z copying torch/include/ATen/ops/lt.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4792340Z copying torch/include/ATen/ops/_foreach_cosh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4794150Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4800630Z copying torch/include/ATen/ops/repeat_interleave_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4801910Z copying torch/include/ATen/ops/gelu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4806160Z copying torch/include/ATen/ops/adaptive_max_pool1d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4807560Z copying torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4811710Z copying torch/include/ATen/ops/logical_not.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4814560Z copying torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4819000Z copying torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4821740Z copying torch/include/ATen/ops/max_pool1d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4828510Z copying torch/include/ATen/ops/clamp_max_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4829580Z copying torch/include/ATen/ops/cross_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4836720Z copying torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4838060Z copying torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4839710Z copying torch/include/ATen/ops/unbind_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4843450Z copying torch/include/ATen/ops/frac_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4845200Z copying torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4848920Z copying torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4851380Z copying torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4854210Z copying torch/include/ATen/ops/slice_inverse.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4860010Z copying torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4862720Z copying torch/include/ATen/ops/ravel_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4865970Z copying torch/include/ATen/ops/_nested_select_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4872650Z copying torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4875120Z copying torch/include/ATen/ops/floor_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4880070Z copying torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4881350Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4884900Z copying torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4887880Z copying torch/include/ATen/ops/renorm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4893240Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4894490Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4899840Z copying torch/include/ATen/ops/bernoulli_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4901730Z copying torch/include/ATen/ops/cumsum_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4905700Z copying torch/include/ATen/ops/from_file_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4909170Z copying torch/include/ATen/ops/layer_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4911290Z copying torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4914570Z copying torch/include/ATen/ops/gelu_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4918100Z copying torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4922980Z copying torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4924290Z copying torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4929580Z copying torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4931940Z copying torch/include/ATen/ops/allclose_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4935440Z copying torch/include/ATen/ops/special_bessel_j0.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4937520Z copying torch/include/ATen/ops/tensordot_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4940920Z copying torch/include/ATen/ops/_foreach_tanh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4945150Z copying torch/include/ATen/ops/linalg_ldl_factor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4947580Z copying torch/include/ATen/ops/thnn_conv2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4951900Z copying torch/include/ATen/ops/_reshape_alias_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4954150Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4958920Z copying torch/include/ATen/ops/_embedding_bag_forward_only_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4961210Z copying torch/include/ATen/ops/_lu_with_info.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4964730Z copying torch/include/ATen/ops/bincount_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4968510Z copying torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4972150Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4976410Z copying torch/include/ATen/ops/mm_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4978060Z copying torch/include/ATen/ops/digamma_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4980490Z copying torch/include/ATen/ops/positive_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4984740Z copying torch/include/ATen/ops/log10_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4989910Z copying torch/include/ATen/ops/remainder_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4992990Z copying torch/include/ATen/ops/bitwise_not_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4996320Z copying torch/include/ATen/ops/_euclidean_dist.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.4999990Z copying torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5001290Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5004340Z copying torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5010870Z copying torch/include/ATen/ops/logical_xor_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5012670Z copying torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5017130Z copying torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5018370Z copying torch/include/ATen/ops/resize_as_sparse.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5021430Z copying torch/include/ATen/ops/col2im_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5032090Z copying torch/include/ATen/ops/clamp_max_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5033300Z copying torch/include/ATen/ops/einsum_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5038080Z copying torch/include/ATen/ops/align_tensors.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5039260Z copying torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5040610Z copying torch/include/ATen/ops/mode_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5041940Z copying torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5043170Z copying torch/include/ATen/ops/rnn_tanh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5046650Z copying torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5048780Z copying torch/include/ATen/ops/is_set_to_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5052560Z copying torch/include/ATen/ops/linalg_householder_product_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5058750Z copying torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5062830Z copying torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5065160Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5069810Z copying torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5071420Z copying torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5074700Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5081290Z copying torch/include/ATen/ops/_cast_Byte_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5084410Z copying torch/include/ATen/ops/dstack_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5087530Z copying torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5092360Z copying torch/include/ATen/ops/sign.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5094440Z copying torch/include/ATen/ops/triu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5098790Z copying torch/include/ATen/ops/is_distributed.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5101430Z copying torch/include/ATen/ops/_sparse_softmax.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5105080Z copying torch/include/ATen/ops/unflatten.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5107380Z copying torch/include/ATen/ops/_segment_reduce_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5110960Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5115850Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5117670Z copying torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5124050Z copying torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5125430Z copying torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5129390Z copying torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5133630Z copying torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5135430Z copying torch/include/ATen/ops/_nested_get_offsets_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5137300Z copying torch/include/ATen/ops/mm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5142790Z copying torch/include/ATen/ops/gru_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5144840Z copying torch/include/ATen/ops/log2_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5149190Z copying torch/include/ATen/ops/_fused_adam_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5153140Z copying torch/include/ATen/ops/one_hot_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5156090Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5158300Z copying torch/include/ATen/ops/as_strided_scatter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5164490Z copying torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5167250Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5174150Z copying torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5175370Z copying torch/include/ATen/ops/new_zeros_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5181970Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5182490Z copying torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5182940Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5185020Z copying torch/include/ATen/ops/tan_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5187580Z copying torch/include/ATen/ops/lu_solve.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5192500Z copying torch/include/ATen/ops/quantized_batch_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5198470Z copying torch/include/ATen/ops/sgn_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5201960Z copying torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5203400Z copying torch/include/ATen/ops/_test_functorch_fallback_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5204640Z copying torch/include/ATen/ops/_fw_primal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5207230Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5212130Z copying torch/include/ATen/ops/scatter_reduce_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5214640Z copying torch/include/ATen/ops/fft_irfftn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5218830Z copying torch/include/ATen/ops/addmm_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5221300Z copying torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5227530Z copying torch/include/ATen/ops/blackman_window_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5230110Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5233410Z copying torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5234670Z copying torch/include/ATen/ops/quantize_per_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5238910Z copying torch/include/ATen/ops/transpose.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5242330Z copying torch/include/ATen/ops/_fused_sgd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5244890Z copying torch/include/ATen/ops/amin_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5248060Z copying torch/include/ATen/ops/acosh_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5252500Z copying torch/include/ATen/ops/sum_to_size_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5253720Z copying torch/include/ATen/ops/var_mean_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5258020Z copying torch/include/ATen/ops/histc_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5263460Z copying torch/include/ATen/ops/align_tensors_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5265120Z copying torch/include/ATen/ops/diagonal_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5269860Z copying torch/include/ATen/ops/sym_size_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5272260Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5275720Z copying torch/include/ATen/ops/tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5277560Z copying torch/include/ATen/ops/quantile_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5281950Z copying torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5289430Z copying torch/include/ATen/ops/ge_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5292170Z copying torch/include/ATen/ops/triangular_solve_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5298100Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5299460Z copying torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5301110Z copying torch/include/ATen/ops/amax_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5304100Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5308660Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5311110Z copying torch/include/ATen/ops/fft_ifftn_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5314370Z copying torch/include/ATen/ops/log_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5318990Z copying torch/include/ATen/ops/pow_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5321150Z copying torch/include/ATen/ops/_histogramdd_bin_edges_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5326530Z copying torch/include/ATen/ops/q_scale.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5331340Z copying torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5333140Z copying torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5333960Z copying torch/include/ATen/ops/rot90_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5337450Z copying torch/include/ATen/ops/linalg_eig.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5340770Z copying torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5344350Z copying torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5348950Z copying torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5351600Z copying torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5355340Z copying torch/include/ATen/ops/stride_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5357200Z copying torch/include/ATen/ops/cudnn_is_acceptable.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5361430Z copying torch/include/ATen/ops/special_zeta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5363820Z copying torch/include/ATen/ops/avg_pool2d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5368550Z copying torch/include/ATen/ops/renorm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5371250Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5375530Z copying torch/include/ATen/ops/is_coalesced_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5378000Z copying torch/include/ATen/ops/affine_grid_generator_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5380640Z copying torch/include/ATen/ops/_nested_view_from_buffer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5385950Z copying torch/include/ATen/ops/true_divide_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5389670Z copying torch/include/ATen/ops/_linalg_solve_ex.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5392260Z copying torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5397600Z copying torch/include/ATen/ops/histogram_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5400440Z copying torch/include/ATen/ops/linalg_lu_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5402220Z copying torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5404380Z copying torch/include/ATen/ops/poisson_nll_loss_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5408750Z copying torch/include/ATen/ops/unique_dim.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5410430Z copying torch/include/ATen/ops/rshift_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5415810Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5427130Z copying torch/include/ATen/ops/unsafe_split_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5428790Z copying torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5430090Z copying torch/include/ATen/ops/dense_dim_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5431390Z copying torch/include/ATen/ops/bitwise_right_shift_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5435430Z copying torch/include/ATen/ops/masked_fill_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5437220Z copying torch/include/ATen/ops/masked_fill_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5438610Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5441110Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5442330Z copying torch/include/ATen/ops/_cast_Byte_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5453780Z copying torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5454980Z copying torch/include/ATen/ops/any.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5459160Z copying torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5460130Z copying torch/include/ATen/ops/convolution_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5461880Z copying torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5467750Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5469400Z copying torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5474610Z copying torch/include/ATen/ops/_reshape_alias_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5476060Z copying torch/include/ATen/ops/_upsample_nearest_exact2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5478260Z copying torch/include/ATen/ops/nll_loss_forward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5482070Z copying torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5484560Z copying torch/include/ATen/ops/linalg_vector_norm_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5490420Z copying torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5495830Z copying torch/include/ATen/ops/contiguous_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5499860Z copying torch/include/ATen/ops/le_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5503050Z copying torch/include/ATen/ops/convolution_overrideable_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5505970Z copying torch/include/ATen/ops/hardtanh_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5508380Z copying torch/include/ATen/ops/elu_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5513080Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5515220Z copying torch/include/ATen/ops/elu_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5521240Z copying torch/include/ATen/ops/angle_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5522560Z copying torch/include/ATen/ops/cross_entropy_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5527450Z copying torch/include/ATen/ops/special_gammaincc_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5528790Z copying torch/include/ATen/ops/subtract_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5532670Z copying torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5535430Z copying torch/include/ATen/ops/poisson_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5538530Z copying torch/include/ATen/ops/floor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5541880Z copying torch/include/ATen/ops/retains_grad.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5545660Z copying torch/include/ATen/ops/sspaddmm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5548840Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5552200Z copying torch/include/ATen/ops/index_reduce_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5557140Z copying torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5560980Z copying torch/include/ATen/ops/scatter_add_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5564370Z copying torch/include/ATen/ops/_copy_from.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5565890Z copying torch/include/ATen/ops/narrow_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5567740Z copying torch/include/ATen/ops/flip_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5571630Z copying torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5574310Z copying torch/include/ATen/ops/logical_not_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5577450Z copying torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5581380Z copying torch/include/ATen/ops/mse_loss_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5584330Z copying torch/include/ATen/ops/fractional_max_pool3d_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5588640Z copying torch/include/ATen/ops/mkldnn_linear_backward_input.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5590960Z copying torch/include/ATen/ops/special_logsumexp_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5594580Z copying torch/include/ATen/ops/adaptive_avg_pool1d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5597880Z copying torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5601630Z copying torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5604780Z copying torch/include/ATen/ops/bitwise_or_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5607550Z copying torch/include/ATen/ops/l1_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5611020Z copying torch/include/ATen/ops/geqrf_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5615290Z copying torch/include/ATen/ops/log2_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5617630Z copying torch/include/ATen/ops/isposinf_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5623330Z copying torch/include/ATen/ops/_masked_scale_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5626320Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5633580Z copying torch/include/ATen/ops/reciprocal_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5634890Z copying torch/include/ATen/ops/lcm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5636150Z copying torch/include/ATen/ops/frexp_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5639850Z copying torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5641390Z copying torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5646020Z copying torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5648820Z copying torch/include/ATen/ops/special_xlog1py_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5651560Z copying torch/include/ATen/ops/exp2_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5655210Z copying torch/include/ATen/ops/mean_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5657120Z copying torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5663200Z copying torch/include/ATen/ops/le_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5665030Z copying torch/include/ATen/ops/conv3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5668460Z copying torch/include/ATen/ops/stack_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5672360Z copying torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5673860Z copying torch/include/ATen/ops/special_erfinv.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5678910Z copying torch/include/ATen/ops/var_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5682900Z copying torch/include/ATen/ops/rsqrt_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5684990Z copying torch/include/ATen/ops/_convolution_double_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5688510Z copying torch/include/ATen/ops/polar.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5690850Z copying torch/include/ATen/ops/_softmax_backward_data_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5696220Z copying torch/include/ATen/ops/_make_dual_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5701380Z copying torch/include/ATen/ops/trunc_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5703720Z copying torch/include/ATen/ops/meshgrid_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5710280Z copying torch/include/ATen/ops/slow_conv_transpose2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5711580Z copying torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5722810Z copying torch/include/ATen/ops/silu_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5723500Z copying torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5723960Z copying torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5725850Z copying torch/include/ATen/ops/special_logit.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5729220Z copying torch/include/ATen/ops/affine_grid_generator_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5731710Z copying torch/include/ATen/ops/full_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5735890Z copying torch/include/ATen/ops/lgamma_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5737890Z copying torch/include/ATen/ops/isneginf_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5742960Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5744160Z copying torch/include/ATen/ops/linalg_inv_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5748860Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5752680Z copying torch/include/ATen/ops/index_put_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5754330Z copying torch/include/ATen/ops/data_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5758060Z copying torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5762040Z copying torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5765890Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5766930Z copying torch/include/ATen/ops/div_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5770510Z copying torch/include/ATen/ops/logaddexp_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5774660Z copying torch/include/ATen/ops/permute_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5781030Z copying torch/include/ATen/ops/dense_dim.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5782320Z copying torch/include/ATen/ops/xor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5786750Z copying torch/include/ATen/ops/max_unpool2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5788470Z copying torch/include/ATen/ops/linalg_inv_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5791800Z copying torch/include/ATen/ops/_sparse_sparse_matmul.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5794040Z copying torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5797910Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5801100Z copying torch/include/ATen/ops/ge.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5805130Z copying torch/include/ATen/ops/_foreach_clamp_min.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5808820Z copying torch/include/ATen/ops/index_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5819720Z copying torch/include/ATen/ops/tanh_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5820960Z copying torch/include/ATen/ops/cos_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5822110Z copying torch/include/ATen/ops/grid_sampler_3d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5823570Z copying torch/include/ATen/ops/split.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5826780Z copying torch/include/ATen/ops/div.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5828460Z copying torch/include/ATen/ops/msort_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5830310Z copying torch/include/ATen/ops/refine_names_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5832410Z copying torch/include/ATen/ops/t_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5835990Z copying torch/include/ATen/ops/isneginf_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5841610Z copying torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5846140Z copying torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5847780Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5852000Z copying torch/include/ATen/ops/_sparse_mask_projection_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5854780Z copying torch/include/ATen/ops/complex.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5859650Z copying torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5861200Z copying torch/include/ATen/ops/copy_sparse_to_sparse.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5868440Z copying torch/include/ATen/ops/bmm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5869590Z copying torch/include/ATen/ops/_foreach_log_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5875390Z copying torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5876790Z copying torch/include/ATen/ops/logaddexp2_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5878070Z copying torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5880420Z copying torch/include/ATen/ops/softplus_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5883990Z copying torch/include/ATen/ops/log_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5887540Z copying torch/include/ATen/ops/trapz_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5891960Z copying torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5895700Z copying torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5899220Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5901130Z copying torch/include/ATen/ops/arcsin_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5906630Z copying torch/include/ATen/ops/batch_norm_update_stats.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5911820Z copying torch/include/ATen/ops/exp2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5914620Z copying torch/include/ATen/ops/cosine_embedding_loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5921450Z copying torch/include/ATen/ops/_sparse_sparse_matmul_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5926170Z copying torch/include/ATen/ops/fractional_max_pool2d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5930850Z copying torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5932130Z copying torch/include/ATen/ops/col_indices_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5934470Z copying torch/include/ATen/ops/lgamma_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5935890Z copying torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5940760Z copying torch/include/ATen/ops/pin_memory_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5942070Z copying torch/include/ATen/ops/_foreach_addcdiv_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5945000Z copying torch/include/ATen/ops/linalg_lu_factor_ex_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5950580Z copying torch/include/ATen/ops/special_bessel_j1_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5955960Z copying torch/include/ATen/ops/div_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5958800Z copying torch/include/ATen/ops/_copy_from_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5960100Z copying torch/include/ATen/ops/_neg_view_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5961680Z copying torch/include/ATen/ops/concat_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5963860Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5968040Z copying torch/include/ATen/ops/histogramdd_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5972390Z copying torch/include/ATen/ops/_native_batch_norm_legit.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5977630Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5979970Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5983660Z copying torch/include/ATen/ops/igamma_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5984990Z copying torch/include/ATen/ops/_nested_get_offsets_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5989200Z copying torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5991430Z copying torch/include/ATen/ops/_standard_gamma_grad.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5995080Z copying torch/include/ATen/ops/zero_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.5997400Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6000570Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6003850Z copying torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6009480Z copying torch/include/ATen/ops/_foreach_clamp_max_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6012890Z copying torch/include/ATen/ops/pixel_unshuffle.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6017030Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6019440Z copying torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6020240Z copying torch/include/ATen/ops/logcumsumexp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6023980Z copying torch/include/ATen/ops/leaky_relu_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6027570Z copying torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6033260Z copying torch/include/ATen/ops/to_mkldnn_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6034590Z copying torch/include/ATen/ops/upsample_nearest1d_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6038790Z copying torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6043040Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6044740Z copying torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6049280Z copying torch/include/ATen/ops/_is_any_true_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6050760Z copying torch/include/ATen/ops/linalg_tensorinv.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6055690Z copying torch/include/ATen/ops/random.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6058350Z copying torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6062730Z copying torch/include/ATen/ops/exponential.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6065070Z copying torch/include/ATen/ops/gt_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6068890Z copying torch/include/ATen/ops/linalg_det_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6071380Z copying torch/include/ATen/ops/masked_select_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6074020Z copying torch/include/ATen/ops/xlogy_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6077880Z copying torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6082020Z copying torch/include/ATen/ops/cudnn_convolution_transpose_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6084500Z copying torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6090260Z copying torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6092680Z copying torch/include/ATen/ops/_foreach_sqrt_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6097960Z copying torch/include/ATen/ops/atleast_1d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6099590Z copying torch/include/ATen/ops/isin_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6101720Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6107720Z copying torch/include/ATen/ops/_to_sparse_csr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6108940Z copying torch/include/ATen/ops/sinc_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6111920Z copying torch/include/ATen/ops/dist_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6118590Z copying torch/include/ATen/ops/norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6123020Z copying torch/include/ATen/ops/hardtanh_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6126590Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6128490Z copying torch/include/ATen/ops/copysign_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6131740Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6135480Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6138450Z copying torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6144330Z copying torch/include/ATen/ops/_reshape_alias_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6145810Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6152810Z copying torch/include/ATen/ops/histogramdd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6153960Z copying torch/include/ATen/ops/aminmax_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6155340Z copying torch/include/ATen/ops/index_reduce_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6158880Z copying torch/include/ATen/ops/_nested_get_ragged_idx_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6160970Z copying torch/include/ATen/ops/leaky_relu_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6166160Z copying torch/include/ATen/ops/lshift_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6167450Z copying torch/include/ATen/ops/fft_irfft_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6171890Z copying torch/include/ATen/ops/digamma_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6174060Z copying torch/include/ATen/ops/grid_sampler_3d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6179860Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6183500Z copying torch/include/ATen/ops/_sparse_addmm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6185360Z copying torch/include/ATen/ops/gather_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6187890Z copying torch/include/ATen/ops/_has_same_storage_numel_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6190380Z copying torch/include/ATen/ops/_dimI.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6193360Z copying torch/include/ATen/ops/exponential_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6197450Z copying torch/include/ATen/ops/_weight_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6200470Z copying torch/include/ATen/ops/lu_unpack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6206770Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6215490Z copying torch/include/ATen/ops/_foreach_ceil.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6216750Z copying torch/include/ATen/ops/_convert_weight_to_int4pack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6218610Z copying torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6219880Z copying torch/include/ATen/ops/matmul_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6221430Z copying torch/include/ATen/ops/_print_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6224470Z copying torch/include/ATen/ops/to_dense_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6226640Z copying torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6227960Z copying torch/include/ATen/ops/nanmedian_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6230200Z copying torch/include/ATen/ops/quantize_per_channel_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6234120Z copying torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6243250Z copying torch/include/ATen/ops/replication_pad3d_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6244700Z copying torch/include/ATen/ops/ctc_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6251330Z copying torch/include/ATen/ops/argwhere.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6253040Z copying torch/include/ATen/ops/_foreach_tan.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6262940Z copying torch/include/ATen/ops/asin_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6263610Z copying torch/include/ATen/ops/index_add_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6264020Z copying torch/include/ATen/ops/avg_pool2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6264370Z copying torch/include/ATen/ops/bitwise_or.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6267800Z copying torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6271950Z copying torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6274050Z copying torch/include/ATen/ops/diff_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6276800Z copying torch/include/ATen/ops/fix.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6284050Z copying torch/include/ATen/ops/_standard_gamma_grad_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6285610Z copying torch/include/ATen/ops/special_expit_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6288910Z copying torch/include/ATen/ops/rsub.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6290400Z copying torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6293950Z copying torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6297360Z copying torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6300370Z copying torch/include/ATen/ops/std.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6304270Z copying torch/include/ATen/ops/_is_all_true_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6307350Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6310740Z copying torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6314170Z copying torch/include/ATen/ops/polygamma_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6319300Z copying torch/include/ATen/ops/index_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6526970Z copying torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6528200Z copying torch/include/ATen/ops/_test_optional_floatlist.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6529620Z copying torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6531030Z copying torch/include/ATen/ops/_embedding_bag_forward_only.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6532240Z copying torch/include/ATen/ops/index_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6533440Z copying torch/include/ATen/ops/aminmax.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6534750Z copying torch/include/ATen/ops/_log_softmax_backward_data_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6535950Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6537460Z copying torch/include/ATen/ops/tril_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6538970Z copying torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6540410Z copying torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6541770Z copying torch/include/ATen/ops/fmod_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6543210Z copying torch/include/ATen/ops/randint_like_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6544770Z copying torch/include/ATen/ops/linalg_norm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6546360Z copying torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6547300Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6548800Z copying torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6550070Z copying torch/include/ATen/ops/special_expm1.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6551390Z copying torch/include/ATen/ops/special_erfinv_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6552710Z copying torch/include/ATen/ops/linalg_ldl_solve_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6554070Z copying torch/include/ATen/ops/linalg_qr_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6555280Z copying torch/include/ATen/ops/pad_sequence.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6556670Z copying torch/include/ATen/ops/hardswish.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6557910Z copying torch/include/ATen/ops/geqrf_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6559360Z copying torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6560680Z copying torch/include/ATen/ops/grid_sampler_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6562040Z copying torch/include/ATen/ops/logit_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6563450Z copying torch/include/ATen/ops/ones_like.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6564770Z copying torch/include/ATen/ops/_test_optional_filled_intlist_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6566010Z copying torch/include/ATen/ops/split_with_sizes_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6567300Z copying torch/include/ATen/ops/_test_warn_in_autograd_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6568960Z copying torch/include/ATen/ops/neg_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6570290Z copying torch/include/ATen/ops/isfinite.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6571850Z copying torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6573160Z copying torch/include/ATen/ops/q_per_channel_axis_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6574510Z copying torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6575830Z copying torch/include/ATen/ops/_batch_norm_no_update.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6577450Z copying torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6578960Z copying torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6580270Z copying torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6581820Z copying torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6583180Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6584460Z copying torch/include/ATen/ops/sparse_coo_tensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6585970Z copying torch/include/ATen/ops/_is_zerotensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6587270Z copying torch/include/ATen/ops/xlogy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6588540Z copying torch/include/ATen/ops/is_conj_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6589970Z copying torch/include/ATen/ops/log10_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6591240Z copying torch/include/ATen/ops/_standard_gamma_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6592490Z copying torch/include/ATen/ops/conv2d_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6593880Z copying torch/include/ATen/ops/dequantize_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6595240Z copying torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6596650Z copying torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6597770Z copying torch/include/ATen/ops/_pin_memory.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6599280Z copying torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6600570Z copying torch/include/ATen/ops/gcd_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6601860Z copying torch/include/ATen/ops/_convolution_mode_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6603350Z copying torch/include/ATen/ops/convolution_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6604720Z copying torch/include/ATen/ops/cosine_similarity_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6605980Z copying torch/include/ATen/ops/_shape_as_tensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6607470Z copying torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6608720Z copying torch/include/ATen/ops/isposinf_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6609980Z copying torch/include/ATen/ops/conv_transpose3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6611440Z copying torch/include/ATen/ops/_nested_tensor_from_mask_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6612910Z copying torch/include/ATen/ops/reflection_pad3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6614180Z copying torch/include/ATen/ops/unflatten_dense_tensors_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6615380Z copying torch/include/ATen/ops/_version_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6616920Z copying torch/include/ATen/ops/_pdist_forward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6618500Z copying torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6619910Z copying torch/include/ATen/ops/empty_like_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6621140Z copying torch/include/ATen/ops/uniform.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6622510Z copying torch/include/ATen/ops/grid_sampler_3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6623850Z copying torch/include/ATen/ops/masked_scatter_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6625110Z copying torch/include/ATen/ops/rshift_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6626520Z copying torch/include/ATen/ops/cumprod_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6627940Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6629270Z copying torch/include/ATen/ops/mse_loss_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6630600Z copying torch/include/ATen/ops/diagonal_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6631950Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6633360Z copying torch/include/ATen/ops/avg_pool2d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6634750Z copying torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6636000Z copying torch/include/ATen/ops/sparse_coo_tensor_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6637470Z copying torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6638700Z copying torch/include/ATen/ops/bmm_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6639990Z copying torch/include/ATen/ops/detach_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6641210Z copying torch/include/ATen/ops/set.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6642840Z copying torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6644300Z copying torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6645740Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6646960Z copying torch/include/ATen/ops/silu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6648310Z copying torch/include/ATen/ops/native_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6649680Z copying torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6650970Z copying torch/include/ATen/ops/_add_relu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6652530Z copying torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6654990Z copying torch/include/ATen/ops/replication_pad2d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6656640Z copying torch/include/ATen/ops/randperm_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6659080Z copying torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6661380Z copying torch/include/ATen/ops/det.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6666630Z copying torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6667850Z copying torch/include/ATen/ops/exp_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6673100Z copying torch/include/ATen/ops/special_modified_bessel_k0_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6674570Z copying torch/include/ATen/ops/_fft_c2r_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6681320Z copying torch/include/ATen/ops/_add_batch_dim.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6682650Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6686220Z copying torch/include/ATen/ops/threshold_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6687620Z copying torch/include/ATen/ops/_foreach_tanh_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6700440Z copying torch/include/ATen/ops/linalg_vander.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6701690Z copying torch/include/ATen/ops/sigmoid_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6702990Z copying torch/include/ATen/ops/mish_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6705630Z copying torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6706900Z copying torch/include/ATen/ops/_has_same_storage_numel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6709080Z copying torch/include/ATen/ops/embedding_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6710990Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6715650Z copying torch/include/ATen/ops/_cast_Double_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6721440Z copying torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6726140Z copying torch/include/ATen/ops/_softmax.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6728480Z copying torch/include/ATen/ops/diagonal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6732170Z copying torch/include/ATen/ops/new_full_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6736050Z copying torch/include/ATen/ops/isposinf.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6739120Z copying torch/include/ATen/ops/new_empty_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6741860Z copying torch/include/ATen/ops/_weight_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6744330Z copying torch/include/ATen/ops/upsample_nearest1d_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6746910Z copying torch/include/ATen/ops/special_round.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6751220Z copying torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6756680Z copying torch/include/ATen/ops/_has_same_storage_numel_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6759900Z copying torch/include/ATen/ops/quantile_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6762900Z copying torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6764940Z copying torch/include/ATen/ops/index_select_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6768190Z copying torch/include/ATen/ops/pad_sequence_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6774740Z copying torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6777430Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6782880Z copying torch/include/ATen/ops/elu_backward_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6784120Z copying torch/include/ATen/ops/glu_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6788890Z copying torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6793140Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6796080Z copying torch/include/ATen/ops/_fw_primal_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6797280Z copying torch/include/ATen/ops/sym_size.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6802860Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6804670Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6808180Z copying torch/include/ATen/ops/hardsigmoid_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6810110Z copying torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6819530Z copying torch/include/ATen/ops/batch_norm_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6820150Z copying torch/include/ATen/ops/row_indices_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6820850Z copying torch/include/ATen/ops/is_pinned_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6825610Z copying torch/include/ATen/ops/batch_norm_backward_elemt.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6828380Z copying torch/include/ATen/ops/slow_conv3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6831450Z copying torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6834720Z copying torch/include/ATen/ops/special_bessel_j1_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6837690Z copying torch/include/ATen/ops/t_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6841080Z copying torch/include/ATen/ops/det_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6845170Z copying torch/include/ATen/ops/_to_sparse_bsr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6846850Z copying torch/include/ATen/ops/randperm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6852550Z copying torch/include/ATen/ops/expand_copy_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6856290Z copying torch/include/ATen/ops/_fft_c2r.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6864620Z copying torch/include/ATen/ops/sqrt_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6870120Z copying torch/include/ATen/ops/cosine_similarity.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6871350Z copying torch/include/ATen/ops/_foreach_add_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6872610Z copying torch/include/ATen/ops/nonzero_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6873920Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6875290Z copying torch/include/ATen/ops/sparse_csc_tensor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6877790Z copying torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6882050Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6884790Z copying torch/include/ATen/ops/q_per_channel_axis_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6889370Z copying torch/include/ATen/ops/logdet_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6893710Z copying torch/include/ATen/ops/take_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6896080Z copying torch/include/ATen/ops/miopen_rnn_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6901500Z copying torch/include/ATen/ops/minimum_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6908800Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6909580Z copying torch/include/ATen/ops/greater_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6915330Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6916610Z copying torch/include/ATen/ops/sparse_resize_and_clear_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6920190Z copying torch/include/ATen/ops/prod_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6921520Z copying torch/include/ATen/ops/tril_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6924740Z copying torch/include/ATen/ops/miopen_depthwise_convolution.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6928190Z copying torch/include/ATen/ops/_functional_assert_async_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6932880Z copying torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6934450Z copying torch/include/ATen/ops/_is_any_true_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6938570Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6941140Z copying torch/include/ATen/ops/_fused_adam_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6947480Z copying torch/include/ATen/ops/max_unpool3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6948900Z copying torch/include/ATen/ops/linalg_pinv_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6954160Z copying torch/include/ATen/ops/_cast_Half_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6956200Z copying torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6957580Z copying torch/include/ATen/ops/native_batch_norm_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6960910Z copying torch/include/ATen/ops/unique_dim_consecutive_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6964670Z copying torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6969800Z copying torch/include/ATen/ops/col2im_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6972140Z copying torch/include/ATen/ops/replication_pad2d_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6976040Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6977850Z copying torch/include/ATen/ops/crow_indices_copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6984040Z copying torch/include/ATen/ops/argsort_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6987200Z copying torch/include/ATen/ops/cosh_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6992500Z copying torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6995460Z copying torch/include/ATen/ops/threshold_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.6999020Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7002570Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7007660Z copying torch/include/ATen/ops/_foreach_exp_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7009180Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7011850Z copying torch/include/ATen/ops/binary_cross_entropy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7013920Z copying torch/include/ATen/ops/_softmax_backward_data_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7017100Z copying torch/include/ATen/ops/log_softmax_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7020190Z copying torch/include/ATen/ops/special_modified_bessel_i0_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7025250Z copying torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7028590Z copying torch/include/ATen/ops/_to_sparse_csr_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7030980Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7035180Z copying torch/include/ATen/ops/lu_unpack_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7037640Z copying torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7041550Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7045080Z copying torch/include/ATen/ops/is_pinned_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7047150Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7052610Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7054000Z copying torch/include/ATen/ops/_cslt_compress_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7058640Z copying torch/include/ATen/ops/slow_conv_dilated3d_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7061680Z copying torch/include/ATen/ops/_foreach_abs.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7066530Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7068330Z copying torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7072690Z copying torch/include/ATen/ops/histc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7075150Z copying torch/include/ATen/ops/upsample_trilinear3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7079080Z copying torch/include/ATen/ops/_sparse_sum_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7082670Z copying torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7084650Z copying torch/include/ATen/ops/relu_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7095640Z copying torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7097000Z copying torch/include/ATen/ops/linalg_matrix_exp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7098350Z copying torch/include/ATen/ops/_index_put_impl_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7101920Z copying torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7102900Z copying torch/include/ATen/ops/_scaled_mm_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7104540Z copying torch/include/ATen/ops/_weight_norm_interface_backward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7105880Z copying torch/include/ATen/ops/trapz_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7109010Z copying torch/include/ATen/ops/block_diag_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7115960Z copying torch/include/ATen/ops/logical_or_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7118330Z copying torch/include/ATen/ops/copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7121540Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7127500Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7128820Z copying torch/include/ATen/ops/cumsum_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7134050Z copying torch/include/ATen/ops/special_entr_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7137040Z copying torch/include/ATen/ops/fft_ifftshift.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7138410Z copying torch/include/ATen/ops/batch_norm_elemt_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7142470Z copying torch/include/ATen/ops/_assert_async.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7145040Z copying torch/include/ATen/ops/q_zero_point_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7150960Z copying torch/include/ATen/ops/special_zeta_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7152190Z copying torch/include/ATen/ops/_values_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7158550Z copying torch/include/ATen/ops/is_same_size.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7159730Z copying torch/include/ATen/ops/atan2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7160900Z copying torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7164330Z copying torch/include/ATen/ops/diagonal_scatter_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7167520Z copying torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7170990Z copying torch/include/ATen/ops/isnan_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7173350Z copying torch/include/ATen/ops/scaled_dot_product_attention_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7177910Z copying torch/include/ATen/ops/bitwise_left_shift_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7181230Z copying torch/include/ATen/ops/l1_loss_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7183560Z copying torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7187080Z copying torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7190610Z copying torch/include/ATen/ops/cholesky_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7194280Z copying torch/include/ATen/ops/nuclear_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7197400Z copying torch/include/ATen/ops/lift_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7201080Z copying torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7205120Z copying torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7210970Z copying torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7212230Z copying torch/include/ATen/ops/and_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7217300Z copying torch/include/ATen/ops/select.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7219100Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7224080Z copying torch/include/ATen/ops/true_divide.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7225680Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7227520Z copying torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7230900Z copying torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7233990Z copying torch/include/ATen/ops/nonzero_numpy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7239150Z copying torch/include/ATen/ops/special_sinc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7242270Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7246580Z copying torch/include/ATen/ops/_foreach_cos_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7249720Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7251320Z copying torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7253970Z copying torch/include/ATen/ops/_pdist_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7257860Z copying torch/include/ATen/ops/cos_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7262190Z copying torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7264900Z copying torch/include/ATen/ops/tan_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7269090Z copying torch/include/ATen/ops/ones_like_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7270750Z copying torch/include/ATen/ops/_conj_physical_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7273830Z copying torch/include/ATen/ops/nll_loss2d_forward_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7278470Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7282360Z copying torch/include/ATen/ops/_to_copy_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7286420Z copying torch/include/ATen/ops/cos_cpu_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7290800Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7292860Z copying torch/include/ATen/ops/mkldnn_convolution_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7295440Z copying torch/include/ATen/ops/_linalg_eigh.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7305050Z copying torch/include/ATen/ops/_print_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7305570Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7306000Z copying torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7308190Z copying torch/include/ATen/ops/cat_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7312290Z copying torch/include/ATen/ops/ne_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7316360Z copying torch/include/ATen/ops/expand_as_native.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7320120Z copying torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7326760Z copying torch/include/ATen/ops/complex_mps_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7327990Z copying torch/include/ATen/ops/linalg_ldl_solve_meta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7331680Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops 2024-06-26T05:42:54.7336850Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/hip 2024-06-26T05:42:54.7337190Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/hip/impl 2024-06-26T05:42:54.7337930Z copying torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/hip/impl 2024-06-26T05:42:54.7341150Z copying torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/hip/impl 2024-06-26T05:42:54.7342680Z copying torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/hip/impl 2024-06-26T05:42:54.7344210Z copying torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/hip/impl 2024-06-26T05:42:54.7345970Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps 2024-06-26T05:42:54.7346380Z copying torch/include/ATen/mps/MPSProfiler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps 2024-06-26T05:42:54.7348430Z copying torch/include/ATen/mps/EmptyTensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps 2024-06-26T05:42:54.7350800Z copying torch/include/ATen/mps/MPSAllocator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps 2024-06-26T05:42:54.7355750Z copying torch/include/ATen/mps/MPSGuardImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps 2024-06-26T05:42:54.7358740Z copying torch/include/ATen/mps/MPSHooks.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps 2024-06-26T05:42:54.7361470Z copying torch/include/ATen/mps/MPSEvent.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps 2024-06-26T05:42:54.7365440Z copying torch/include/ATen/mps/MPSDevice.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps 2024-06-26T05:42:54.7369060Z copying torch/include/ATen/mps/MPSStream.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps 2024-06-26T05:42:54.7372330Z copying torch/include/ATen/mps/IndexKernels.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps 2024-06-26T05:42:54.7375550Z copying torch/include/ATen/mps/MPSAllocatorInterface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps 2024-06-26T05:42:54.7379200Z copying torch/include/ATen/mps/MPSGeneratorImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps 2024-06-26T05:42:54.7381690Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/miopen 2024-06-26T05:42:54.7382070Z copying torch/include/ATen/miopen/Utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/miopen 2024-06-26T05:42:54.7387210Z copying torch/include/ATen/miopen/Types.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/miopen 2024-06-26T05:42:54.7390610Z copying torch/include/ATen/miopen/Descriptors.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/miopen 2024-06-26T05:42:54.7398090Z copying torch/include/ATen/miopen/miopen-wrapper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/miopen 2024-06-26T05:42:54.7399120Z copying torch/include/ATen/miopen/Exceptions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/miopen 2024-06-26T05:42:54.7401110Z copying torch/include/ATen/miopen/Handle.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/miopen 2024-06-26T05:42:54.7404520Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail 2024-06-26T05:42:54.7405020Z copying torch/include/ATen/detail/PrivateUse1HooksInterface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail 2024-06-26T05:42:54.7406560Z copying torch/include/ATen/detail/AcceleratorHooksInterface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail 2024-06-26T05:42:54.7407790Z copying torch/include/ATen/detail/CUDAHooksInterface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail 2024-06-26T05:42:54.7411960Z copying torch/include/ATen/detail/MAIAHooksInterface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail 2024-06-26T05:42:54.7414950Z copying torch/include/ATen/detail/XPUHooksInterface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail 2024-06-26T05:42:54.7419170Z copying torch/include/ATen/detail/FunctionTraits.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail 2024-06-26T05:42:54.7424200Z copying torch/include/ATen/detail/HIPHooksInterface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail 2024-06-26T05:42:54.7425330Z copying torch/include/ATen/detail/MPSHooksInterface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail 2024-06-26T05:42:54.7430330Z copying torch/include/ATen/detail/MTIAHooksInterface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail 2024-06-26T05:42:54.7431910Z copying torch/include/ATen/detail/IPUHooksInterface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail 2024-06-26T05:42:54.7434810Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7435820Z copying torch/include/ATen/native/CompositeRandomAccessor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7438020Z copying torch/include/ATen/native/MathBitsFallback.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7442920Z copying torch/include/ATen/native/TensorTransformations.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7446700Z copying torch/include/ATen/native/ComplexHelper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7448850Z copying torch/include/ATen/native/ConvUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7453120Z copying torch/include/ATen/native/Normalization.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7454650Z copying torch/include/ATen/native/ReductionType.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7461160Z copying torch/include/ATen/native/Repeat.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7462100Z copying torch/include/ATen/native/layer_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7466650Z copying torch/include/ATen/native/GridSampler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7469320Z copying torch/include/ATen/native/TriangularOpsUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7472030Z copying torch/include/ATen/native/UnfoldBackward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7475370Z copying torch/include/ATen/native/batch_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7478480Z copying torch/include/ATen/native/Unfold3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7482300Z copying torch/include/ATen/native/Fill.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7490020Z copying torch/include/ATen/native/LinearAlgebra.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7491140Z copying torch/include/ATen/native/RangeFactories.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7494280Z copying torch/include/ATen/native/RNN.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7496410Z copying torch/include/ATen/native/IndexKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7499090Z copying torch/include/ATen/native/Pool.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7501400Z copying torch/include/ATen/native/Cross.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7503710Z copying torch/include/ATen/native/im2col.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7506910Z copying torch/include/ATen/native/TransposeType.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7513630Z copying torch/include/ATen/native/DispatchStub.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7515570Z copying torch/include/ATen/native/Unfold2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7517740Z copying torch/include/ATen/native/Distance.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7522490Z copying torch/include/ATen/native/FunctionOfAMatrixUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7524150Z copying torch/include/ATen/native/Distributions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7529100Z copying torch/include/ATen/native/MaxPooling.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7537210Z copying torch/include/ATen/native/SparseTensorUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7538150Z copying torch/include/ATen/native/CPUFallback.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7538990Z copying torch/include/ATen/native/FusedAdagrad.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7544580Z copying torch/include/ATen/native/GridSamplerUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7546650Z copying torch/include/ATen/native/TopKImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7551400Z copying torch/include/ATen/native/TensorAdvancedIndexingUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7553570Z copying torch/include/ATen/native/DilatedConvolutionUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7557230Z copying torch/include/ATen/native/ForeachUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7559430Z copying torch/include/ATen/native/SobolEngineOpsUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7561600Z copying torch/include/ATen/native/ReduceAllOps.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7564140Z copying torch/include/ATen/native/Lerp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7569380Z copying torch/include/ATen/native/ReduceOps.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7574460Z copying torch/include/ATen/native/TensorAdvancedIndexing.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7575370Z copying torch/include/ATen/native/UnaryOps.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7577950Z copying torch/include/ATen/native/SortingUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7581330Z copying torch/include/ATen/native/MathBitFallThroughLists.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7584850Z copying torch/include/ATen/native/StridedRandomAccessor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7587960Z copying torch/include/ATen/native/TensorShape.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7591970Z copying torch/include/ATen/native/IndexingUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7595340Z copying torch/include/ATen/native/UpSample.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7598820Z copying torch/include/ATen/native/ResizeCommon.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7602230Z copying torch/include/ATen/native/SharedReduceOps.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7604730Z copying torch/include/ATen/native/Resize.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7607670Z copying torch/include/ATen/native/SpectralOpsUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7613390Z copying torch/include/ATen/native/Sorting.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7615930Z copying torch/include/ATen/native/NonSymbolicBC.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7619750Z copying torch/include/ATen/native/TensorProperties.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7621900Z copying torch/include/ATen/native/BucketizationUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7625500Z copying torch/include/ATen/native/vol2col.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7629250Z copying torch/include/ATen/native/LossMulti.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7631830Z copying torch/include/ATen/native/NonEmptyUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7636100Z copying torch/include/ATen/native/TensorDimApply.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7639040Z copying torch/include/ATen/native/verbose_wrapper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7641410Z copying torch/include/ATen/native/AdaptivePooling.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7644260Z copying torch/include/ATen/native/ConvolutionMM3d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7648500Z copying torch/include/ATen/native/group_norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7650950Z copying torch/include/ATen/native/Histogram.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7657430Z copying torch/include/ATen/native/Activation.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7658580Z copying torch/include/ATen/native/Math.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7663900Z copying torch/include/ATen/native/FusedAdam.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7666100Z copying torch/include/ATen/native/ScatterGatherChecks.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7670240Z copying torch/include/ATen/native/CPUBlas.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7672830Z copying torch/include/ATen/native/CompositeRandomAccessorCommon.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7675570Z copying torch/include/ATen/native/BatchLinearAlgebra.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7676700Z copying torch/include/ATen/native/AmpKernels.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7678390Z copying torch/include/ATen/native/DistributionTemplates.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7679740Z copying torch/include/ATen/native/TensorIterator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7680950Z copying torch/include/ATen/native/TensorConversions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7685930Z copying torch/include/ATen/native/FractionalMaxPooling.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7688840Z copying torch/include/ATen/native/ReduceOpsUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7691070Z copying torch/include/ATen/native/TensorFactories.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7694590Z copying torch/include/ATen/native/PointwiseOps.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7698520Z copying torch/include/ATen/native/BinaryOps.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7703450Z copying torch/include/ATen/native/Pow.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7705190Z copying torch/include/ATen/native/EmbeddingBag.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7708900Z copying torch/include/ATen/native/im2col_shape_check.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7713340Z copying torch/include/ATen/native/SegmentReduce.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7715780Z copying torch/include/ATen/native/FusedSGD.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7720450Z copying torch/include/ATen/native/Padding.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7721710Z copying torch/include/ATen/native/TensorCompare.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7724790Z copying torch/include/ATen/native/PixelShuffle.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7728530Z copying torch/include/ATen/native/LinearAlgebraUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7731880Z copying torch/include/ATen/native/TypeProperties.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7733800Z copying torch/include/ATen/native/Copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7738670Z copying torch/include/ATen/native/CanUse32BitIndexMath.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7741450Z copying torch/include/ATen/native/TensorIteratorDynamicCasting.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native 2024-06-26T05:42:54.7747300Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7748030Z copying torch/include/ATen/native/cpu/IsContiguous.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7749010Z copying torch/include/ATen/native/cpu/zmath.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7752740Z copying torch/include/ATen/native/cpu/ReduceUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7754070Z copying torch/include/ATen/native/cpu/mixed_data_type.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7760510Z copying torch/include/ATen/native/cpu/utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7762140Z copying torch/include/ATen/native/cpu/int_mm_kernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7769110Z copying torch/include/ATen/native/cpu/SampledAddmmKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7770190Z copying torch/include/ATen/native/cpu/moments_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7772460Z copying torch/include/ATen/native/cpu/ChannelShuffleKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7775850Z copying torch/include/ATen/native/cpu/SpmmReduceKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7780190Z copying torch/include/ATen/native/cpu/GridSamplerKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7786000Z copying torch/include/ATen/native/cpu/SerialStackImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7788270Z copying torch/include/ATen/native/cpu/Intrinsics.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7790490Z copying torch/include/ATen/native/cpu/LogAddExp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7794880Z copying torch/include/ATen/native/cpu/WeightNormKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7798570Z copying torch/include/ATen/native/cpu/MaxUnpoolKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7806650Z copying torch/include/ATen/native/cpu/SoftmaxKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7809600Z copying torch/include/ATen/native/cpu/AtomicAddFloat.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7810980Z copying torch/include/ATen/native/cpu/Reduce.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7815380Z copying torch/include/ATen/native/cpu/CatKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7816390Z copying torch/include/ATen/native/cpu/StackKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7818220Z copying torch/include/ATen/native/cpu/DepthwiseConvKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7822580Z copying torch/include/ATen/native/cpu/DistributionTemplates.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7826030Z copying torch/include/ATen/native/cpu/PixelShuffleKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7830070Z copying torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7833820Z copying torch/include/ATen/native/cpu/IndexKernelUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7837060Z copying torch/include/ATen/native/cpu/avx_mathfun.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7838630Z copying torch/include/ATen/native/cpu/CopyKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7840610Z copying torch/include/ATen/native/cpu/Loops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu 2024-06-26T05:42:54.7845510Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7846400Z copying torch/include/ATen/native/cuda/CompositeRandomAccessor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7856110Z copying torch/include/ATen/native/cuda/MiscUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7857130Z copying torch/include/ATen/native/cuda/GridSampler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7858350Z copying torch/include/ATen/native/cuda/CuFFTPlanCache.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7860410Z copying torch/include/ATen/native/cuda/RowwiseScaledMM.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7863480Z copying torch/include/ATen/native/cuda/ScanKernels.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7865990Z copying torch/include/ATen/native/cuda/IndexKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7868390Z copying torch/include/ATen/native/cuda/Distributions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7869810Z copying torch/include/ATen/native/cuda/BinaryInternal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7874350Z copying torch/include/ATen/native/cuda/CuFFTUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7876420Z copying torch/include/ATen/native/cuda/ReduceOps.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7877830Z copying torch/include/ATen/native/cuda/TensorTopK.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7878900Z copying torch/include/ATen/native/cuda/TensorModeKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7881580Z copying torch/include/ATen/native/cuda/thread_constants.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7884820Z copying torch/include/ATen/native/cuda/Resize.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7889140Z copying torch/include/ATen/native/cuda/Sorting.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7893680Z copying torch/include/ATen/native/cuda/Activation.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7896530Z copying torch/include/ATen/native/cuda/Sort.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7897940Z copying torch/include/ATen/native/cuda/DistributionTemplates.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7902620Z copying torch/include/ATen/native/cuda/jit_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7905420Z copying torch/include/ATen/native/cuda/SortStable.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7911000Z copying torch/include/ATen/native/cuda/LaunchUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7913030Z copying torch/include/ATen/native/cuda/Copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7916240Z copying torch/include/ATen/native/cuda/Normalization.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7918120Z copying torch/include/ATen/native/cuda/SortingRadixSelect.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7920990Z copying torch/include/ATen/native/cuda/block_reduce.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7926020Z copying torch/include/ATen/native/cuda/TensorModeKernel.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7928210Z copying torch/include/ATen/native/cuda/MemoryAccess.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7933610Z copying torch/include/ATen/native/cuda/CUDAJitLoops.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7934680Z copying torch/include/ATen/native/cuda/im2col.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7940620Z copying torch/include/ATen/native/cuda/SortUtils.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7942910Z copying torch/include/ATen/native/cuda/DeviceSqrt.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7948040Z copying torch/include/ATen/native/cuda/UpSample.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7950110Z copying torch/include/ATen/native/cuda/Randperm.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7952760Z copying torch/include/ATen/native/cuda/vol2col.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7955340Z copying torch/include/ATen/native/cuda/Pow.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7959520Z copying torch/include/ATen/native/cuda/reduction_template.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7961380Z copying torch/include/ATen/native/cuda/fused_adamw_impl.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7965570Z copying torch/include/ATen/native/cuda/Math.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7967740Z copying torch/include/ATen/native/cuda/SortingCommon.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7972030Z copying torch/include/ATen/native/cuda/ScanUtils.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7975340Z copying torch/include/ATen/native/cuda/MultiTensorApply.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7980160Z copying torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7982850Z copying torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7987370Z copying torch/include/ATen/native/cuda/fused_adam_utils.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7989770Z copying torch/include/ATen/native/cuda/JitLoops.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7991020Z copying torch/include/ATen/native/cuda/KernelUtils.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7994120Z copying torch/include/ATen/native/cuda/ForeachFunctors.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.7999580Z copying torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.8002670Z copying torch/include/ATen/native/cuda/Loops.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.8007970Z copying torch/include/ATen/native/cuda/UniqueCub.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.8009290Z copying torch/include/ATen/native/cuda/CUDALoops.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.8012010Z copying torch/include/ATen/native/cuda/GridSampler.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.8015220Z copying torch/include/ATen/native/cuda/PersistentSoftmax.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.8019460Z copying torch/include/ATen/native/cuda/Reduce.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.8021720Z copying torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.8025620Z copying torch/include/ATen/native/cuda/fused_adam_impl.cuh -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda 2024-06-26T05:42:54.8034480Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/mps 2024-06-26T05:42:54.8035210Z copying torch/include/ATen/native/mps/TensorFactory.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/mps 2024-06-26T05:42:54.8039750Z copying torch/include/ATen/native/mps/MPSGraphSonomaOps.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/mps 2024-06-26T05:42:54.8040950Z copying torch/include/ATen/native/mps/MPSGraphVenturaOps.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/mps 2024-06-26T05:42:54.8042580Z copying torch/include/ATen/native/mps/UnaryConstants.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/mps 2024-06-26T05:42:54.8043800Z copying torch/include/ATen/native/mps/OperationUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/mps 2024-06-26T05:42:54.8048510Z copying torch/include/ATen/native/mps/Copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/mps 2024-06-26T05:42:54.8052230Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/nested 2024-06-26T05:42:54.8053030Z copying torch/include/ATen/native/nested/NestedTensorUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/nested 2024-06-26T05:42:54.8055070Z copying torch/include/ATen/native/nested/NestedTensorTransformerUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/nested 2024-06-26T05:42:54.8056170Z copying torch/include/ATen/native/nested/NestedTensorMath.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/nested 2024-06-26T05:42:54.8057480Z copying torch/include/ATen/native/nested/NestedTensorBinaryOps.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/nested 2024-06-26T05:42:54.8063110Z copying torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/nested 2024-06-26T05:42:54.8064170Z copying torch/include/ATen/native/nested/NestedTensorFactories.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/nested 2024-06-26T05:42:54.8064960Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized 2024-06-26T05:42:54.8065750Z copying torch/include/ATen/native/quantized/ConvUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized 2024-06-26T05:42:54.8066730Z copying torch/include/ATen/native/quantized/AffineQuantizer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized 2024-06-26T05:42:54.8069000Z copying torch/include/ATen/native/quantized/IndexKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized 2024-06-26T05:42:54.8073360Z copying torch/include/ATen/native/quantized/AffineQuantizerBase.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized 2024-06-26T05:42:54.8076580Z copying torch/include/ATen/native/quantized/FakeQuantAffine.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized 2024-06-26T05:42:54.8079040Z copying torch/include/ATen/native/quantized/PackedParams.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized 2024-06-26T05:42:54.8081720Z copying torch/include/ATen/native/quantized/Copy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized 2024-06-26T05:42:54.8084370Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:54.8085230Z copying torch/include/ATen/native/quantized/cpu/XnnpackUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:54.8089960Z copying torch/include/ATen/native/quantized/cpu/fbgemm_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:54.8091780Z copying torch/include/ATen/native/quantized/cpu/init_qnnpack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:54.8098000Z copying torch/include/ATen/native/quantized/cpu/conv_serialization.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:54.8099380Z copying torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:54.8103610Z copying torch/include/ATen/native/quantized/cpu/qembeddingbag.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:54.8104880Z copying torch/include/ATen/native/quantized/cpu/QnnpackUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:54.8107850Z copying torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:54.8111130Z copying torch/include/ATen/native/quantized/cpu/OnednnUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:54.8115070Z copying torch/include/ATen/native/quantized/cpu/QuantUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:54.8119280Z copying torch/include/ATen/native/quantized/cpu/RuyUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:54.8123670Z copying torch/include/ATen/native/quantized/cpu/BinaryOps.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:54.8126730Z copying torch/include/ATen/native/quantized/cpu/QuantizedOps.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:54.8128790Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/transformers 2024-06-26T05:42:54.8129620Z copying torch/include/ATen/native/transformers/attention.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/transformers 2024-06-26T05:42:54.8130780Z copying torch/include/ATen/native/transformers/sdp_utils_cpp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/transformers 2024-06-26T05:42:54.8134060Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/utils 2024-06-26T05:42:54.8134810Z copying torch/include/ATen/native/utils/ParamUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/utils 2024-06-26T05:42:54.8137110Z copying torch/include/ATen/native/utils/ParamsHash.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/utils 2024-06-26T05:42:54.8140990Z copying torch/include/ATen/native/utils/Factory.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/utils 2024-06-26T05:42:54.8144520Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/quantized 2024-06-26T05:42:54.8145240Z copying torch/include/ATen/quantized/QTensorImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/quantized 2024-06-26T05:42:54.8149840Z copying torch/include/ATen/quantized/Quantizer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/quantized 2024-06-26T05:42:54.8153330Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/xpu 2024-06-26T05:42:54.8153970Z copying torch/include/ATen/xpu/XPUEvent.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/xpu 2024-06-26T05:42:54.8155300Z copying torch/include/ATen/xpu/XPUDevice.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/xpu 2024-06-26T05:42:54.8159030Z copying torch/include/ATen/xpu/PinnedMemoryAllocator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/xpu 2024-06-26T05:42:54.8161790Z copying torch/include/ATen/xpu/CachingHostAllocator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/xpu 2024-06-26T05:42:54.8164630Z copying torch/include/ATen/xpu/XPUGeneratorImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/xpu 2024-06-26T05:42:54.8167550Z copying torch/include/ATen/xpu/XPUContext.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/xpu 2024-06-26T05:42:54.8173150Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/xpu/detail 2024-06-26T05:42:54.8173950Z copying torch/include/ATen/xpu/detail/XPUHooks.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/xpu/detail 2024-06-26T05:42:54.8177020Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/caffe2 2024-06-26T05:42:54.8177530Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/caffe2/serialize 2024-06-26T05:42:54.8178420Z copying torch/include/caffe2/serialize/in_memory_adapter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/caffe2/serialize 2024-06-26T05:42:54.8184310Z copying torch/include/caffe2/serialize/read_adapter_interface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/caffe2/serialize 2024-06-26T05:42:54.8185400Z copying torch/include/caffe2/serialize/crc_alt.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/caffe2/serialize 2024-06-26T05:42:54.8187490Z copying torch/include/caffe2/serialize/versions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/caffe2/serialize 2024-06-26T05:42:54.8188580Z copying torch/include/caffe2/serialize/inline_container.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/caffe2/serialize 2024-06-26T05:42:54.8191130Z copying torch/include/caffe2/serialize/file_adapter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/caffe2/serialize 2024-06-26T05:42:54.8192370Z copying torch/include/caffe2/serialize/istream_adapter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/caffe2/serialize 2024-06-26T05:42:54.8198180Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/c10 2024-06-26T05:42:54.8198650Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/c10/macros 2024-06-26T05:42:54.8199310Z copying torch/include/c10/macros/cmake_macros.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/macros 2024-06-26T05:42:54.8202660Z copying torch/include/c10/macros/Export.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/macros 2024-06-26T05:42:54.8203600Z copying torch/include/c10/macros/Macros.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/macros 2024-06-26T05:42:54.8210990Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8211650Z copying torch/include/c10/core/RefcountedDeleter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8212630Z copying torch/include/c10/core/QEngine.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8214320Z copying torch/include/c10/core/TensorOptions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8215500Z copying torch/include/c10/core/SymFloat.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8217130Z copying torch/include/c10/core/GradMode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8219210Z copying torch/include/c10/core/Device.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8419090Z copying torch/include/c10/core/CPUAllocator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8419980Z copying torch/include/c10/core/DefaultDtype.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8421670Z copying torch/include/c10/core/DefaultTensorOptions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8422580Z copying torch/include/c10/core/alignment.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8424240Z copying torch/include/c10/core/Event.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8425100Z copying torch/include/c10/core/Backend.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8427030Z copying torch/include/c10/core/CompileTimeFunctionPointer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8428000Z copying torch/include/c10/core/DeviceArray.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8429620Z copying torch/include/c10/core/PyHandleCache.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8430710Z copying torch/include/c10/core/ConstantSymNodeImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8431790Z copying torch/include/c10/core/WrapDimMinimal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8433430Z copying torch/include/c10/core/QScheme.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8434370Z copying torch/include/c10/core/SafePyObject.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8436110Z copying torch/include/c10/core/Stream.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8437060Z copying torch/include/c10/core/UndefinedTensorImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8438710Z copying torch/include/c10/core/Scalar.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8440200Z copying torch/include/c10/core/AutogradState.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8441310Z copying torch/include/c10/core/SymIntArrayRef.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8442960Z copying torch/include/c10/core/thread_pool.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8448500Z copying torch/include/c10/core/CopyBytes.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8449290Z copying torch/include/c10/core/SymNodeImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8450050Z copying torch/include/c10/core/StreamGuard.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8450830Z copying torch/include/c10/core/DynamicCast.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8451600Z copying torch/include/c10/core/Layout.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8452370Z copying torch/include/c10/core/GeneratorImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8453150Z copying torch/include/c10/core/DispatchKeySet.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8453930Z copying torch/include/c10/core/Allocator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8455120Z copying torch/include/c10/core/TensorImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8457620Z copying torch/include/c10/core/Contiguity.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8458490Z copying torch/include/c10/core/ScalarType.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8460100Z copying torch/include/c10/core/Storage.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8461160Z copying torch/include/c10/core/DeviceType.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8462760Z copying torch/include/c10/core/DeviceGuard.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8463830Z copying torch/include/c10/core/StorageImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8465550Z copying torch/include/c10/core/SymbolicShapeMeta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8466630Z copying torch/include/c10/core/MemoryFormat.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8468320Z copying torch/include/c10/core/SymBool.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8469330Z copying torch/include/c10/core/DispatchKey.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8471140Z copying torch/include/c10/core/ScalarTypeToTypeMeta.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8472130Z copying torch/include/c10/core/InferenceMode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8474040Z copying torch/include/c10/core/SymInt.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8475200Z copying torch/include/c10/core/OptionalRef.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core 2024-06-26T05:42:54.8476780Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing 2024-06-26T05:42:54.8477550Z copying torch/include/ATen/core/boxing/KernelFunction.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing 2024-06-26T05:42:54.8478700Z copying torch/include/ATen/core/boxing/OperatorKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing 2024-06-26T05:42:54.8480020Z copying torch/include/ATen/core/boxing/KernelFunction_impl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing 2024-06-26T05:42:54.8481820Z copying torch/include/ATen/core/boxing/BoxedKernel_impl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing 2024-06-26T05:42:54.8482870Z copying torch/include/ATen/core/boxing/BoxedKernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing 2024-06-26T05:42:54.8483970Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing/impl 2024-06-26T05:42:54.8484840Z copying torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing/impl 2024-06-26T05:42:54.8486290Z copying torch/include/ATen/core/boxing/impl/boxing.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing/impl 2024-06-26T05:42:54.8488270Z copying torch/include/ATen/core/boxing/impl/test_helpers.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing/impl 2024-06-26T05:42:54.8489480Z copying torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing/impl 2024-06-26T05:42:54.8490830Z copying torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing/impl 2024-06-26T05:42:54.8491970Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/dispatch 2024-06-26T05:42:54.8492750Z copying torch/include/ATen/core/dispatch/OperatorOptions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/dispatch 2024-06-26T05:42:54.8494060Z copying torch/include/ATen/core/dispatch/RegistrationHandleRAII.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/dispatch 2024-06-26T05:42:54.8495300Z copying torch/include/ATen/core/dispatch/ObservedOperators.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/dispatch 2024-06-26T05:42:54.8496660Z copying torch/include/ATen/core/dispatch/DispatchKeyExtractor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/dispatch 2024-06-26T05:42:54.8498040Z copying torch/include/ATen/core/dispatch/Dispatcher.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/dispatch 2024-06-26T05:42:54.8500390Z copying torch/include/ATen/core/dispatch/CppSignature.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/dispatch 2024-06-26T05:42:54.8501500Z copying torch/include/ATen/core/dispatch/OperatorEntry.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/dispatch 2024-06-26T05:42:54.8503630Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/op_registration 2024-06-26T05:42:54.8504520Z copying torch/include/ATen/core/op_registration/adaption.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/op_registration 2024-06-26T05:42:54.8505570Z copying torch/include/ATen/core/op_registration/op_allowlist.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/op_registration 2024-06-26T05:42:54.8506780Z copying torch/include/ATen/core/op_registration/op_registration.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/op_registration 2024-06-26T05:42:54.8508670Z copying torch/include/ATen/core/op_registration/infer_schema.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/op_registration 2024-06-26T05:42:54.8510460Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8511220Z copying torch/include/c10/core/impl/InlineStreamGuard.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8512280Z copying torch/include/c10/core/impl/SizesAndStrides.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8514030Z copying torch/include/c10/core/impl/InlineDeviceGuard.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8515760Z copying torch/include/c10/core/impl/GPUTrace.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8516770Z copying torch/include/c10/core/impl/COWDeleter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8518090Z copying torch/include/c10/core/impl/LocalDispatchKeySet.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8519390Z copying torch/include/c10/core/impl/alloc_cpu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8520770Z copying torch/include/c10/core/impl/VirtualGuardImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8522170Z copying torch/include/c10/core/impl/HermeticPyObjectTLS.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8523440Z copying torch/include/c10/core/impl/PyObjectSlot.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8525180Z copying torch/include/c10/core/impl/TorchDispatchModeTLS.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8526210Z copying torch/include/c10/core/impl/PyInterpreter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8527930Z copying torch/include/c10/core/impl/PythonDispatcherTLS.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8528950Z copying torch/include/c10/core/impl/COW.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8530640Z copying torch/include/c10/core/impl/InlineEvent.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8531690Z copying torch/include/c10/core/impl/DeviceGuardImplInterface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8533590Z copying torch/include/c10/core/impl/FakeGuardImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl 2024-06-26T05:42:54.8534620Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8535300Z copying torch/include/c10/util/Type.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8536990Z copying torch/include/c10/util/order_preserving_flat_hash_map.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8538810Z copying torch/include/c10/util/Float8_e4m3fn-inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8539770Z copying torch/include/c10/util/quint4x2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8541370Z copying torch/include/c10/util/FbcodeMaps.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8542420Z copying torch/include/c10/util/signal_handler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8544240Z copying torch/include/c10/util/safe_numerics.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8545100Z copying torch/include/c10/util/Half.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8546880Z copying torch/include/c10/util/flat_hash_map.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8548610Z copying torch/include/c10/util/env.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8549590Z copying torch/include/c10/util/llvmMathExtras.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8551360Z copying torch/include/c10/util/Synchronized.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8552420Z copying torch/include/c10/util/Bitset.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8554050Z copying torch/include/c10/util/typeid.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8555450Z copying torch/include/c10/util/Float8_e4m3fnuz-inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8557210Z copying torch/include/c10/util/TypeSafeSignMath.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8558160Z copying torch/include/c10/util/intrusive_ptr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8563450Z copying torch/include/c10/util/string_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8564230Z copying torch/include/c10/util/win32-headers.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8564990Z copying torch/include/c10/util/AlignOf.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8565760Z copying torch/include/c10/util/static_tracepoint.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8566510Z copying torch/include/c10/util/ssize.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8567200Z copying torch/include/c10/util/numa.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8567920Z copying torch/include/c10/util/qint32.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8568700Z copying torch/include/c10/util/CallOnce.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8570370Z copying torch/include/c10/util/Float8_e5m2fnuz.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8571270Z copying torch/include/c10/util/MaybeOwned.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8572540Z copying torch/include/c10/util/Half-inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8574260Z copying torch/include/c10/util/TypeTraits.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8577440Z copying torch/include/c10/util/DeadlockDetection.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8578400Z copying torch/include/c10/util/FunctionRef.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8580480Z copying torch/include/c10/util/Backtrace.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8587870Z copying torch/include/c10/util/ExclusivelyOwned.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8591800Z copying torch/include/c10/util/Load.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8597450Z copying torch/include/c10/util/BFloat16-inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8599120Z copying torch/include/c10/util/static_tracepoint_elfx86.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8601060Z copying torch/include/c10/util/ConstexprCrc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8602220Z copying torch/include/c10/util/ThreadLocal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8603710Z copying torch/include/c10/util/IdWrapper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8610210Z copying torch/include/c10/util/Flags.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8611320Z copying torch/include/c10/util/overloaded.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8612980Z copying torch/include/c10/util/Float8_e4m3fnuz.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8613990Z copying torch/include/c10/util/quint8.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8619720Z copying torch/include/c10/util/Float8_e5m2-inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8620890Z copying torch/include/c10/util/StringUtil.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8622520Z copying torch/include/c10/util/Logging.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8625340Z copying torch/include/c10/util/MathConstants.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8626600Z copying torch/include/c10/util/Registry.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8628610Z copying torch/include/c10/util/Optional.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8632920Z copying torch/include/c10/util/Float8_e5m2.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8636180Z copying torch/include/c10/util/tempfile.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8641350Z copying torch/include/c10/util/copysign.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8642940Z copying torch/include/c10/util/ArrayRef.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8645520Z copying torch/include/c10/util/thread_name.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8647840Z copying torch/include/c10/util/strides.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8653240Z copying torch/include/c10/util/Unicode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8655280Z copying torch/include/c10/util/TypeCast.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8662820Z copying torch/include/c10/util/sparse_bitset.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8664500Z copying torch/include/c10/util/OptionalArrayRef.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8665750Z copying torch/include/c10/util/BFloat16.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8671810Z copying torch/include/c10/util/TypeList.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8673390Z copying torch/include/c10/util/TypeIndex.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8675420Z copying torch/include/c10/util/Array.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8678990Z copying torch/include/c10/util/logging_is_google_glog.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8684170Z copying torch/include/c10/util/Metaprogramming.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8686170Z copying torch/include/c10/util/quint2x4.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8688150Z copying torch/include/c10/util/floating_point_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8690850Z copying torch/include/c10/util/ParallelGuard.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8694930Z copying torch/include/c10/util/BFloat16-math.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8698420Z copying torch/include/c10/util/int128.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8704180Z copying torch/include/c10/util/Lazy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8705110Z copying torch/include/c10/util/Deprecated.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8709200Z copying torch/include/c10/util/irange.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8710330Z copying torch/include/c10/util/SmallBuffer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8715870Z copying torch/include/c10/util/ScopeExit.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8719340Z copying torch/include/c10/util/Unroll.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8724980Z copying torch/include/c10/util/LeftRight.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8726770Z copying torch/include/c10/util/bit_cast.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8728990Z copying torch/include/c10/util/qint8.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8732230Z copying torch/include/c10/util/complex_math.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8736390Z copying torch/include/c10/util/logging_is_not_google_glog.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8738880Z copying torch/include/c10/util/Exception.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8742200Z copying torch/include/c10/util/UniqueVoidPtr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8748470Z copying torch/include/c10/util/ThreadLocalDebugInfo.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8749710Z copying torch/include/c10/util/Float8_e4m3fn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8752740Z copying torch/include/c10/util/AbortHandler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8755190Z copying torch/include/c10/util/DimVector.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8759410Z copying torch/include/c10/util/accumulate.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8763620Z copying torch/include/c10/util/C++17.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8765510Z copying torch/include/c10/util/strong_type.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8769120Z copying torch/include/c10/util/ApproximateClock.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8771920Z copying torch/include/c10/util/SmallVector.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8778310Z copying torch/include/c10/util/Float8_e5m2fnuz-inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8780250Z copying torch/include/c10/util/hash.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8787410Z copying torch/include/c10/util/python_stub.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8790320Z copying torch/include/c10/util/complex.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8791430Z copying torch/include/c10/util/bits.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8793630Z copying torch/include/c10/util/string_view.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8794920Z copying torch/include/c10/util/Float8_fnuz_cvt.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8796650Z copying torch/include/c10/util/complex_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8797790Z copying torch/include/c10/util/ExclusivelyOwnedTensorTraits.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8803300Z copying torch/include/c10/util/generic_math.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util 2024-06-26T05:42:54.8803940Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda 2024-06-26T05:42:54.8804610Z copying torch/include/c10/cuda/CUDADeviceAssertion.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda 2024-06-26T05:42:54.8805520Z copying torch/include/c10/cuda/driver_api.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda 2024-06-26T05:42:54.8806310Z copying torch/include/c10/cuda/CUDAMathCompat.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda 2024-06-26T05:42:54.8807110Z copying torch/include/c10/cuda/CUDAAlgorithm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda 2024-06-26T05:42:54.8807890Z copying torch/include/c10/cuda/CUDAStream.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda 2024-06-26T05:42:54.8811480Z copying torch/include/c10/cuda/CUDAGuard.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda 2024-06-26T05:42:54.8815470Z copying torch/include/c10/cuda/CUDAMiscFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda 2024-06-26T05:42:54.8817720Z copying torch/include/c10/cuda/CUDAGraphsC10Utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda 2024-06-26T05:42:54.8822180Z copying torch/include/c10/cuda/CUDAMacros.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda 2024-06-26T05:42:54.8823270Z copying torch/include/c10/cuda/CUDAAllocatorConfig.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda 2024-06-26T05:42:54.8829780Z copying torch/include/c10/cuda/CUDAFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda 2024-06-26T05:42:54.8834040Z copying torch/include/c10/cuda/CUDAException.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda 2024-06-26T05:42:54.8837420Z copying torch/include/c10/cuda/CUDACachingAllocator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda 2024-06-26T05:42:54.8839580Z copying torch/include/c10/cuda/CUDADeviceAssertionHost.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda 2024-06-26T05:42:54.8842670Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/impl 2024-06-26T05:42:54.8843400Z copying torch/include/c10/cuda/impl/CUDATest.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/impl 2024-06-26T05:42:54.8846010Z copying torch/include/c10/cuda/impl/CUDAGuardImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/impl 2024-06-26T05:42:54.8849540Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/c10/xpu 2024-06-26T05:42:54.8850150Z copying torch/include/c10/xpu/XPUStream.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/xpu 2024-06-26T05:42:54.8852450Z copying torch/include/c10/xpu/XPUDeviceProp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/xpu 2024-06-26T05:42:54.8856950Z copying torch/include/c10/xpu/XPUCachingAllocator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/xpu 2024-06-26T05:42:54.8857940Z copying torch/include/c10/xpu/XPUMacros.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/xpu 2024-06-26T05:42:54.8862320Z copying torch/include/c10/xpu/XPUException.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/xpu 2024-06-26T05:42:54.8866850Z copying torch/include/c10/xpu/XPUFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/xpu 2024-06-26T05:42:54.8870150Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/c10/xpu/impl 2024-06-26T05:42:54.8870860Z copying torch/include/c10/xpu/impl/XPUGuardImpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/c10/xpu/impl 2024-06-26T05:42:54.8871800Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch 2024-06-26T05:42:54.8872450Z copying torch/include/torch/script.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch 2024-06-26T05:42:54.8874740Z copying torch/include/torch/library.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch 2024-06-26T05:42:54.8879980Z copying torch/include/torch/custom_class_detail.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch 2024-06-26T05:42:54.8890170Z copying torch/include/torch/custom_class.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch 2024-06-26T05:42:54.8891290Z copying torch/include/torch/extension.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch 2024-06-26T05:42:54.8892870Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8893490Z copying torch/include/torch/csrc/Size.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8897170Z copying torch/include/torch/csrc/utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8899260Z copying torch/include/torch/csrc/Export.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8900180Z copying torch/include/torch/csrc/Device.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8902330Z copying torch/include/torch/csrc/THConcat.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8904330Z copying torch/include/torch/csrc/Event.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8910490Z copying torch/include/torch/csrc/Types.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8911610Z copying torch/include/torch/csrc/serialization.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8918820Z copying torch/include/torch/csrc/Exceptions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8920900Z copying torch/include/torch/csrc/itt_wrapper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8922900Z copying torch/include/torch/csrc/QScheme.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8924620Z copying torch/include/torch/csrc/Stream.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8927680Z copying torch/include/torch/csrc/DataLoader.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8931470Z copying torch/include/torch/csrc/THP.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8936480Z copying torch/include/torch/csrc/python_headers.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8938000Z copying torch/include/torch/csrc/Layout.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8944720Z copying torch/include/torch/csrc/DynamicTypes.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8950280Z copying torch/include/torch/csrc/copy_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8952570Z copying torch/include/torch/csrc/Storage.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8958110Z copying torch/include/torch/csrc/MemoryFormat.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8960380Z copying torch/include/torch/csrc/StorageSharing.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8964050Z copying torch/include/torch/csrc/PyInterpreter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8965650Z copying torch/include/torch/csrc/Dtype.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8972570Z copying torch/include/torch/csrc/Module.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8973970Z copying torch/include/torch/csrc/python_dimname.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8975390Z copying torch/include/torch/csrc/CudaIPCTypes.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8976850Z copying torch/include/torch/csrc/Generator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8978280Z copying torch/include/torch/csrc/TypeInfo.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8980380Z copying torch/include/torch/csrc/StorageMethods.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc 2024-06-26T05:42:54.8982540Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api 2024-06-26T05:42:54.8982800Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include 2024-06-26T05:42:54.8983230Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.8984190Z copying torch/include/torch/csrc/api/include/torch/fft.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.8985870Z copying torch/include/torch/csrc/api/include/torch/nested.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.8987970Z copying torch/include/torch/csrc/api/include/torch/utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.8991290Z copying torch/include/torch/csrc/api/include/torch/version.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.8995310Z copying torch/include/torch/csrc/api/include/torch/enum.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.8999350Z copying torch/include/torch/csrc/api/include/torch/types.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9002630Z copying torch/include/torch/csrc/api/include/torch/all.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9006580Z copying torch/include/torch/csrc/api/include/torch/data.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9010470Z copying torch/include/torch/csrc/api/include/torch/arg.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9014230Z copying torch/include/torch/csrc/api/include/torch/xpu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9017900Z copying torch/include/torch/csrc/api/include/torch/torch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9020800Z copying torch/include/torch/csrc/api/include/torch/optim.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9023590Z copying torch/include/torch/csrc/api/include/torch/jit.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9024930Z copying torch/include/torch/csrc/api/include/torch/nn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9028750Z copying torch/include/torch/csrc/api/include/torch/imethod.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9049510Z copying torch/include/torch/csrc/api/include/torch/ordered_dict.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9051080Z copying torch/include/torch/csrc/api/include/torch/cuda.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9052480Z copying torch/include/torch/csrc/api/include/torch/autograd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9056630Z copying torch/include/torch/csrc/api/include/torch/linalg.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9059800Z copying torch/include/torch/csrc/api/include/torch/special.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9061410Z copying torch/include/torch/csrc/api/include/torch/sparse.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9062900Z copying torch/include/torch/csrc/api/include/torch/mps.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9063850Z copying torch/include/torch/csrc/api/include/torch/python.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9065550Z copying torch/include/torch/csrc/api/include/torch/serialize.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9067030Z copying torch/include/torch/csrc/api/include/torch/expanding_array.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:54.9068260Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data 2024-06-26T05:42:54.9068850Z copying torch/include/torch/csrc/api/include/torch/data/example.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data 2024-06-26T05:42:54.9070340Z copying torch/include/torch/csrc/api/include/torch/data/dataloader_options.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data 2024-06-26T05:42:54.9072470Z copying torch/include/torch/csrc/api/include/torch/data/worker_exception.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data 2024-06-26T05:42:54.9074830Z copying torch/include/torch/csrc/api/include/torch/data/dataloader.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data 2024-06-26T05:42:54.9079470Z copying torch/include/torch/csrc/api/include/torch/data/samplers.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data 2024-06-26T05:42:54.9080920Z copying torch/include/torch/csrc/api/include/torch/data/datasets.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data 2024-06-26T05:42:54.9084450Z copying torch/include/torch/csrc/api/include/torch/data/transforms.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data 2024-06-26T05:42:54.9088790Z copying torch/include/torch/csrc/api/include/torch/data/iterator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data 2024-06-26T05:42:54.9092840Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/dataloader 2024-06-26T05:42:54.9093580Z copying torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/dataloader 2024-06-26T05:42:54.9095780Z copying torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/dataloader 2024-06-26T05:42:54.9099490Z copying torch/include/torch/csrc/api/include/torch/data/dataloader/base.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/dataloader 2024-06-26T05:42:54.9101260Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/datasets 2024-06-26T05:42:54.9101930Z copying torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/datasets 2024-06-26T05:42:54.9105950Z copying torch/include/torch/csrc/api/include/torch/data/datasets/shared.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/datasets 2024-06-26T05:42:54.9107440Z copying torch/include/torch/csrc/api/include/torch/data/datasets/map.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/datasets 2024-06-26T05:42:54.9114540Z copying torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/datasets 2024-06-26T05:42:54.9116540Z copying torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/datasets 2024-06-26T05:42:54.9120810Z copying torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/datasets 2024-06-26T05:42:54.9122660Z copying torch/include/torch/csrc/api/include/torch/data/datasets/base.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/datasets 2024-06-26T05:42:54.9125800Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/detail 2024-06-26T05:42:54.9126560Z copying torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/detail 2024-06-26T05:42:54.9129360Z copying torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/detail 2024-06-26T05:42:54.9133020Z copying torch/include/torch/csrc/api/include/torch/data/detail/queue.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/detail 2024-06-26T05:42:54.9136830Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/samplers 2024-06-26T05:42:54.9137560Z copying torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/samplers 2024-06-26T05:42:54.9141380Z copying torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/samplers 2024-06-26T05:42:54.9145130Z copying torch/include/torch/csrc/api/include/torch/data/samplers/stream.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/samplers 2024-06-26T05:42:54.9147180Z copying torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/samplers 2024-06-26T05:42:54.9152990Z copying torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/samplers 2024-06-26T05:42:54.9155910Z copying torch/include/torch/csrc/api/include/torch/data/samplers/random.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/samplers 2024-06-26T05:42:54.9156890Z copying torch/include/torch/csrc/api/include/torch/data/samplers/base.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/samplers 2024-06-26T05:42:54.9158330Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/transforms 2024-06-26T05:42:54.9159020Z copying torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/transforms 2024-06-26T05:42:54.9164580Z copying torch/include/torch/csrc/api/include/torch/data/transforms/stack.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/transforms 2024-06-26T05:42:54.9165780Z copying torch/include/torch/csrc/api/include/torch/data/transforms/collate.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/transforms 2024-06-26T05:42:54.9167350Z copying torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/transforms 2024-06-26T05:42:54.9168480Z copying torch/include/torch/csrc/api/include/torch/data/transforms/base.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data/transforms 2024-06-26T05:42:54.9169820Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/detail 2024-06-26T05:42:54.9170430Z copying torch/include/torch/csrc/api/include/torch/detail/static.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/detail 2024-06-26T05:42:54.9173300Z copying torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/detail 2024-06-26T05:42:54.9174730Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn 2024-06-26T05:42:54.9175460Z copying torch/include/torch/csrc/api/include/torch/nn/utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn 2024-06-26T05:42:54.9177190Z copying torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn 2024-06-26T05:42:54.9184500Z copying torch/include/torch/csrc/api/include/torch/nn/options.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn 2024-06-26T05:42:54.9186180Z copying torch/include/torch/csrc/api/include/torch/nn/functional.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn 2024-06-26T05:42:54.9189960Z copying torch/include/torch/csrc/api/include/torch/nn/modules.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn 2024-06-26T05:42:54.9192830Z copying torch/include/torch/csrc/api/include/torch/nn/pimpl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn 2024-06-26T05:42:54.9198640Z copying torch/include/torch/csrc/api/include/torch/nn/module.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn 2024-06-26T05:42:54.9200200Z copying torch/include/torch/csrc/api/include/torch/nn/init.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn 2024-06-26T05:42:54.9204780Z copying torch/include/torch/csrc/api/include/torch/nn/cloneable.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn 2024-06-26T05:42:54.9210740Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9211450Z copying torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9213060Z copying torch/include/torch/csrc/api/include/torch/nn/functional/distance.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9214050Z copying torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9217230Z copying torch/include/torch/csrc/api/include/torch/nn/functional/linear.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9224450Z copying torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9225470Z copying torch/include/torch/csrc/api/include/torch/nn/functional/vision.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9226620Z copying torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9228820Z copying torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9231950Z copying torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9235690Z copying torch/include/torch/csrc/api/include/torch/nn/functional/fold.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9238910Z copying torch/include/torch/csrc/api/include/torch/nn/functional/activation.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9241900Z copying torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9245890Z copying torch/include/torch/csrc/api/include/torch/nn/functional/conv.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9249540Z copying torch/include/torch/csrc/api/include/torch/nn/functional/padding.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9252650Z copying torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9255130Z copying torch/include/torch/csrc/api/include/torch/nn/functional/loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:54.9260670Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9261350Z copying torch/include/torch/csrc/api/include/torch/nn/options/normalization.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9263350Z copying torch/include/torch/csrc/api/include/torch/nn/options/rnn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9269310Z copying torch/include/torch/csrc/api/include/torch/nn/options/distance.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9270800Z copying torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9273730Z copying torch/include/torch/csrc/api/include/torch/nn/options/linear.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9277710Z copying torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9278650Z copying torch/include/torch/csrc/api/include/torch/nn/options/vision.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9280890Z copying torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9285050Z copying torch/include/torch/csrc/api/include/torch/nn/options/dropout.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9292310Z copying torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9293380Z copying torch/include/torch/csrc/api/include/torch/nn/options/embedding.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9299090Z copying torch/include/torch/csrc/api/include/torch/nn/options/fold.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9300140Z copying torch/include/torch/csrc/api/include/torch/nn/options/activation.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9301910Z copying torch/include/torch/csrc/api/include/torch/nn/options/transformer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9305470Z copying torch/include/torch/csrc/api/include/torch/nn/options/pooling.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9311180Z copying torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9313130Z copying torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9316200Z copying torch/include/torch/csrc/api/include/torch/nn/options/conv.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9319530Z copying torch/include/torch/csrc/api/include/torch/nn/options/padding.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9354980Z copying torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9517400Z copying torch/include/torch/csrc/api/include/torch/nn/options/loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:54.9519170Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9519900Z copying torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9521300Z copying torch/include/torch/csrc/api/include/torch/nn/modules/utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9523040Z copying torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9525060Z copying torch/include/torch/csrc/api/include/torch/nn/modules/distance.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9526560Z copying torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9528030Z copying torch/include/torch/csrc/api/include/torch/nn/modules/linear.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9529180Z copying torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9530850Z copying torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9531890Z copying torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9533610Z copying torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9534660Z copying torch/include/torch/csrc/api/include/torch/nn/modules/common.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9536250Z copying torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9537420Z copying torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9538940Z copying torch/include/torch/csrc/api/include/torch/nn/modules/fold.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9540460Z copying torch/include/torch/csrc/api/include/torch/nn/modules/activation.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9542060Z copying torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9543120Z copying torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9545020Z copying torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9546090Z copying torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9547670Z copying torch/include/torch/csrc/api/include/torch/nn/modules/conv.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9549390Z copying torch/include/torch/csrc/api/include/torch/nn/modules/padding.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9550980Z copying torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9552500Z copying torch/include/torch/csrc/api/include/torch/nn/modules/loss.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:54.9553940Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules/container 2024-06-26T05:42:54.9554690Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules/container 2024-06-26T05:42:54.9555930Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules/container 2024-06-26T05:42:54.9557670Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules/container 2024-06-26T05:42:54.9559270Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules/container 2024-06-26T05:42:54.9561210Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules/container 2024-06-26T05:42:54.9563030Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules/container 2024-06-26T05:42:54.9564150Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules/container 2024-06-26T05:42:54.9565780Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules/container 2024-06-26T05:42:54.9566870Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules/container 2024-06-26T05:42:54.9569040Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/modules/container 2024-06-26T05:42:54.9570930Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/parallel 2024-06-26T05:42:54.9571600Z copying torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/parallel 2024-06-26T05:42:54.9573300Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/utils 2024-06-26T05:42:54.9573920Z copying torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/utils 2024-06-26T05:42:54.9575930Z copying torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/utils 2024-06-26T05:42:54.9577100Z copying torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn/utils 2024-06-26T05:42:54.9578430Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/optim 2024-06-26T05:42:54.9579030Z copying torch/include/torch/csrc/api/include/torch/optim/rmsprop.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/optim 2024-06-26T05:42:54.9580740Z copying torch/include/torch/csrc/api/include/torch/optim/lbfgs.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/optim 2024-06-26T05:42:54.9581840Z copying torch/include/torch/csrc/api/include/torch/optim/optimizer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/optim 2024-06-26T05:42:54.9583390Z copying torch/include/torch/csrc/api/include/torch/optim/adagrad.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/optim 2024-06-26T05:42:54.9584940Z copying torch/include/torch/csrc/api/include/torch/optim/sgd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/optim 2024-06-26T05:42:54.9586440Z copying torch/include/torch/csrc/api/include/torch/optim/serialize.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/optim 2024-06-26T05:42:54.9588300Z copying torch/include/torch/csrc/api/include/torch/optim/adamw.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/optim 2024-06-26T05:42:54.9589240Z copying torch/include/torch/csrc/api/include/torch/optim/adam.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/optim 2024-06-26T05:42:54.9590810Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/optim/schedulers 2024-06-26T05:42:54.9591630Z copying torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/optim/schedulers 2024-06-26T05:42:54.9593200Z copying torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/optim/schedulers 2024-06-26T05:42:54.9594230Z copying torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/optim/schedulers 2024-06-26T05:42:54.9595570Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/serialize 2024-06-26T05:42:54.9596220Z copying torch/include/torch/csrc/api/include/torch/serialize/archive.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/serialize 2024-06-26T05:42:54.9597870Z copying torch/include/torch/csrc/api/include/torch/serialize/input-archive.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/serialize 2024-06-26T05:42:54.9599260Z copying torch/include/torch/csrc/api/include/torch/serialize/output-archive.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/serialize 2024-06-26T05:42:54.9600260Z copying torch/include/torch/csrc/api/include/torch/serialize/tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/serialize 2024-06-26T05:42:54.9601670Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9602210Z copying torch/include/torch/csrc/autograd/python_function.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9603740Z copying torch/include/torch/csrc/autograd/custom_function.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9605270Z copying torch/include/torch/csrc/autograd/python_linalg_functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9606600Z copying torch/include/torch/csrc/autograd/saved_variable_hooks.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9607980Z copying torch/include/torch/csrc/autograd/record_function_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9609280Z copying torch/include/torch/csrc/autograd/engine.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9610590Z copying torch/include/torch/csrc/autograd/python_enum_tag.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9612180Z copying torch/include/torch/csrc/autograd/graph_task.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9613100Z copying torch/include/torch/csrc/autograd/edge.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9614720Z copying torch/include/torch/csrc/autograd/python_nested_functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9615720Z copying torch/include/torch/csrc/autograd/variable_info.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9617330Z copying torch/include/torch/csrc/autograd/saved_variable.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9618800Z copying torch/include/torch/csrc/autograd/python_engine.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9620190Z copying torch/include/torch/csrc/autograd/python_legacy_variable.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9621080Z copying torch/include/torch/csrc/autograd/profiler_python.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9622670Z copying torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9624190Z copying torch/include/torch/csrc/autograd/python_saved_variable_hooks.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9625070Z copying torch/include/torch/csrc/autograd/python_cpp_function.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9626600Z copying torch/include/torch/csrc/autograd/python_hook.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9627810Z copying torch/include/torch/csrc/autograd/VariableTypeUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9629720Z copying torch/include/torch/csrc/autograd/python_autograd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9631040Z copying torch/include/torch/csrc/autograd/profiler_kineto.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9632330Z copying torch/include/torch/csrc/autograd/variable.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9633910Z copying torch/include/torch/csrc/autograd/python_fft_functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9635290Z copying torch/include/torch/csrc/autograd/python_variable.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9636620Z copying torch/include/torch/csrc/autograd/python_torch_functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9638100Z copying torch/include/torch/csrc/autograd/function_hook.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9638910Z copying torch/include/torch/csrc/autograd/input_metadata.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9640530Z copying torch/include/torch/csrc/autograd/grad_mode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9641990Z copying torch/include/torch/csrc/autograd/jit_decomp_interface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9642890Z copying torch/include/torch/csrc/autograd/python_sparse_functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9644390Z copying torch/include/torch/csrc/autograd/symbolic.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9645870Z copying torch/include/torch/csrc/autograd/input_buffer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9647190Z copying torch/include/torch/csrc/autograd/profiler_legacy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9648510Z copying torch/include/torch/csrc/autograd/autograd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9649900Z copying torch/include/torch/csrc/autograd/cpp_hook.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9651350Z copying torch/include/torch/csrc/autograd/python_special_functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9652160Z copying torch/include/torch/csrc/autograd/FunctionsManual.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9654080Z copying torch/include/torch/csrc/autograd/forward_grad.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9655420Z copying torch/include/torch/csrc/autograd/python_anomaly_mode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9656900Z copying torch/include/torch/csrc/autograd/python_nn_functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9657790Z copying torch/include/torch/csrc/autograd/InferenceMode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9659390Z copying torch/include/torch/csrc/autograd/python_variable_indexing.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9660690Z copying torch/include/torch/csrc/autograd/profiler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9662020Z copying torch/include/torch/csrc/autograd/function.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9663450Z copying torch/include/torch/csrc/autograd/anomaly_mode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd 2024-06-26T05:42:54.9664710Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/functions 2024-06-26T05:42:54.9665240Z copying torch/include/torch/csrc/autograd/functions/utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/functions 2024-06-26T05:42:54.9666780Z copying torch/include/torch/csrc/autograd/functions/pybind.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/functions 2024-06-26T05:42:54.9667870Z copying torch/include/torch/csrc/autograd/functions/comm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/functions 2024-06-26T05:42:54.9669410Z copying torch/include/torch/csrc/autograd/functions/basic_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/functions 2024-06-26T05:42:54.9670850Z copying torch/include/torch/csrc/autograd/functions/accumulate_grad.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/functions 2024-06-26T05:42:54.9672450Z copying torch/include/torch/csrc/autograd/functions/tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/functions 2024-06-26T05:42:54.9673710Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/generated 2024-06-26T05:42:54.9674430Z copying torch/include/torch/csrc/autograd/generated/python_return_types.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/generated 2024-06-26T05:42:54.9675820Z copying torch/include/torch/csrc/autograd/generated/ViewFuncs.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/generated 2024-06-26T05:42:54.9677470Z copying torch/include/torch/csrc/autograd/generated/python_functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/generated 2024-06-26T05:42:54.9682090Z copying torch/include/torch/csrc/autograd/generated/VariableType.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/generated 2024-06-26T05:42:54.9683480Z copying torch/include/torch/csrc/autograd/generated/Functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/generated 2024-06-26T05:42:54.9694090Z copying torch/include/torch/csrc/autograd/generated/variable_factories.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/generated 2024-06-26T05:42:54.9695760Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/utils 2024-06-26T05:42:54.9696270Z copying torch/include/torch/csrc/autograd/utils/warnings.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/utils 2024-06-26T05:42:54.9699430Z copying torch/include/torch/csrc/autograd/utils/wrap_outputs.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/utils 2024-06-26T05:42:54.9702750Z copying torch/include/torch/csrc/autograd/utils/python_arg_parsing.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/utils 2024-06-26T05:42:54.9709140Z copying torch/include/torch/csrc/autograd/utils/grad_layout_contract.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/utils 2024-06-26T05:42:54.9711350Z copying torch/include/torch/csrc/autograd/utils/lambda_post_hook.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/utils 2024-06-26T05:42:54.9712720Z copying torch/include/torch/csrc/autograd/utils/error_messages.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/utils 2024-06-26T05:42:54.9715820Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda 2024-06-26T05:42:54.9716330Z copying torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda 2024-06-26T05:42:54.9718350Z copying torch/include/torch/csrc/cuda/THCP.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda 2024-06-26T05:42:54.9724790Z copying torch/include/torch/csrc/cuda/nccl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda 2024-06-26T05:42:54.9727770Z copying torch/include/torch/csrc/cuda/memory_snapshot.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda 2024-06-26T05:42:54.9733100Z copying torch/include/torch/csrc/cuda/python_nccl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda 2024-06-26T05:42:54.9734510Z copying torch/include/torch/csrc/cuda/device_set.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda 2024-06-26T05:42:54.9737280Z copying torch/include/torch/csrc/cuda/Event.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda 2024-06-26T05:42:54.9739860Z copying torch/include/torch/csrc/cuda/python_comm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda 2024-06-26T05:42:54.9745030Z copying torch/include/torch/csrc/cuda/comm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda 2024-06-26T05:42:54.9746700Z copying torch/include/torch/csrc/cuda/Stream.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda 2024-06-26T05:42:54.9748840Z copying torch/include/torch/csrc/cuda/Module.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda 2024-06-26T05:42:54.9755650Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed 2024-06-26T05:42:54.9755930Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9756460Z copying torch/include/torch/csrc/distributed/c10d/error.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9758070Z copying torch/include/torch/csrc/distributed/c10d/debug.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9760630Z copying torch/include/torch/csrc/distributed/c10d/logging.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9762500Z copying torch/include/torch/csrc/distributed/c10d/python_comm_hook.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9766410Z copying torch/include/torch/csrc/distributed/c10d/c10d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9771350Z copying torch/include/torch/csrc/distributed/c10d/TraceUtils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9774320Z copying torch/include/torch/csrc/distributed/c10d/exception.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9776530Z copying torch/include/torch/csrc/distributed/c10d/socket.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9779240Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9782430Z copying torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9788660Z copying torch/include/torch/csrc/distributed/c10d/logger.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9790030Z copying torch/include/torch/csrc/distributed/c10d/Work.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9794760Z copying torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9796340Z copying torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9800620Z copying torch/include/torch/csrc/distributed/c10d/Store.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9804240Z copying torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9805710Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9809230Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupCudaP2P.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9812900Z copying torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9816800Z copying torch/include/torch/csrc/distributed/c10d/RankLocal.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9822390Z copying torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9824280Z copying torch/include/torch/csrc/distributed/c10d/FileStore.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9827930Z copying torch/include/torch/csrc/distributed/c10d/reducer.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9829610Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9832200Z copying torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9836720Z copying torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9839930Z copying torch/include/torch/csrc/distributed/c10d/comm.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9842800Z copying torch/include/torch/csrc/distributed/c10d/TCPStore.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9850610Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9852760Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9859700Z copying torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9861220Z copying torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9864930Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9869430Z copying torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9871840Z copying torch/include/torch/csrc/distributed/c10d/HashStore.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9872720Z copying torch/include/torch/csrc/distributed/c10d/sequence_num.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9876850Z copying torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9878470Z copying torch/include/torch/csrc/distributed/c10d/SymmetricMemory.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9881680Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9883370Z copying torch/include/torch/csrc/distributed/c10d/Backend.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9892540Z copying torch/include/torch/csrc/distributed/c10d/Utils.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9894220Z copying torch/include/torch/csrc/distributed/c10d/Types.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9895780Z copying torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9899730Z copying torch/include/torch/csrc/distributed/c10d/intra_node_comm.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9901350Z copying torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9902820Z copying torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory.hpp -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:54.9905880Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9906390Z copying torch/include/torch/csrc/distributed/rpc/utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9910100Z copying torch/include/torch/csrc/distributed/rpc/rref_context.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9913690Z copying torch/include/torch/csrc/distributed/rpc/request_callback_impl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9915270Z copying torch/include/torch/csrc/distributed/rpc/python_resp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9919910Z copying torch/include/torch/csrc/distributed/rpc/rref_impl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9923830Z copying torch/include/torch/csrc/distributed/rpc/request_callback.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9927080Z copying torch/include/torch/csrc/distributed/rpc/types.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9929640Z copying torch/include/torch/csrc/distributed/rpc/rref_proto.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9932160Z copying torch/include/torch/csrc/distributed/rpc/py_rref.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9937850Z copying torch/include/torch/csrc/distributed/rpc/rpc_agent.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9939520Z copying torch/include/torch/csrc/distributed/rpc/python_functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9942720Z copying torch/include/torch/csrc/distributed/rpc/message.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9946010Z copying torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9949110Z copying torch/include/torch/csrc/distributed/rpc/python_remote_call.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9953530Z copying torch/include/torch/csrc/distributed/rpc/python_call.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9957250Z copying torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9960650Z copying torch/include/torch/csrc/distributed/rpc/script_remote_call.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9964770Z copying torch/include/torch/csrc/distributed/rpc/script_resp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9970990Z copying torch/include/torch/csrc/distributed/rpc/rpc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9973430Z copying torch/include/torch/csrc/distributed/rpc/rpc_command_base.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9974840Z copying torch/include/torch/csrc/distributed/rpc/script_call.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9979040Z copying torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9980920Z copying torch/include/torch/csrc/distributed/rpc/torchscript_functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9984950Z copying torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9986420Z copying torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9992400Z copying torch/include/torch/csrc/distributed/rpc/agent_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:54.9995380Z copying torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:55.0162940Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd 2024-06-26T05:42:55.0163290Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/context 2024-06-26T05:42:55.0164060Z copying torch/include/torch/csrc/distributed/autograd/context/container.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/context 2024-06-26T05:42:55.0165720Z copying torch/include/torch/csrc/distributed/autograd/context/context.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/context 2024-06-26T05:42:55.0167020Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/functions 2024-06-26T05:42:55.0167720Z copying torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/functions 2024-06-26T05:42:55.0168860Z copying torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/functions 2024-06-26T05:42:55.0170250Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/rpc_messages 2024-06-26T05:42:55.0170980Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/rpc_messages 2024-06-26T05:42:55.0172670Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/rpc_messages 2024-06-26T05:42:55.0173610Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/rpc_messages 2024-06-26T05:42:55.0175170Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/rpc_messages 2024-06-26T05:42:55.0176180Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/rpc_messages 2024-06-26T05:42:55.0178050Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/rpc_messages 2024-06-26T05:42:55.0179010Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/rpc_messages 2024-06-26T05:42:55.0180600Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/rpc_messages 2024-06-26T05:42:55.0181700Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/rpc_messages 2024-06-26T05:42:55.0183320Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/rpc_messages 2024-06-26T05:42:55.0184490Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo 2024-06-26T05:42:55.0184970Z copying torch/include/torch/csrc/dynamo/cache_entry.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo 2024-06-26T05:42:55.0186280Z copying torch/include/torch/csrc/dynamo/utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo 2024-06-26T05:42:55.0187620Z copying torch/include/torch/csrc/dynamo/cpython_defs.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo 2024-06-26T05:42:55.0188880Z copying torch/include/torch/csrc/dynamo/cpp_shim.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo 2024-06-26T05:42:55.0190290Z copying torch/include/torch/csrc/dynamo/extra_state.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo 2024-06-26T05:42:55.0191640Z copying torch/include/torch/csrc/dynamo/compiled_autograd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo 2024-06-26T05:42:55.0192970Z copying torch/include/torch/csrc/dynamo/eval_frame.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo 2024-06-26T05:42:55.0194330Z copying torch/include/torch/csrc/dynamo/debug_macros.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo 2024-06-26T05:42:55.0195500Z copying torch/include/torch/csrc/dynamo/python_compiled_autograd.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo 2024-06-26T05:42:55.0197300Z copying torch/include/torch/csrc/dynamo/init.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo 2024-06-26T05:42:55.0197990Z copying torch/include/torch/csrc/dynamo/guards.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo 2024-06-26T05:42:55.0199570Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor 2024-06-26T05:42:55.0200110Z copying torch/include/torch/csrc/inductor/inductor_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor 2024-06-26T05:42:55.0201450Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runner 2024-06-26T05:42:55.0201990Z copying torch/include/torch/csrc/inductor/aoti_runner/pybind.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runner 2024-06-26T05:42:55.0203360Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runner 2024-06-26T05:42:55.0204950Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runner 2024-06-26T05:42:55.0206560Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runner 2024-06-26T05:42:55.0207720Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:55.0208270Z copying torch/include/torch/csrc/inductor/aoti_runtime/utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:55.0209690Z copying torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:55.0211180Z copying torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:55.0212130Z copying torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:55.0213860Z copying torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:55.0215300Z copying torch/include/torch/csrc/inductor/aoti_runtime/interface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:55.0216880Z copying torch/include/torch/csrc/inductor/aoti_runtime/model.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:55.0217840Z copying torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:55.0219470Z copying torch/include/torch/csrc/inductor/aoti_runtime/model_container.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:55.0221000Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_torch 2024-06-26T05:42:55.0221560Z copying torch/include/torch/csrc/inductor/aoti_torch/utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_torch 2024-06-26T05:42:55.0222970Z copying torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_torch 2024-06-26T05:42:55.0224390Z copying torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_torch 2024-06-26T05:42:55.0225820Z copying torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_torch 2024-06-26T05:42:55.0227160Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_torch/c 2024-06-26T05:42:55.0227700Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_torch/c 2024-06-26T05:42:55.0229490Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_torch/generated 2024-06-26T05:42:55.0230110Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_torch/generated 2024-06-26T05:42:55.0231890Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_torch/generated 2024-06-26T05:42:55.0233040Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit 2024-06-26T05:42:55.0233460Z copying torch/include/torch/csrc/jit/jit_opt_limit.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit 2024-06-26T05:42:55.0235020Z copying torch/include/torch/csrc/jit/jit_log.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit 2024-06-26T05:42:55.0236480Z copying torch/include/torch/csrc/jit/resource_guard.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit 2024-06-26T05:42:55.0237730Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:55.0238270Z copying torch/include/torch/csrc/jit/backends/backend_debug_handler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:55.0239990Z copying torch/include/torch/csrc/jit/backends/backend_interface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:55.0240890Z copying torch/include/torch/csrc/jit/backends/backend.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:55.0242470Z copying torch/include/torch/csrc/jit/backends/backend_exception.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:55.0243870Z copying torch/include/torch/csrc/jit/backends/backend_debug_info.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:55.0248780Z copying torch/include/torch/csrc/jit/backends/backend_resolver.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:55.0249460Z copying torch/include/torch/csrc/jit/backends/backend_preprocess.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:55.0249980Z copying torch/include/torch/csrc/jit/backends/backend_detail.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:55.0250540Z copying torch/include/torch/csrc/jit/backends/backend_init.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:55.0250800Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0251290Z copying torch/include/torch/csrc/jit/passes/remove_expands.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0252750Z copying torch/include/torch/csrc/jit/passes/restore_mutation.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0254230Z copying torch/include/torch/csrc/jit/passes/peephole_list_idioms.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0255180Z copying torch/include/torch/csrc/jit/passes/subgraph_rewrite.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0256600Z copying torch/include/torch/csrc/jit/passes/fuse_relu.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0258020Z copying torch/include/torch/csrc/jit/passes/guard_elimination.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0259450Z copying torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0260360Z copying torch/include/torch/csrc/jit/passes/freeze_module.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0261940Z copying torch/include/torch/csrc/jit/passes/clear_undefinedness.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0263330Z copying torch/include/torch/csrc/jit/passes/dtype_analysis.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0264690Z copying torch/include/torch/csrc/jit/passes/peephole.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0265540Z copying torch/include/torch/csrc/jit/passes/remove_dropout.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0267300Z copying torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0268410Z copying torch/include/torch/csrc/jit/passes/value_refinement_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0269930Z copying torch/include/torch/csrc/jit/passes/metal_rewrite.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0271370Z copying torch/include/torch/csrc/jit/passes/liveness.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0272740Z copying torch/include/torch/csrc/jit/passes/remove_mutation.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0274150Z copying torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0275080Z copying torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0276640Z copying torch/include/torch/csrc/jit/passes/batch_mm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0278100Z copying torch/include/torch/csrc/jit/passes/frozen_concat_linear.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0279520Z copying torch/include/torch/csrc/jit/passes/constant_pooling.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0280440Z copying torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0282060Z copying torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0292130Z copying torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0293060Z copying torch/include/torch/csrc/jit/passes/fuse_linear.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0294740Z copying torch/include/torch/csrc/jit/passes/annotate_warns.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0295880Z copying torch/include/torch/csrc/jit/passes/specialize_autogradzero.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0298610Z copying torch/include/torch/csrc/jit/passes/frozen_linear_folding.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0299870Z copying torch/include/torch/csrc/jit/passes/prepack_folding.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0301310Z copying torch/include/torch/csrc/jit/passes/frozen_conv_folding.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0302260Z copying torch/include/torch/csrc/jit/passes/constant_propagation.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0303970Z copying torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0305370Z copying torch/include/torch/csrc/jit/passes/insert_guards.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0308610Z copying torch/include/torch/csrc/jit/passes/variadic_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0310350Z copying torch/include/torch/csrc/jit/passes/refine_tuple_types.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0311700Z copying torch/include/torch/csrc/jit/passes/inliner.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0314660Z copying torch/include/torch/csrc/jit/passes/lower_grad_of.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0317530Z copying torch/include/torch/csrc/jit/passes/normalize_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0320950Z copying torch/include/torch/csrc/jit/passes/device_type_analysis.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0324080Z copying torch/include/torch/csrc/jit/passes/vulkan_rewrite.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0329880Z copying torch/include/torch/csrc/jit/passes/erase_number_types.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0333050Z copying torch/include/torch/csrc/jit/passes/integer_value_refinement.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0336860Z copying torch/include/torch/csrc/jit/passes/fold_linear_bn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0338550Z copying torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0342980Z copying torch/include/torch/csrc/jit/passes/graph_fuser.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0345530Z copying torch/include/torch/csrc/jit/passes/fold_conv_bn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0350320Z copying torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0352860Z copying torch/include/torch/csrc/jit/passes/inline_forked_closures.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0355220Z copying torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0359460Z copying torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0362450Z copying torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0363980Z copying torch/include/torch/csrc/jit/passes/add_if_then_else.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0365790Z copying torch/include/torch/csrc/jit/passes/decompose_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0369130Z copying torch/include/torch/csrc/jit/passes/peephole_non_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0371200Z copying torch/include/torch/csrc/jit/passes/remove_inplace_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0376160Z copying torch/include/torch/csrc/jit/passes/inline_fork_wait.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0379860Z copying torch/include/torch/csrc/jit/passes/check_strict_fusion.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0382660Z copying torch/include/torch/csrc/jit/passes/concat_opt.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0384710Z copying torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0387710Z copying torch/include/torch/csrc/jit/passes/eliminate_no_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0390570Z copying torch/include/torch/csrc/jit/passes/requires_grad_analysis.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0396180Z copying torch/include/torch/csrc/jit/passes/dead_code_elimination.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0400590Z copying torch/include/torch/csrc/jit/passes/clear_profiling.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0402510Z copying torch/include/torch/csrc/jit/passes/create_functional_graphs.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0405960Z copying torch/include/torch/csrc/jit/passes/bailout_graph.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0408580Z copying torch/include/torch/csrc/jit/passes/lower_tuples.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0416030Z copying torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0418460Z copying torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0423600Z copying torch/include/torch/csrc/jit/passes/canonicalize.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0424680Z copying torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0426270Z copying torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0434560Z copying torch/include/torch/csrc/jit/passes/loop_unrolling.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0436000Z copying torch/include/torch/csrc/jit/passes/shape_analysis.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0439750Z copying torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0442150Z copying torch/include/torch/csrc/jit/passes/remove_exceptions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0444340Z copying torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0445750Z copying torch/include/torch/csrc/jit/passes/inplace_check.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0448540Z copying torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0452800Z copying torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0458510Z copying torch/include/torch/csrc/jit/passes/pass_manager.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0460460Z copying torch/include/torch/csrc/jit/passes/onnx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0462990Z copying torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0468910Z copying torch/include/torch/csrc/jit/passes/lift_closures.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0470910Z copying torch/include/torch/csrc/jit/passes/autocast.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0472360Z copying torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0477050Z copying torch/include/torch/csrc/jit/passes/lower_graph.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:55.0480000Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:55.0480630Z copying torch/include/torch/csrc/jit/passes/quantization/helper.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:55.0482580Z copying torch/include/torch/csrc/jit/passes/quantization/quantization_type.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:55.0484140Z copying torch/include/torch/csrc/jit/passes/quantization/insert_observers.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:55.0490540Z copying torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:55.0495960Z copying torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:55.0499690Z copying torch/include/torch/csrc/jit/passes/quantization/finalize.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:55.0500720Z copying torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:55.0502370Z copying torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:55.0507850Z copying torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:55.0511650Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/utils 2024-06-26T05:42:55.0512230Z copying torch/include/torch/csrc/jit/passes/utils/optimization_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/utils 2024-06-26T05:42:55.0513750Z copying torch/include/torch/csrc/jit/passes/utils/memory_dag.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/utils 2024-06-26T05:42:55.0515650Z copying torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/utils 2024-06-26T05:42:55.0518220Z copying torch/include/torch/csrc/jit/passes/utils/op_registry.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/utils 2024-06-26T05:42:55.0523030Z copying torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/utils 2024-06-26T05:42:55.0524440Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0524980Z copying torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0528950Z copying torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0530670Z copying torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0536350Z copying torch/include/torch/csrc/jit/runtime/operator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0538340Z copying torch/include/torch/csrc/jit/runtime/script_profile.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0542900Z copying torch/include/torch/csrc/jit/runtime/interpreter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0544530Z copying torch/include/torch/csrc/jit/runtime/register_ops_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0549820Z copying torch/include/torch/csrc/jit/runtime/jit_exception.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0552440Z copying torch/include/torch/csrc/jit/runtime/exception_message.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0556460Z copying torch/include/torch/csrc/jit/runtime/argument_spec.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0560050Z copying torch/include/torch/csrc/jit/runtime/shape_function_registry.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0572180Z copying torch/include/torch/csrc/jit/runtime/logging.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0574780Z copying torch/include/torch/csrc/jit/runtime/jit_trace.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0579860Z copying torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0581730Z copying torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0583300Z copying torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0584720Z copying torch/include/torch/csrc/jit/runtime/custom_operator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0590290Z copying torch/include/torch/csrc/jit/runtime/vararg_functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0595610Z copying torch/include/torch/csrc/jit/runtime/graph_iterator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0597210Z copying torch/include/torch/csrc/jit/runtime/symbolic_script.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0599180Z copying torch/include/torch/csrc/jit/runtime/variable_tensor_list.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0602800Z copying torch/include/torch/csrc/jit/runtime/decomposition_registry.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0604780Z copying torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0607730Z copying torch/include/torch/csrc/jit/runtime/autodiff.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0610770Z copying torch/include/torch/csrc/jit/runtime/print_handler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0615670Z copying torch/include/torch/csrc/jit/runtime/profiling_record.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0617310Z copying torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0623550Z copying torch/include/torch/csrc/jit/runtime/graph_executor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0625450Z copying torch/include/torch/csrc/jit/runtime/operator_options.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0629420Z copying torch/include/torch/csrc/jit/runtime/instruction.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0632130Z copying torch/include/torch/csrc/jit/runtime/graph_executor_impl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:55.0635830Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:55.0636420Z copying torch/include/torch/csrc/jit/ir/named_value.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:55.0638260Z copying torch/include/torch/csrc/jit/ir/irparser.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:55.0641600Z copying torch/include/torch/csrc/jit/ir/ir.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:55.0646980Z copying torch/include/torch/csrc/jit/ir/graph_node_list.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:55.0652120Z copying torch/include/torch/csrc/jit/ir/ir_views.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:55.0653610Z copying torch/include/torch/csrc/jit/ir/alias_analysis.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:55.0658300Z copying torch/include/torch/csrc/jit/ir/attributes.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:55.0660030Z copying torch/include/torch/csrc/jit/ir/type_hashing.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:55.0662320Z copying torch/include/torch/csrc/jit/ir/constants.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:55.0666060Z copying torch/include/torch/csrc/jit/ir/subgraph_matcher.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:55.0690220Z copying torch/include/torch/csrc/jit/ir/scope.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:55.0691810Z copying torch/include/torch/csrc/jit/ir/graph_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:55.0693140Z copying torch/include/torch/csrc/jit/ir/node_hashing.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:55.0697590Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0698090Z copying torch/include/torch/csrc/jit/frontend/error_report.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0699730Z copying torch/include/torch/csrc/jit/frontend/source_range.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0701320Z copying torch/include/torch/csrc/jit/frontend/edit_distance.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0703020Z copying torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0708050Z copying torch/include/torch/csrc/jit/frontend/schema_matching.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0708760Z copying torch/include/torch/csrc/jit/frontend/function_schema_parser.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0709310Z copying torch/include/torch/csrc/jit/frontend/tree_views.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0709800Z copying torch/include/torch/csrc/jit/frontend/ir_emitter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0710270Z copying torch/include/torch/csrc/jit/frontend/parser.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0710970Z copying torch/include/torch/csrc/jit/frontend/strtod.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0712420Z copying torch/include/torch/csrc/jit/frontend/tree.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0714750Z copying torch/include/torch/csrc/jit/frontend/concrete_module_type.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0719580Z copying torch/include/torch/csrc/jit/frontend/builtin_functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0721360Z copying torch/include/torch/csrc/jit/frontend/exit_transforms.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0727240Z copying torch/include/torch/csrc/jit/frontend/parse_string_literal.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0730530Z copying torch/include/torch/csrc/jit/frontend/sugared_value.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0735330Z copying torch/include/torch/csrc/jit/frontend/inline_loop_condition.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0737750Z copying torch/include/torch/csrc/jit/frontend/name_mangler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0739090Z copying torch/include/torch/csrc/jit/frontend/tracer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0742310Z copying torch/include/torch/csrc/jit/frontend/resolver.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0748510Z copying torch/include/torch/csrc/jit/frontend/script_type_parser.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0751900Z copying torch/include/torch/csrc/jit/frontend/schema_type_parser.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0753700Z copying torch/include/torch/csrc/jit/frontend/lexer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0755550Z copying torch/include/torch/csrc/jit/frontend/versioned_symbols.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0759660Z copying torch/include/torch/csrc/jit/frontend/convert_to_ssa.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0761240Z copying torch/include/torch/csrc/jit/frontend/source_ref.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0762600Z copying torch/include/torch/csrc/jit/frontend/mini_environment.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0765380Z copying torch/include/torch/csrc/jit/frontend/parser_constants.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:55.0767530Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/api 2024-06-26T05:42:55.0768000Z copying torch/include/torch/csrc/jit/api/function_impl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/api 2024-06-26T05:42:55.0773500Z copying torch/include/torch/csrc/jit/api/method.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/api 2024-06-26T05:42:55.0775170Z copying torch/include/torch/csrc/jit/api/compilation_unit.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/api 2024-06-26T05:42:55.0779210Z copying torch/include/torch/csrc/jit/api/object.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/api 2024-06-26T05:42:55.0781830Z copying torch/include/torch/csrc/jit/api/module.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/api 2024-06-26T05:42:55.0786090Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0786640Z copying torch/include/torch/csrc/jit/serialization/import_read.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0789690Z copying torch/include/torch/csrc/jit/serialization/export_bytecode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0792800Z copying torch/include/torch/csrc/jit/serialization/import_source.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0794230Z copying torch/include/torch/csrc/jit/serialization/export.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0799150Z copying torch/include/torch/csrc/jit/serialization/import_export_helpers.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0802540Z copying torch/include/torch/csrc/jit/serialization/type_name_uniquer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0809160Z copying torch/include/torch/csrc/jit/serialization/pickler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0811130Z copying torch/include/torch/csrc/jit/serialization/storage_context.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0814120Z copying torch/include/torch/csrc/jit/serialization/python_print.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0815770Z copying torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0818390Z copying torch/include/torch/csrc/jit/serialization/import_export_functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0821710Z copying torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0827700Z copying torch/include/torch/csrc/jit/serialization/pickle.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0831520Z copying torch/include/torch/csrc/jit/serialization/import_export_constants.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0833270Z copying torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0836230Z copying torch/include/torch/csrc/jit/serialization/import.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0840060Z copying torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0844810Z copying torch/include/torch/csrc/jit/serialization/unpickler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0846320Z copying torch/include/torch/csrc/jit/serialization/source_range_serialization.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0849810Z copying torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0851540Z copying torch/include/torch/csrc/jit/serialization/onnx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:55.0857480Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0857950Z copying torch/include/torch/csrc/jit/python/pybind.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0859480Z copying torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0864150Z copying torch/include/torch/csrc/jit/python/python_ir.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0865780Z copying torch/include/torch/csrc/jit/python/script_init.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0868530Z copying torch/include/torch/csrc/jit/python/python_tree_views.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0871340Z copying torch/include/torch/csrc/jit/python/python_list.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0875310Z copying torch/include/torch/csrc/jit/python/python_ivalue.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0878050Z copying torch/include/torch/csrc/jit/python/python_dict.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0881080Z copying torch/include/torch/csrc/jit/python/python_custom_class.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0885890Z copying torch/include/torch/csrc/jit/python/update_graph_executor_opt.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0888710Z copying torch/include/torch/csrc/jit/python/python_tracer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0893560Z copying torch/include/torch/csrc/jit/python/pybind_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0897460Z copying torch/include/torch/csrc/jit/python/init.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0898980Z copying torch/include/torch/csrc/jit/python/python_sugared_value.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0902310Z copying torch/include/torch/csrc/jit/python/python_arg_flatten.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0906050Z copying torch/include/torch/csrc/jit/python/module_python.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python 2024-06-26T05:42:55.0909240Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0909800Z copying torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0915290Z copying torch/include/torch/csrc/jit/mobile/parse_operators.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0923580Z copying torch/include/torch/csrc/jit/mobile/observer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0929170Z copying torch/include/torch/csrc/jit/mobile/upgrader_mobile.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0931250Z copying torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0932770Z copying torch/include/torch/csrc/jit/mobile/quantization.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0934480Z copying torch/include/torch/csrc/jit/mobile/profiler_edge.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0938780Z copying torch/include/torch/csrc/jit/mobile/code.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0940180Z copying torch/include/torch/csrc/jit/mobile/interpreter.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0942460Z copying torch/include/torch/csrc/jit/mobile/frame.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0943840Z copying torch/include/torch/csrc/jit/mobile/method.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0946580Z copying torch/include/torch/csrc/jit/mobile/debug_info.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0950350Z copying torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0953750Z copying torch/include/torch/csrc/jit/mobile/prim_ops_registery.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0958690Z copying torch/include/torch/csrc/jit/mobile/parse_bytecode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0962830Z copying torch/include/torch/csrc/jit/mobile/import_data.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0965670Z copying torch/include/torch/csrc/jit/mobile/import_export_common.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0968270Z copying torch/include/torch/csrc/jit/mobile/type_parser.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0970640Z copying torch/include/torch/csrc/jit/mobile/import.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0976550Z copying torch/include/torch/csrc/jit/mobile/module.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0979650Z copying torch/include/torch/csrc/jit/mobile/function.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0984900Z copying torch/include/torch/csrc/jit/mobile/file_format.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:55.0987330Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/testing 2024-06-26T05:42:55.0987820Z copying torch/include/torch/csrc/jit/testing/file_check.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/testing 2024-06-26T05:42:55.0989510Z copying torch/include/torch/csrc/jit/testing/hooks_for_testing.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/testing 2024-06-26T05:42:55.0992640Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.0993200Z copying torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.0995840Z copying torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.0997680Z copying torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1001240Z copying torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1008110Z copying torch/include/torch/csrc/jit/tensorexpr/lowerings.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1009960Z copying torch/include/torch/csrc/jit/tensorexpr/graph_opt.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1014360Z copying torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1015780Z copying torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1019170Z copying torch/include/torch/csrc/jit/tensorexpr/types.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1021270Z copying torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1024910Z copying torch/include/torch/csrc/jit/tensorexpr/ir.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1026820Z copying torch/include/torch/csrc/jit/tensorexpr/exceptions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1031610Z copying torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1035410Z copying torch/include/torch/csrc/jit/tensorexpr/hash_provider.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1037840Z copying torch/include/torch/csrc/jit/tensorexpr/ir_printer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1045290Z copying torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1048710Z copying torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1054070Z copying torch/include/torch/csrc/jit/tensorexpr/expr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1055880Z copying torch/include/torch/csrc/jit/tensorexpr/cuda_random.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1057250Z copying torch/include/torch/csrc/jit/tensorexpr/codegen.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1059050Z copying torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1062550Z copying torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1067230Z copying torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1071390Z copying torch/include/torch/csrc/jit/tensorexpr/eval.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1072910Z copying torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1076940Z copying torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1080690Z copying torch/include/torch/csrc/jit/tensorexpr/block_codegen.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1083320Z copying torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1085020Z copying torch/include/torch/csrc/jit/tensorexpr/kernel.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1091300Z copying torch/include/torch/csrc/jit/tensorexpr/loopnest.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1096420Z copying torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1098000Z copying torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1098820Z copying torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1103350Z copying torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1105740Z copying torch/include/torch/csrc/jit/tensorexpr/external_functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1111610Z copying torch/include/torch/csrc/jit/tensorexpr/stmt.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1116540Z copying torch/include/torch/csrc/jit/tensorexpr/half_support.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1118310Z copying torch/include/torch/csrc/jit/tensorexpr/registerizer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1123750Z copying torch/include/torch/csrc/jit/tensorexpr/reduction.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1125010Z copying torch/include/torch/csrc/jit/tensorexpr/tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1126710Z copying torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1128070Z copying torch/include/torch/csrc/jit/tensorexpr/analysis.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:55.1129290Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:55.1129890Z copying torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:55.1131230Z copying torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:55.1135820Z copying torch/include/torch/csrc/jit/tensorexpr/operators/operators.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:55.1138750Z copying torch/include/torch/csrc/jit/tensorexpr/operators/misc.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:55.1141230Z copying torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:55.1142310Z copying torch/include/torch/csrc/jit/tensorexpr/operators/norm.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:55.1144050Z copying torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:55.1147500Z copying torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:55.1150630Z copying torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:55.1154390Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/codegen 2024-06-26T05:42:55.1154700Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/codegen/cuda 2024-06-26T05:42:55.1155280Z copying torch/include/torch/csrc/jit/codegen/cuda/interface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/codegen/cuda 2024-06-26T05:42:55.1160810Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/onnx 2024-06-26T05:42:55.1161230Z copying torch/include/torch/csrc/onnx/back_compat.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/onnx 2024-06-26T05:42:55.1162730Z copying torch/include/torch/csrc/onnx/init.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/onnx 2024-06-26T05:42:55.1186910Z copying torch/include/torch/csrc/onnx/onnx.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/onnx 2024-06-26T05:42:55.1188140Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler 2024-06-26T05:42:55.1188880Z copying torch/include/torch/csrc/profiler/combined_traceback.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler 2024-06-26T05:42:55.1202610Z copying torch/include/torch/csrc/profiler/events.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler 2024-06-26T05:42:55.1242710Z copying torch/include/torch/csrc/profiler/kineto_shim.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler 2024-06-26T05:42:55.1247780Z copying torch/include/torch/csrc/profiler/api.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler 2024-06-26T05:42:55.1248370Z copying torch/include/torch/csrc/profiler/util.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler 2024-06-26T05:42:55.1248830Z copying torch/include/torch/csrc/profiler/containers.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler 2024-06-26T05:42:55.1249490Z copying torch/include/torch/csrc/profiler/collection.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler 2024-06-26T05:42:55.1249930Z copying torch/include/torch/csrc/profiler/perf.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler 2024-06-26T05:42:55.1251010Z copying torch/include/torch/csrc/profiler/data_flow.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler 2024-06-26T05:42:55.1257530Z copying torch/include/torch/csrc/profiler/perf-inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler 2024-06-26T05:42:55.1258740Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/orchestration 2024-06-26T05:42:55.1259360Z copying torch/include/torch/csrc/profiler/orchestration/vulkan.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/orchestration 2024-06-26T05:42:55.1260530Z copying torch/include/torch/csrc/profiler/orchestration/observer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/orchestration 2024-06-26T05:42:55.1262200Z copying torch/include/torch/csrc/profiler/orchestration/python_tracer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/orchestration 2024-06-26T05:42:55.1263360Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/standalone 2024-06-26T05:42:55.1263960Z copying torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/standalone 2024-06-26T05:42:55.1284730Z copying torch/include/torch/csrc/profiler/standalone/nvtx_observer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/standalone 2024-06-26T05:42:55.1285840Z copying torch/include/torch/csrc/profiler/standalone/itt_observer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/standalone 2024-06-26T05:42:55.1287460Z copying torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/standalone 2024-06-26T05:42:55.1288660Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/stubs 2024-06-26T05:42:55.1289150Z copying torch/include/torch/csrc/profiler/stubs/base.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/stubs 2024-06-26T05:42:55.1290540Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1291070Z copying torch/include/torch/csrc/profiler/unwind/unwinder.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1292520Z copying torch/include/torch/csrc/profiler/unwind/dwarf_enums.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1293890Z copying torch/include/torch/csrc/profiler/unwind/unwind.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1294860Z copying torch/include/torch/csrc/profiler/unwind/sections.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1296470Z copying torch/include/torch/csrc/profiler/unwind/unwind_error.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1297830Z copying torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1299220Z copying torch/include/torch/csrc/profiler/unwind/debug_info.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1300650Z copying torch/include/torch/csrc/profiler/unwind/action.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1301630Z copying torch/include/torch/csrc/profiler/unwind/mem_file.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1303140Z copying torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1304210Z copying torch/include/torch/csrc/profiler/unwind/fde.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1305920Z copying torch/include/torch/csrc/profiler/unwind/communicate.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1307280Z copying torch/include/torch/csrc/profiler/unwind/lexer.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1308690Z copying torch/include/torch/csrc/profiler/unwind/line_number_program.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1310430Z copying torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1311400Z copying torch/include/torch/csrc/profiler/unwind/range_table.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:55.1312680Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/python 2024-06-26T05:42:55.1313330Z copying torch/include/torch/csrc/profiler/python/pybind.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/python 2024-06-26T05:42:55.1315260Z copying torch/include/torch/csrc/profiler/python/combined_traceback.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/python 2024-06-26T05:42:55.1316010Z copying torch/include/torch/csrc/profiler/python/init.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/python 2024-06-26T05:42:55.1317510Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1317940Z copying torch/include/torch/csrc/utils/object_ptr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1319610Z copying torch/include/torch/csrc/utils/tensor_numpy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1320890Z copying torch/include/torch/csrc/utils/tensor_dtypes.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1322040Z copying torch/include/torch/csrc/utils/python_tuples.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1323410Z copying torch/include/torch/csrc/utils/nested.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1324760Z copying torch/include/torch/csrc/utils/python_raii.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1326310Z copying torch/include/torch/csrc/utils/python_numbers.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1327890Z copying torch/include/torch/csrc/utils/python_scalars.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1329170Z copying torch/include/torch/csrc/utils/pybind.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1330920Z copying torch/include/torch/csrc/utils/tensor_types.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1332360Z copying torch/include/torch/csrc/utils/tensor_memoryformats.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1333660Z copying torch/include/torch/csrc/utils/python_arg_parser.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1335260Z copying torch/include/torch/csrc/utils/python_torch_function_mode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1336580Z copying torch/include/torch/csrc/utils/schema_info.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1337980Z copying torch/include/torch/csrc/utils/tensor_new.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1339300Z copying torch/include/torch/csrc/utils/tensor_qschemes.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1342410Z copying torch/include/torch/csrc/utils/verbose.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1345130Z copying torch/include/torch/csrc/utils/python_dispatch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1349480Z copying torch/include/torch/csrc/utils/tensor_list.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1351900Z copying torch/include/torch/csrc/utils/invalid_arguments.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1356270Z copying torch/include/torch/csrc/utils/pythoncapi_compat.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1358410Z copying torch/include/torch/csrc/utils/cpp_stacktraces.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1365440Z copying torch/include/torch/csrc/utils/device_lazy_init.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1366730Z copying torch/include/torch/csrc/utils/python_strings.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1371670Z copying torch/include/torch/csrc/utils/python_symnode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1372990Z copying torch/include/torch/csrc/utils/byte_order.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1374500Z copying torch/include/torch/csrc/utils/pycfunction_helpers.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1379600Z copying torch/include/torch/csrc/utils/cuda_enabled.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1381170Z copying torch/include/torch/csrc/utils/numpy_stub.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1386370Z copying torch/include/torch/csrc/utils/out_types.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1388710Z copying torch/include/torch/csrc/utils/tensor_layouts.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1392520Z copying torch/include/torch/csrc/utils/structseq.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1395580Z copying torch/include/torch/csrc/utils/throughput_benchmark.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1398970Z copying torch/include/torch/csrc/utils/disable_torch_function.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1402310Z copying torch/include/torch/csrc/utils/pyobject_preservation.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1406230Z copying torch/include/torch/csrc/utils/throughput_benchmark-inl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1407830Z copying torch/include/torch/csrc/utils/tensor_flatten.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1412200Z copying torch/include/torch/csrc/utils/torch_dispatch_mode.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1415050Z copying torch/include/torch/csrc/utils/tensor_apply.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1418370Z copying torch/include/torch/csrc/utils/init.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1421260Z copying torch/include/torch/csrc/utils/python_compat.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1424740Z copying torch/include/torch/csrc/utils/six.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1428490Z copying torch/include/torch/csrc/utils/python_stub.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1430450Z copying torch/include/torch/csrc/utils/variadic.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils 2024-06-26T05:42:55.1437770Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/tensor 2024-06-26T05:42:55.1438220Z copying torch/include/torch/csrc/tensor/python_tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/tensor 2024-06-26T05:42:55.1439760Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy 2024-06-26T05:42:55.1440030Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/backend 2024-06-26T05:42:55.1440740Z copying torch/include/torch/csrc/lazy/backend/backend_interface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/backend 2024-06-26T05:42:55.1445600Z copying torch/include/torch/csrc/lazy/backend/backend_data.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/backend 2024-06-26T05:42:55.1447430Z copying torch/include/torch/csrc/lazy/backend/lowering_context.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/backend 2024-06-26T05:42:55.1452200Z copying torch/include/torch/csrc/lazy/backend/backend_device.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/backend 2024-06-26T05:42:55.1453360Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1453830Z copying torch/include/torch/csrc/lazy/core/debug_util.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1456310Z copying torch/include/torch/csrc/lazy/core/tensor_impl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1459630Z copying torch/include/torch/csrc/lazy/core/config.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1465370Z copying torch/include/torch/csrc/lazy/core/multi_wait.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1466670Z copying torch/include/torch/csrc/lazy/core/ir.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1469110Z copying torch/include/torch/csrc/lazy/core/permutation_util.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1473750Z copying torch/include/torch/csrc/lazy/core/lazy_graph_executor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1475380Z copying torch/include/torch/csrc/lazy/core/cache.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1479340Z copying torch/include/torch/csrc/lazy/core/tensor_util.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1483780Z copying torch/include/torch/csrc/lazy/core/shape.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1485750Z copying torch/include/torch/csrc/lazy/core/thread_pool.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1488580Z copying torch/include/torch/csrc/lazy/core/unique.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1492610Z copying torch/include/torch/csrc/lazy/core/shape_inference.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1494890Z copying torch/include/torch/csrc/lazy/core/util.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1499790Z copying torch/include/torch/csrc/lazy/core/ir_util.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1501500Z copying torch/include/torch/csrc/lazy/core/metrics.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1506500Z copying torch/include/torch/csrc/lazy/core/ir_dump_util.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1508290Z copying torch/include/torch/csrc/lazy/core/dynamic_ir.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1512370Z copying torch/include/torch/csrc/lazy/core/ir_builder.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1514560Z copying torch/include/torch/csrc/lazy/core/helpers.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1517560Z copying torch/include/torch/csrc/lazy/core/trie.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1523620Z copying torch/include/torch/csrc/lazy/core/tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1525560Z copying torch/include/torch/csrc/lazy/core/hash.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1530090Z copying torch/include/torch/csrc/lazy/core/ir_metadata.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:55.1531380Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/internal_ops 2024-06-26T05:42:55.1531950Z copying torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/internal_ops 2024-06-26T05:42:55.1536950Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/ops 2024-06-26T05:42:55.1537490Z copying torch/include/torch/csrc/lazy/core/ops/utils.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/ops 2024-06-26T05:42:55.1539050Z copying torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/ops 2024-06-26T05:42:55.1544530Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/python 2024-06-26T05:42:55.1545020Z copying torch/include/torch/csrc/lazy/python/python_util.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/python 2024-06-26T05:42:55.1546520Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/ts_backend 2024-06-26T05:42:55.1547080Z copying torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/ts_backend 2024-06-26T05:42:55.1548610Z copying torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/ts_backend 2024-06-26T05:42:55.1550570Z copying torch/include/torch/csrc/lazy/ts_backend/config.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/ts_backend 2024-06-26T05:42:55.1554650Z copying torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/ts_backend 2024-06-26T05:42:55.1562560Z copying torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/ts_backend 2024-06-26T05:42:55.1564140Z copying torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/ts_backend 2024-06-26T05:42:55.1568920Z copying torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/ts_backend 2024-06-26T05:42:55.1570880Z copying torch/include/torch/csrc/lazy/ts_backend/ts_node.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/ts_backend 2024-06-26T05:42:55.1573280Z copying torch/include/torch/csrc/lazy/ts_backend/ir_builder.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/ts_backend 2024-06-26T05:42:55.1576900Z copying torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/ts_backend 2024-06-26T05:42:55.1578020Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/xpu 2024-06-26T05:42:55.1578470Z copying torch/include/torch/csrc/xpu/Event.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/xpu 2024-06-26T05:42:55.1580390Z copying torch/include/torch/csrc/xpu/Stream.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/xpu 2024-06-26T05:42:55.1613980Z copying torch/include/torch/csrc/xpu/Module.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/xpu 2024-06-26T05:42:55.1615330Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1615860Z copying torch/include/pybind11/attr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1623720Z copying torch/include/pybind11/embed.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1625260Z copying torch/include/pybind11/numpy.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1627080Z copying torch/include/pybind11/pybind11.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1629020Z copying torch/include/pybind11/operators.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1630390Z copying torch/include/pybind11/iostream.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1632050Z copying torch/include/pybind11/gil.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1633330Z copying torch/include/pybind11/chrono.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1634750Z copying torch/include/pybind11/typing.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1636320Z copying torch/include/pybind11/stl_bind.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1637170Z copying torch/include/pybind11/buffer_info.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1638640Z copying torch/include/pybind11/options.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1639920Z copying torch/include/pybind11/functional.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1641210Z copying torch/include/pybind11/stl.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1642910Z copying torch/include/pybind11/common.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1644270Z copying torch/include/pybind11/eval.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1645440Z copying torch/include/pybind11/cast.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1647260Z copying torch/include/pybind11/type_caster_pyobject_ptr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1649420Z copying torch/include/pybind11/eigen.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1651280Z copying torch/include/pybind11/gil_safe_call_once.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1656210Z copying torch/include/pybind11/pytypes.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1656780Z copying torch/include/pybind11/complex.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11 2024-06-26T05:42:55.1658440Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/detail 2024-06-26T05:42:55.1658890Z copying torch/include/pybind11/detail/type_caster_base.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/detail 2024-06-26T05:42:55.1662180Z copying torch/include/pybind11/detail/typeid.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/detail 2024-06-26T05:42:55.1663420Z copying torch/include/pybind11/detail/descr.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/detail 2024-06-26T05:42:55.1665830Z copying torch/include/pybind11/detail/internals.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/detail 2024-06-26T05:42:55.1670450Z copying torch/include/pybind11/detail/common.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/detail 2024-06-26T05:42:55.1672090Z copying torch/include/pybind11/detail/class.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/detail 2024-06-26T05:42:55.1677210Z copying torch/include/pybind11/detail/init.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/detail 2024-06-26T05:42:55.1678670Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/eigen 2024-06-26T05:42:55.1679070Z copying torch/include/pybind11/eigen/matrix.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/eigen 2024-06-26T05:42:55.1683300Z copying torch/include/pybind11/eigen/common.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/eigen 2024-06-26T05:42:55.1685160Z copying torch/include/pybind11/eigen/tensor.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/eigen 2024-06-26T05:42:55.1688260Z copying torch/_inductor/codegen/cpp_prefix.h -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen 2024-06-26T05:42:55.1695210Z creating build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/aoti_runtime 2024-06-26T05:42:55.1695690Z copying torch/_inductor/codegen/aoti_runtime/implementation.cpp -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/aoti_runtime 2024-06-26T05:42:55.1698550Z copying torch/_inductor/codegen/aoti_runtime/interface.cpp -> build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/aoti_runtime 2024-06-26T05:42:55.1702910Z copying torch/_export/serde/schema.yaml -> build/lib.macosx-11.1-arm64-3.9/torch/_export/serde 2024-06-26T05:42:55.1704180Z creating build/lib.macosx-11.1-arm64-3.9/torch/share 2024-06-26T05:42:55.1704420Z creating build/lib.macosx-11.1-arm64-3.9/torch/share/cmake 2024-06-26T05:42:55.1704920Z creating build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/ATen 2024-06-26T05:42:55.1705630Z copying torch/share/cmake/ATen/ATenConfig.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/ATen 2024-06-26T05:42:55.1707130Z creating build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2 2024-06-26T05:42:55.1707540Z copying torch/share/cmake/Caffe2/Caffe2Config.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2 2024-06-26T05:42:55.1709140Z copying torch/share/cmake/Caffe2/FindSYCLToolkit.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2 2024-06-26T05:42:55.1713130Z copying torch/share/cmake/Caffe2/FindCUSPARSELT.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2 2024-06-26T05:42:55.1715460Z copying torch/share/cmake/Caffe2/FindCUDAToolkit.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2 2024-06-26T05:42:55.1719740Z copying torch/share/cmake/Caffe2/Caffe2Targets.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2 2024-06-26T05:42:55.1721920Z copying torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2 2024-06-26T05:42:55.1725940Z creating build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public 2024-06-26T05:42:55.1726470Z copying torch/share/cmake/Caffe2/public/LoadHIP.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public 2024-06-26T05:42:55.1728170Z copying torch/share/cmake/Caffe2/public/mkldnn.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public 2024-06-26T05:42:55.1731510Z copying torch/share/cmake/Caffe2/public/glog.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public 2024-06-26T05:42:55.1736000Z copying torch/share/cmake/Caffe2/public/utils.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public 2024-06-26T05:42:55.1739550Z copying torch/share/cmake/Caffe2/public/protobuf.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public 2024-06-26T05:42:55.1744070Z copying torch/share/cmake/Caffe2/public/mkl.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public 2024-06-26T05:42:55.1746010Z copying torch/share/cmake/Caffe2/public/gflags.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public 2024-06-26T05:42:55.1747950Z copying torch/share/cmake/Caffe2/public/cuda.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public 2024-06-26T05:42:55.1750560Z copying torch/share/cmake/Caffe2/public/xpu.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public 2024-06-26T05:42:55.1757740Z creating build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Modules_CUDA_fix 2024-06-26T05:42:55.1758280Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Modules_CUDA_fix 2024-06-26T05:42:55.1759650Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Modules_CUDA_fix 2024-06-26T05:42:55.1765110Z creating build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2024-06-26T05:42:55.1765890Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2024-06-26T05:42:55.1767870Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2024-06-26T05:42:55.1768830Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2024-06-26T05:42:55.1771520Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2024-06-26T05:42:55.1777510Z creating build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2024-06-26T05:42:55.1778260Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2024-06-26T05:42:55.1779400Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2024-06-26T05:42:55.1784590Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2024-06-26T05:42:55.1786390Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2024-06-26T05:42:55.1792870Z creating build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Torch 2024-06-26T05:42:55.1793290Z copying torch/share/cmake/Torch/TorchConfig.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Torch 2024-06-26T05:42:55.1795130Z copying torch/share/cmake/Torch/TorchConfigVersion.cmake -> build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Torch 2024-06-26T05:42:55.1796550Z copying torch/utils/benchmark/utils/timeit_template.cpp -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils 2024-06-26T05:42:55.1800200Z copying torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/valgrind_wrapper 2024-06-26T05:42:55.1802770Z copying torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/valgrind_wrapper 2024-06-26T05:42:55.1808530Z copying torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/valgrind_wrapper 2024-06-26T05:42:55.1999830Z copying torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h -> build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/valgrind_wrapper 2024-06-26T05:42:55.2001090Z copying torch/utils/model_dump/skeleton.html -> build/lib.macosx-11.1-arm64-3.9/torch/utils/model_dump 2024-06-26T05:42:55.2014570Z copying torch/utils/model_dump/code.js -> build/lib.macosx-11.1-arm64-3.9/torch/utils/model_dump 2024-06-26T05:42:55.2016130Z copying torch/utils/model_dump/preact.mjs -> build/lib.macosx-11.1-arm64-3.9/torch/utils/model_dump 2024-06-26T05:42:55.2017520Z copying torch/utils/model_dump/htm.mjs -> build/lib.macosx-11.1-arm64-3.9/torch/utils/model_dump 2024-06-26T05:42:55.2018830Z copying torch/lib/libtorch_python.dylib -> build/lib.macosx-11.1-arm64-3.9/torch/lib 2024-06-26T05:42:55.2802790Z copying torch/lib/libtorch.dylib -> build/lib.macosx-11.1-arm64-3.9/torch/lib 2024-06-26T05:42:55.2850700Z copying torch/lib/libtorch_global_deps.dylib -> build/lib.macosx-11.1-arm64-3.9/torch/lib 2024-06-26T05:42:55.2874360Z copying torch/lib/libtorch_cpu.dylib -> build/lib.macosx-11.1-arm64-3.9/torch/lib 2024-06-26T05:42:57.1960030Z copying torch/lib/libc10.dylib -> build/lib.macosx-11.1-arm64-3.9/torch/lib 2024-06-26T05:42:57.2178670Z creating build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2179320Z copying torch/include/kineto/ClientInterface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2181040Z copying torch/include/kineto/GenericTraceActivity.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2182110Z copying torch/include/kineto/IActivityProfiler.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2183830Z copying torch/include/kineto/Config.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2185660Z copying torch/include/kineto/TraceSpan.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2186700Z copying torch/include/kineto/LoggingAPI.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2188280Z copying torch/include/kineto/ITraceActivity.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2194810Z copying torch/include/kineto/ActivityProfilerInterface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2195700Z copying torch/include/kineto/ActivityTraceInterface.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2196480Z copying torch/include/kineto/output_base.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2197200Z copying torch/include/kineto/ThreadUtil.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2197940Z copying torch/include/kineto/ActivityType.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2198740Z copying torch/include/kineto/libkineto.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2199480Z copying torch/include/kineto/time_since_epoch.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2200250Z copying torch/include/kineto/ILoggerObserver.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2201010Z copying torch/include/kineto/AbstractConfig.h -> build/lib.macosx-11.1-arm64-3.9/torch/include/kineto 2024-06-26T05:42:57.2201730Z creating build/lib.macosx-11.1-arm64-3.9/torchgen/packaged 2024-06-26T05:42:57.2202270Z creating build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen 2024-06-26T05:42:57.2202790Z creating build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/native 2024-06-26T05:42:57.2203550Z copying torchgen/packaged/ATen/native/native_functions.yaml -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/native 2024-06-26T05:42:57.2208220Z copying torchgen/packaged/ATen/native/tags.yaml -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/native 2024-06-26T05:42:57.2209330Z creating build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2210190Z copying torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2211340Z copying torchgen/packaged/ATen/templates/TensorBody.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2213160Z copying torchgen/packaged/ATen/templates/UnboxingFunctions.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2214310Z copying torchgen/packaged/ATen/templates/DispatchKeyFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2215640Z copying torchgen/packaged/ATen/templates/RedispatchFunctions.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2216930Z copying torchgen/packaged/ATen/templates/Operators.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2218320Z copying torchgen/packaged/ATen/templates/NativeMetaFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2219640Z copying torchgen/packaged/ATen/templates/NativeFunction.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2220870Z copying torchgen/packaged/ATen/templates/Operator.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2222230Z copying torchgen/packaged/ATen/templates/RegistrationDeclarations.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2223560Z copying torchgen/packaged/ATen/templates/UfuncCPU.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2224830Z copying torchgen/packaged/ATen/templates/UfuncCUDA.cu -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2226250Z copying torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2227530Z copying torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2228840Z copying torchgen/packaged/ATen/templates/RedispatchFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2230160Z copying torchgen/packaged/ATen/templates/aten_interned_strings.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2231420Z copying torchgen/packaged/ATen/templates/MethodOperators.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2232830Z copying torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2234120Z copying torchgen/packaged/ATen/templates/Operators.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2235420Z copying torchgen/packaged/ATen/templates/ATenOpList.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2236740Z copying torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2238030Z copying torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2239390Z copying torchgen/packaged/ATen/templates/TensorMethods.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2240830Z copying torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2243200Z copying torchgen/packaged/ATen/templates/DispatchKeyFunction.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2244310Z copying torchgen/packaged/ATen/templates/UnboxingFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2245670Z copying torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2246810Z copying torchgen/packaged/ATen/templates/Functions.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2248190Z copying torchgen/packaged/ATen/templates/NativeFunctions.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2249560Z copying torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2250780Z copying torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2252500Z copying torchgen/packaged/ATen/templates/enum_tag.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2253560Z copying torchgen/packaged/ATen/templates/Functions.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2254810Z copying torchgen/packaged/ATen/templates/RegisterSchema.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2256130Z copying torchgen/packaged/ATen/templates/LazyNonNativeIr.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2257360Z copying torchgen/packaged/ATen/templates/Function.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2258690Z copying torchgen/packaged/ATen/templates/FunctionalInverses.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2259950Z copying torchgen/packaged/ATen/templates/NativeMetaFunction.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2261200Z copying torchgen/packaged/ATen/templates/LazyIr.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates 2024-06-26T05:42:57.2262750Z creating build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2263520Z copying torchgen/packaged/autograd/load_derivatives.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2264690Z copying torchgen/packaged/autograd/build.bzl -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2266380Z copying torchgen/packaged/autograd/gen_autograd.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2267450Z copying torchgen/packaged/autograd/gen_python_functions.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2269370Z copying torchgen/packaged/autograd/gen_autograd_functions.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2270630Z copying torchgen/packaged/autograd/gen_variable_factories.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2271920Z copying torchgen/packaged/autograd/__init__.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2272990Z copying torchgen/packaged/autograd/gen_variable_type.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2275150Z copying torchgen/packaged/autograd/README.md -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2276190Z copying torchgen/packaged/autograd/context.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2277890Z copying torchgen/packaged/autograd/gen_inplace_or_view_type.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2278990Z copying torchgen/packaged/autograd/deprecated.yaml -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2280690Z copying torchgen/packaged/autograd/BUILD.bazel -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2281620Z copying torchgen/packaged/autograd/gen_trace_type.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2283400Z copying torchgen/packaged/autograd/gen_annotated_fn_args.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2284440Z copying torchgen/packaged/autograd/derivatives.yaml -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2286890Z copying torchgen/packaged/autograd/gen_view_funcs.py -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd 2024-06-26T05:42:57.2288430Z creating build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2289300Z copying torchgen/packaged/autograd/templates/python_return_types.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2290380Z copying torchgen/packaged/autograd/templates/python_enum_tag.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2291550Z copying torchgen/packaged/autograd/templates/python_nn_functions.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2292790Z copying torchgen/packaged/autograd/templates/python_functions.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2294040Z copying torchgen/packaged/autograd/templates/python_fft_functions.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2295400Z copying torchgen/packaged/autograd/templates/python_sparse_functions.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2296750Z copying torchgen/packaged/autograd/templates/python_linalg_functions.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2298240Z copying torchgen/packaged/autograd/templates/ViewFuncs.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2299420Z copying torchgen/packaged/autograd/templates/python_return_types.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2300840Z copying torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2302060Z copying torchgen/packaged/autograd/templates/TraceType.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2307450Z copying torchgen/packaged/autograd/templates/python_variable_methods.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2308530Z copying torchgen/packaged/autograd/templates/ViewFuncs.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2309590Z copying torchgen/packaged/autograd/templates/python_functions.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2310660Z copying torchgen/packaged/autograd/templates/python_nested_functions.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2311730Z copying torchgen/packaged/autograd/templates/VariableType.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2312770Z copying torchgen/packaged/autograd/templates/annotated_fn_args.py.in -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2313860Z copying torchgen/packaged/autograd/templates/VariableType.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2315000Z copying torchgen/packaged/autograd/templates/Functions.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2316090Z copying torchgen/packaged/autograd/templates/python_special_functions.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2317160Z copying torchgen/packaged/autograd/templates/variable_factories.h -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2318230Z copying torchgen/packaged/autograd/templates/python_torch_functions.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2319280Z copying torchgen/packaged/autograd/templates/Functions.cpp -> build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates 2024-06-26T05:42:57.2713760Z running build_ext 2024-06-26T05:42:57.3842300Z -- Building with NumPy bindings 2024-06-26T05:42:57.3842620Z -- Not using cuDNN 2024-06-26T05:42:57.3842830Z -- Not using CUDA 2024-06-26T05:42:57.3843030Z -- Not using XPU 2024-06-26T05:42:57.3843240Z -- Not using MKLDNN 2024-06-26T05:42:57.3843540Z -- Not using NCCL 2024-06-26T05:42:57.3843790Z -- Building with distributed package: 2024-06-26T05:42:57.3844080Z -- USE_TENSORPIPE=False 2024-06-26T05:42:57.3844310Z -- USE_GLOO=False 2024-06-26T05:42:57.3844530Z -- USE_MPI=False 2024-06-26T05:42:57.3845510Z -- Building Executorch 2024-06-26T05:42:57.3846190Z -- Not using ITT 2024-06-26T05:42:57.3848210Z Copying functorch._C from functorch/functorch.so to /Users/ec2-user/runner/_work/pytorch/pytorch/build/lib.macosx-11.1-arm64-3.9/functorch/_C.cpython-39-darwin.so 2024-06-26T05:42:57.3849890Z copying functorch/functorch.so -> /Users/ec2-user/runner/_work/pytorch/pytorch/build/lib.macosx-11.1-arm64-3.9/functorch/_C.cpython-39-darwin.so 2024-06-26T05:42:57.3897150Z building 'torch._C' extension 2024-06-26T05:42:57.3897460Z creating build/temp.macosx-11.1-arm64-3.9 2024-06-26T05:42:57.3898120Z creating build/temp.macosx-11.1-arm64-3.9/torch 2024-06-26T05:42:57.3898570Z creating build/temp.macosx-11.1-arm64-3.9/torch/csrc 2024-06-26T05:42:57.3902260Z clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/include -arch arm64 -I/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/include -fPIC -O2 -isystem /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/include -arch arm64 -I/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/include/python3.9 -c torch/csrc/stub.c -o build/temp.macosx-11.1-arm64-3.9/torch/csrc/stub.o -Wall -Wextra -Wno-strict-overflow -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing 2024-06-26T05:42:57.4908210Z clang -bundle -undefined dynamic_lookup -Wl,-rpath,/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib -L/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib -L/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib -Wl,-rpath,/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib -L/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib build/temp.macosx-11.1-arm64-3.9/torch/csrc/stub.o -L/Users/ec2-user/runner/_work/pytorch/pytorch/torch/lib -ltorch_python -o build/lib.macosx-11.1-arm64-3.9/torch/_C.cpython-39-darwin.so -Wl,-rpath,@loader_path/lib 2024-06-26T05:42:57.5199940Z ld: warning: duplicate -rpath '/Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib' ignored 2024-06-26T05:42:57.6157560Z copying /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib/libomp.dylib -> build/lib.macosx-11.1-arm64-3.9/torch/lib 2024-06-26T05:42:58.7142440Z copying /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/include/omp.h -> build/lib.macosx-11.1-arm64-3.9/torch/include 2024-06-26T05:42:58.7147430Z /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools. 2024-06-26T05:42:58.7148440Z warnings.warn( 2024-06-26T05:42:58.7440120Z installing to build/bdist.macosx-11.1-arm64/wheel 2024-06-26T05:42:58.7440420Z running install 2024-06-26T05:42:58.7475300Z running install_lib 2024-06-26T05:42:58.7759380Z creating build/bdist.macosx-11.1-arm64 2024-06-26T05:42:58.7759790Z creating build/bdist.macosx-11.1-arm64/wheel 2024-06-26T05:42:58.7761530Z creating build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:42:58.7762290Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2024-06-26T05:42:58.7763120Z copying build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops/effects.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2024-06-26T05:42:58.7765000Z copying build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops/while_loop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2024-06-26T05:42:58.7767150Z copying build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2024-06-26T05:42:58.7768270Z copying build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops/strict_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2024-06-26T05:42:58.7769450Z copying build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops/torchbind.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2024-06-26T05:42:58.7770560Z copying build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops/cond.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2024-06-26T05:42:58.7772100Z copying build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops/map.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2024-06-26T05:42:58.7773480Z copying build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2024-06-26T05:42:58.7774630Z copying build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops/out_dtype.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2024-06-26T05:42:58.7776620Z copying build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops/associative_scan.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2024-06-26T05:42:58.7777720Z copying build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops/auto_functionalize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2024-06-26T05:42:58.7778830Z copying build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops/triton_kernel_wrap.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2024-06-26T05:42:58.7780090Z copying build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops/flex_attention.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2024-06-26T05:42:58.7781440Z copying build/lib.macosx-11.1-arm64-3.9/torch/_higher_order_ops/wrap.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_higher_order_ops 2024-06-26T05:42:58.7783120Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_prims 2024-06-26T05:42:58.7783790Z copying build/lib.macosx-11.1-arm64-3.9/torch/_prims/debug_prims.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_prims 2024-06-26T05:42:58.7784780Z copying build/lib.macosx-11.1-arm64-3.9/torch/_prims/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_prims 2024-06-26T05:42:58.7786620Z copying build/lib.macosx-11.1-arm64-3.9/torch/_prims/context.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_prims 2024-06-26T05:42:58.7787570Z copying build/lib.macosx-11.1-arm64-3.9/torch/_prims/rng_prims.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_prims 2024-06-26T05:42:58.7788580Z copying build/lib.macosx-11.1-arm64-3.9/torch/_prims/executor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_prims 2024-06-26T05:42:58.7789620Z copying build/lib.macosx-11.1-arm64-3.9/torch/_storage_docs.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:42:58.7790940Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_logging 2024-06-26T05:42:58.7791730Z copying build/lib.macosx-11.1-arm64-3.9/torch/_logging/_internal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_logging 2024-06-26T05:42:58.7793030Z copying build/lib.macosx-11.1-arm64-3.9/torch/_logging/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_logging 2024-06-26T05:42:58.7794130Z copying build/lib.macosx-11.1-arm64-3.9/torch/_logging/_registrations.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_logging 2024-06-26T05:42:58.7795190Z copying build/lib.macosx-11.1-arm64-3.9/torch/_logging/structured.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_logging 2024-06-26T05:42:58.7796520Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7797270Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/partitioners.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7799190Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/compile_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7800440Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7801480Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/autograd_function.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7808120Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/python_key.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7809080Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/pytree_hacks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7810030Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/pyfunctorch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7810970Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/deprecated.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7811930Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/top_operators_github_usage.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7812910Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7813870Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/batch_norm_replacement.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7814830Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/fx_minifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7815640Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2024-06-26T05:42:58.7816530Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd/input_output_analysis.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2024-06-26T05:42:58.7817700Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd/runtime_wrappers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2024-06-26T05:42:58.7818940Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2024-06-26T05:42:58.7820150Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd/dispatch_and_compile_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2024-06-26T05:42:58.7821360Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd/functional_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2024-06-26T05:42:58.7822510Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd/autograd_cache.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2024-06-26T05:42:58.7823690Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd/traced_function_transforms.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2024-06-26T05:42:58.7824880Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd/schemas.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2024-06-26T05:42:58.7826040Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd/jit_compile_runtime_wrappers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2024-06-26T05:42:58.7827190Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2024-06-26T05:42:58.7828330Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd/collect_metadata_analysis.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2024-06-26T05:42:58.7829510Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd/subclass_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2024-06-26T05:42:58.7830650Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/_aot_autograd/logging_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch/_aot_autograd 2024-06-26T05:42:58.7831680Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/apis.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7832580Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7833480Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/aot_autograd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7834400Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/compilers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7835520Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/eager_transforms.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7836600Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/vmap.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7837920Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/benchmark_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7839130Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/make_functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7840350Z copying build/lib.macosx-11.1-arm64-3.9/torch/_functorch/functional_call.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_functorch 2024-06-26T05:42:58.7842100Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7842780Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/_reductions_impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7843980Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/_getlimits.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7845030Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/_unary_ufuncs_impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7845970Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/_casting_dicts.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7847050Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7848180Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/_binary_ufuncs_impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7849180Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/random.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7850740Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_numpy/testing 2024-06-26T05:42:58.7851480Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/testing/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy/testing 2024-06-26T05:42:58.7852530Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/testing/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy/testing 2024-06-26T05:42:58.7853850Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/_dtypes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7855090Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/linalg.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7856240Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/_ndarray.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7857500Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/_ufuncs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7858600Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/_util.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7859690Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/_normalizations.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7860870Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/_dtypes_impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7862090Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/fft.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7863050Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/_funcs_impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7864780Z copying build/lib.macosx-11.1-arm64-3.9/torch/_numpy/_funcs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_numpy 2024-06-26T05:42:58.7865760Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_export 2024-06-26T05:42:58.7866580Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/exported_program.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2024-06-26T05:42:58.7867680Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/error.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2024-06-26T05:42:58.7868790Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/tools.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2024-06-26T05:42:58.7870540Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_export/pass_infra 2024-06-26T05:42:58.7871340Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/pass_infra/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/pass_infra 2024-06-26T05:42:58.7872380Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/pass_infra/proxy_value.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/pass_infra 2024-06-26T05:42:58.7873410Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/pass_infra/node_metadata.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/pass_infra 2024-06-26T05:42:58.7874260Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2024-06-26T05:42:58.7875170Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2024-06-26T05:42:58.7876320Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/passes/collect_tracepoints_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2024-06-26T05:42:58.7877340Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/passes/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2024-06-26T05:42:58.7878340Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/passes/_node_metadata_hook.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2024-06-26T05:42:58.7879420Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/passes/lift_constants_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2024-06-26T05:42:58.7880580Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/passes/constant_folding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2024-06-26T05:42:58.7881830Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/passes/add_runtime_assertions_for_constraints_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2024-06-26T05:42:58.7883250Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/passes/functionalize_side_effectful_ops_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2024-06-26T05:42:58.7884430Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/passes/replace_set_grad_with_hop_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2024-06-26T05:42:58.7885550Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/passes/remove_runtime_assertions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/passes 2024-06-26T05:42:58.7886780Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/converter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2024-06-26T05:42:58.7892880Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2024-06-26T05:42:58.7893860Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/pass_base.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2024-06-26T05:42:58.7895060Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2024-06-26T05:42:58.7896320Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/wrappers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2024-06-26T05:42:58.7897880Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_export/db 2024-06-26T05:42:58.7898580Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/logging.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db 2024-06-26T05:42:58.7899620Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db 2024-06-26T05:42:58.7900700Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/gen_example.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db 2024-06-26T05:42:58.7902250Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7903070Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/list_unpack.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7904160Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/torch_sym_min.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7909680Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/specialized_attribute.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7910870Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/static_for_loop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7912020Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/cond_closed_over_variable.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7913190Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/fn_with_kwargs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7914340Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/constrain_as_value_example.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7915510Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/dynamic_shape_slicing.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7916720Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/cond_branch_nonlocal_variables.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7917890Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/autograd_function.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7919030Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/type_reflection_method.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7920140Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/cond_operands.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7921260Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/decorator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7922350Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/dynamic_shape_view.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7923480Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/dynamic_shape_map.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7924590Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/nested_function.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7925740Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/dynamic_shape_constructor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7926850Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7927950Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/dynamic_shape_if_guard.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7929150Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/assume_constant_result.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7930300Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/cond_branch_class_method.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7931440Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/class_method.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7932540Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/pytree_flatten.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7933640Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/scalar_output.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7934740Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/cond_predicate.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7935860Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/dynamic_shape_assert.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7936970Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/tensor_setattr.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7938060Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/optional_input.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7939240Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/constrain_as_size_example.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7940370Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/static_if.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7941440Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/dictionary.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7942540Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/list_contains.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7943670Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/dynamic_shape_round.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7944780Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/user_input_mutation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7945890Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/null_context_manager.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7947140Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/cond_branch_nested_function.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7948320Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/examples/model_attr_mutation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db/examples 2024-06-26T05:42:58.7949320Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/db/case.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/db 2024-06-26T05:42:58.7950230Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/non_strict_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2024-06-26T05:42:58.7950940Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2024-06-26T05:42:58.7951680Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/serde/serialize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2024-06-26T05:42:58.7952650Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/serde/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2024-06-26T05:42:58.7953630Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/serde/upgrade.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2024-06-26T05:42:58.7954600Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/serde/schema_check.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2024-06-26T05:42:58.7955580Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/serde/schema.yaml -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2024-06-26T05:42:58.7956500Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/serde/union.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2024-06-26T05:42:58.7957460Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/serde/schema.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export/serde 2024-06-26T05:42:58.7958350Z copying build/lib.macosx-11.1-arm64-3.9/torch/_export/verifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_export 2024-06-26T05:42:58.7959010Z creating build/bdist.macosx-11.1-arm64/wheel/torch/monitor 2024-06-26T05:42:58.7959670Z copying build/lib.macosx-11.1-arm64-3.9/torch/monitor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/monitor 2024-06-26T05:42:58.7960320Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_dispatch 2024-06-26T05:42:58.7960990Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dispatch/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dispatch 2024-06-26T05:42:58.7961860Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dispatch/python.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dispatch 2024-06-26T05:42:58.7962560Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2024-06-26T05:42:58.7963280Z copying build/lib.macosx-11.1-arm64-3.9/torch/_subclasses/functional_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2024-06-26T05:42:58.7964240Z copying build/lib.macosx-11.1-arm64-3.9/torch/_subclasses/meta_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2024-06-26T05:42:58.7966310Z copying build/lib.macosx-11.1-arm64-3.9/torch/_subclasses/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2024-06-26T05:42:58.7967300Z copying build/lib.macosx-11.1-arm64-3.9/torch/_subclasses/fake_impls.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2024-06-26T05:42:58.7968430Z copying build/lib.macosx-11.1-arm64-3.9/torch/_subclasses/fake_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2024-06-26T05:42:58.7969990Z copying build/lib.macosx-11.1-arm64-3.9/torch/_subclasses/schema_check_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2024-06-26T05:42:58.7971210Z copying build/lib.macosx-11.1-arm64-3.9/torch/_subclasses/fake_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_subclasses 2024-06-26T05:42:58.7972340Z copying build/lib.macosx-11.1-arm64-3.9/torch/_meta_registrations.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:42:58.7974600Z copying build/lib.macosx-11.1-arm64-3.9/torch/version.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:42:58.7976130Z creating build/bdist.macosx-11.1-arm64/wheel/torch/futures 2024-06-26T05:42:58.7976800Z copying build/lib.macosx-11.1-arm64-3.9/torch/futures/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/futures 2024-06-26T05:42:58.7978060Z copying build/lib.macosx-11.1-arm64-3.9/torch/library.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:42:58.7980020Z creating build/bdist.macosx-11.1-arm64/wheel/torch/linalg 2024-06-26T05:42:58.7980690Z copying build/lib.macosx-11.1-arm64-3.9/torch/linalg/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/linalg 2024-06-26T05:42:58.7981950Z copying build/lib.macosx-11.1-arm64-3.9/torch/_jit_internal.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:42:58.7983820Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_custom_op 2024-06-26T05:42:58.7984520Z copying build/lib.macosx-11.1-arm64-3.9/torch/_custom_op/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_custom_op 2024-06-26T05:42:58.7985430Z copying build/lib.macosx-11.1-arm64-3.9/torch/_custom_op/functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_custom_op 2024-06-26T05:42:58.7986510Z copying build/lib.macosx-11.1-arm64-3.9/torch/_custom_op/autograd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_custom_op 2024-06-26T05:42:58.7987520Z copying build/lib.macosx-11.1-arm64-3.9/torch/_custom_op/impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_custom_op 2024-06-26T05:42:58.7989340Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn 2024-06-26T05:42:58.7990000Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/attention 2024-06-26T05:42:58.7990760Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/attention/bias.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/attention 2024-06-26T05:42:58.7992390Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/attention/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/attention 2024-06-26T05:42:58.7998030Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/attention/_flex_attention.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/attention 2024-06-26T05:42:58.7999060Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/attention/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/attention 2024-06-26T05:42:58.7999760Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2024-06-26T05:42:58.8000510Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel/parallel_apply.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2024-06-26T05:42:58.8001470Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel/comm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2024-06-26T05:42:58.8002490Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel/scatter_gather.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2024-06-26T05:42:58.8003470Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel/replicate.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2024-06-26T05:42:58.8004430Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel/_functions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2024-06-26T05:42:58.8005400Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel/data_parallel.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2024-06-26T05:42:58.8006380Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2024-06-26T05:42:58.8007350Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/parallel/distributed.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/parallel 2024-06-26T05:42:58.8008040Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat 2024-06-26T05:42:58.8008490Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/dynamic 2024-06-26T05:42:58.8009240Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/dynamic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/dynamic 2024-06-26T05:42:58.8010030Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/dynamic/modules 2024-06-26T05:42:58.8010900Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/dynamic/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/dynamic/modules 2024-06-26T05:42:58.8012040Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/dynamic/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/dynamic/modules 2024-06-26T05:42:58.8013010Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat 2024-06-26T05:42:58.8013680Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/modules 2024-06-26T05:42:58.8014420Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/modules 2024-06-26T05:42:58.8015410Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/modules 2024-06-26T05:42:58.8016390Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/modules 2024-06-26T05:42:58.8017440Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/qat/modules/embedding_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/qat/modules 2024-06-26T05:42:58.8018380Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/common_types.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2024-06-26T05:42:58.8019380Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized 2024-06-26T05:42:58.8020350Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference 2024-06-26T05:42:58.8021210Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/_reference/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference 2024-06-26T05:42:58.8022380Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference/modules 2024-06-26T05:42:58.8023440Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/_reference/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference/modules 2024-06-26T05:42:58.8024680Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/_reference/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference/modules 2024-06-26T05:42:58.8025920Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/_reference/modules/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference/modules 2024-06-26T05:42:58.8027140Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/_reference/modules/sparse.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference/modules 2024-06-26T05:42:58.8028510Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/_reference/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference/modules 2024-06-26T05:42:58.8029700Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/_reference/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/_reference/modules 2024-06-26T05:42:58.8030560Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/dynamic 2024-06-26T05:42:58.8031390Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/dynamic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/dynamic 2024-06-26T05:42:58.8032250Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/dynamic/modules 2024-06-26T05:42:58.8033220Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/dynamic/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/dynamic/modules 2024-06-26T05:42:58.8034450Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/dynamic/modules 2024-06-26T05:42:58.8035660Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/dynamic/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/dynamic/modules 2024-06-26T05:42:58.8036930Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/dynamic/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/dynamic/modules 2024-06-26T05:42:58.8037990Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized 2024-06-26T05:42:58.8038960Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized 2024-06-26T05:42:58.8039710Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2024-06-26T05:42:58.8040560Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules/batchnorm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2024-06-26T05:42:58.8041740Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules/functional_modules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2024-06-26T05:42:58.8042990Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2024-06-26T05:42:58.8044130Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2024-06-26T05:42:58.8045270Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules/activation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2024-06-26T05:42:58.8046390Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2024-06-26T05:42:58.8047480Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules/dropout.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2024-06-26T05:42:58.8048580Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2024-06-26T05:42:58.8049710Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules/normalization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2024-06-26T05:42:58.8050830Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2024-06-26T05:42:58.8051940Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantized/modules/embedding_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantized/modules 2024-06-26T05:42:58.8052740Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/backends 2024-06-26T05:42:58.8053430Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/backends/thnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/backends 2024-06-26T05:42:58.8054410Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/backends/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/backends 2024-06-26T05:42:58.8055390Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/parameter.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2024-06-26T05:42:58.8056210Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2024-06-26T05:42:58.8057120Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/_reduction.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2024-06-26T05:42:58.8058290Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8059170Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_named_member_accessor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8060510Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/spectral_norm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8062290Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/convert_parameters.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8063410Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/stateless.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8064600Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/parametrize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8065740Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/memory_format.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8066890Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_per_sample_grad.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8068030Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8069100Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/weight_norm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8070180Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/fusion.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8071250Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/prune.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8073110Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/parametrizations.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8074190Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/init.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8075220Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_deprecation_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8076240Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8078040Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2024-06-26T05:42:58.8079000Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2024-06-26T05:42:58.8080270Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2024-06-26T05:42:58.8081530Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights/conv_expanded_weights.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2024-06-26T05:42:58.8082780Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights/expanded_weights_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2024-06-26T05:42:58.8083970Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2024-06-26T05:42:58.8085190Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights/embedding_expanded_weights.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2024-06-26T05:42:58.8090500Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights/conv_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2024-06-26T05:42:58.8091770Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2024-06-26T05:42:58.8093050Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights/linear_expanded_weights.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2024-06-26T05:42:58.8094390Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/_expanded_weights/expanded_weights_impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils/_expanded_weights 2024-06-26T05:42:58.8095480Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/utils/clip_grad.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/utils 2024-06-26T05:42:58.8096170Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantizable 2024-06-26T05:42:58.8096920Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantizable/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantizable 2024-06-26T05:42:58.8097720Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantizable/modules 2024-06-26T05:42:58.8098560Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantizable/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantizable/modules 2024-06-26T05:42:58.8099720Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantizable/modules/activation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantizable/modules 2024-06-26T05:42:58.8100850Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/quantizable/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/quantizable/modules 2024-06-26T05:42:58.8101770Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/cpp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2024-06-26T05:42:58.8102380Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic 2024-06-26T05:42:58.8102860Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/qat 2024-06-26T05:42:58.8103660Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/qat/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/qat 2024-06-26T05:42:58.8104440Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/qat/modules 2024-06-26T05:42:58.8105360Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/qat/modules/conv_fused.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/qat/modules 2024-06-26T05:42:58.8106530Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/qat/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/qat/modules 2024-06-26T05:42:58.8107720Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/qat/modules/linear_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/qat/modules 2024-06-26T05:42:58.8108900Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/qat/modules/linear_fused.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/qat/modules 2024-06-26T05:42:58.8109770Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized 2024-06-26T05:42:58.8110340Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/dynamic 2024-06-26T05:42:58.8111280Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/dynamic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/dynamic 2024-06-26T05:42:58.8112230Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2024-06-26T05:42:58.8113280Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2024-06-26T05:42:58.8114720Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2024-06-26T05:42:58.8116030Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized 2024-06-26T05:42:58.8116870Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/modules 2024-06-26T05:42:58.8117820Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/modules/bn_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/modules 2024-06-26T05:42:58.8119120Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/modules 2024-06-26T05:42:58.8120380Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/modules/conv_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/modules 2024-06-26T05:42:58.8121670Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/quantized/modules/linear_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/quantized/modules 2024-06-26T05:42:58.8122780Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic 2024-06-26T05:42:58.8123530Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/modules 2024-06-26T05:42:58.8124340Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/modules/fused.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/modules 2024-06-26T05:42:58.8125450Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/intrinsic/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/intrinsic/modules 2024-06-26T05:42:58.8126400Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2024-06-26T05:42:58.8127200Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/init.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2024-06-26T05:42:58.8128010Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/functional.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2024-06-26T05:42:58.8128800Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/grad.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2024-06-26T05:42:58.8129410Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8130150Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/upsampling.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8131140Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/channelshuffle.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8132130Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/instancenorm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8133300Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/flatten.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8134390Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/batchnorm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8135440Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8136640Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/_functions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8137790Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/pooling.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8139650Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8140710Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/distance.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8141770Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/container.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8142970Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/pixelshuffle.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8144020Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/adaptive.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8145430Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/loss.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8147420Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/activation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8148780Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8149750Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/transformer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8150970Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/sparse.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8152100Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8153990Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/dropout.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8155010Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8173900Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/lazy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8174960Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/normalization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8176720Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8178060Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/padding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8179670Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/modules/fold.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn/modules 2024-06-26T05:42:58.8180760Z copying build/lib.macosx-11.1-arm64-3.9/torch/nn/parameter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nn 2024-06-26T05:42:58.8182620Z creating build/bdist.macosx-11.1-arm64/wheel/torch/mps 2024-06-26T05:42:58.8183240Z copying build/lib.macosx-11.1-arm64-3.9/torch/mps/event.py -> build/bdist.macosx-11.1-arm64/wheel/torch/mps 2024-06-26T05:42:58.8184240Z copying build/lib.macosx-11.1-arm64-3.9/torch/mps/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/mps 2024-06-26T05:42:58.8185360Z copying build/lib.macosx-11.1-arm64-3.9/torch/mps/profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/mps 2024-06-26T05:42:58.8186330Z copying build/lib.macosx-11.1-arm64-3.9/torch/_custom_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:42:58.8188340Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8188980Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_type_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8190040Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_constants.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8191650Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2024-06-26T05:42:58.8192400Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/registration.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2024-06-26T05:42:58.8193560Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/io_adapter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2024-06-26T05:42:58.8195300Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2024-06-26T05:42:58.8196100Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/registration.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2024-06-26T05:42:58.8197260Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/fx_symbolic_graph_extractor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2024-06-26T05:42:58.8198410Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/onnxfunction_dispatcher.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2024-06-26T05:42:58.8204180Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/decomposition_table.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2024-06-26T05:42:58.8205110Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/analysis 2024-06-26T05:42:58.8206010Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/analysis/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/analysis 2024-06-26T05:42:58.8207190Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/analysis/unsupported_nodes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/analysis 2024-06-26T05:42:58.8208350Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/decomposition_skip.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2024-06-26T05:42:58.8209520Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/dynamo_graph_extractor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2024-06-26T05:42:58.8210610Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/diagnostics.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2024-06-26T05:42:58.8211400Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2024-06-26T05:42:58.8212290Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes/readability.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2024-06-26T05:42:58.8213460Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes/modularization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2024-06-26T05:42:58.8214670Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes/virtualization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2024-06-26T05:42:58.8215820Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2024-06-26T05:42:58.8217010Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes/functionalization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2024-06-26T05:42:58.8218200Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes/decomp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2024-06-26T05:42:58.8219360Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes/type_promotion.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2024-06-26T05:42:58.8220490Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/passes/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx/passes 2024-06-26T05:42:58.8221550Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/type_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2024-06-26T05:42:58.8222570Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2024-06-26T05:42:58.8223570Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/patcher.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2024-06-26T05:42:58.8224650Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/torch_export_graph_extractor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2024-06-26T05:42:58.8225750Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/op_validation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2024-06-26T05:42:58.8226820Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2024-06-26T05:42:58.8227820Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/fx_onnx_interpreter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2024-06-26T05:42:58.8228850Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/fx/serialization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/fx 2024-06-26T05:42:58.8233920Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/exporter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2024-06-26T05:42:58.8235190Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2024-06-26T05:42:58.8236240Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics 2024-06-26T05:42:58.8237120Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/_rules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics 2024-06-26T05:42:58.8238510Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra 2024-06-26T05:42:58.8240070Z creating build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8241100Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_tool.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8242460Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_physical_location.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8243870Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8245290Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_special_locations.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8246680Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_thread_flow_location.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8248100Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_graph_traversal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8249480Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_suppression.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8250840Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_artifact.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8252260Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor_reference.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8253730Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_reporting_configuration.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8255110Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_address.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8256450Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/version.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8257800Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_node.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8259190Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_translation_metadata.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8260610Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_artifact_location.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8262020Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_conversion.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8263450Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor_relationship.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8264900Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_edge_traversal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8266280Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8267630Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_exception.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8269050Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_external_property_file_reference.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8270510Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_tool_component.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8271860Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8273250Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_version_control_details.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8274660Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_fix.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8276020Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_web_request.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8277370Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_result.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8278740Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_location_relationship.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8280140Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_message.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8281470Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_sarif_log.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8282850Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_artifact_content.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8284300Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_external_property_file_references.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8285800Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_configuration_override.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8287210Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_result_provenance.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8288620Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_property_bag.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8290040Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_tool_component_reference.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8291450Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_replacement.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8292840Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_invocation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8294200Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_web_response.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8295550Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_code_flow.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8296900Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_location.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8298240Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_region.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8299600Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_logical_location.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8300980Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_stack.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8302440Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_edge.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8303760Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_run.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8305140Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_run_automation_details.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8306550Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_rectangle.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8307950Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_multiformat_message_string.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8309360Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_stack_frame.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8310790Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_thread_flow.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8312150Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_artifact_change.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8317800Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_external_properties.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8319270Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_attachment.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8320650Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/sarif/_notification.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra/sarif 2024-06-26T05:42:58.8321980Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/formatter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra 2024-06-26T05:42:58.8323280Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/decorator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra 2024-06-26T05:42:58.8324530Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra 2024-06-26T05:42:58.8325760Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/context.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra 2024-06-26T05:42:58.8326980Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra 2024-06-26T05:42:58.8328210Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/infra/_infra.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics/infra 2024-06-26T05:42:58.8329390Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics 2024-06-26T05:42:58.8330580Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/diagnostics/_diagnostic.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal/diagnostics 2024-06-26T05:42:58.8331650Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/onnxruntime.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2024-06-26T05:42:58.8332610Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/_beartype.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2024-06-26T05:42:58.8333590Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/onnx_proto_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2024-06-26T05:42:58.8334590Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_internal/jit_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx/_internal 2024-06-26T05:42:58.8335520Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/symbolic_opset15.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8336410Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_onnx_supported_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8337310Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/symbolic_opset7.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8338170Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/symbolic_caffe2.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8339060Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/symbolic_opset11.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8339950Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/verification.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8340850Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/symbolic_opset10.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8341840Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/symbolic_opset20.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8342720Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/symbolic_opset14.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8343580Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_globals.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8344470Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/symbolic_helper.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8345360Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/symbolic_opset9.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8346230Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_deprecation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8347090Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_exporter_states.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8347960Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8348800Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/symbolic_opset8.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8349700Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/symbolic_opset19.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8350550Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8351390Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/_experimental.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8352250Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/symbolic_opset18.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8353120Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/errors.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8353970Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/symbolic_opset13.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8354800Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/operators.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8355670Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/symbolic_opset17.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8356530Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/symbolic_opset16.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8357370Z copying build/lib.macosx-11.1-arm64-3.9/torch/onnx/symbolic_opset12.py -> build/bdist.macosx-11.1-arm64/wheel/torch/onnx 2024-06-26T05:42:58.8357980Z creating build/bdist.macosx-11.1-arm64/wheel/torch/bin 2024-06-26T05:42:58.8358630Z copying build/lib.macosx-11.1-arm64-3.9/torch/bin/protoc-3.13.0.0 -> build/bdist.macosx-11.1-arm64/wheel/torch/bin 2024-06-26T05:42:58.8464180Z copying build/lib.macosx-11.1-arm64-3.9/torch/bin/torch_shm_manager -> build/bdist.macosx-11.1-arm64/wheel/torch/bin 2024-06-26T05:42:58.8465320Z copying build/lib.macosx-11.1-arm64-3.9/torch/bin/protoc -> build/bdist.macosx-11.1-arm64/wheel/torch/bin 2024-06-26T05:42:58.8588770Z copying build/lib.macosx-11.1-arm64-3.9/torch/return_types.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:42:58.8590270Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_vendor 2024-06-26T05:42:58.8590970Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_vendor/packaging 2024-06-26T05:42:58.8591760Z copying build/lib.macosx-11.1-arm64-3.9/torch/_vendor/packaging/version.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_vendor/packaging 2024-06-26T05:42:58.8593160Z copying build/lib.macosx-11.1-arm64-3.9/torch/_vendor/packaging/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_vendor/packaging 2024-06-26T05:42:58.8594410Z copying build/lib.macosx-11.1-arm64-3.9/torch/_vendor/packaging/_structures.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_vendor/packaging 2024-06-26T05:42:58.8595470Z copying build/lib.macosx-11.1-arm64-3.9/torch/_vendor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_vendor 2024-06-26T05:42:58.8596390Z creating build/bdist.macosx-11.1-arm64/wheel/torch/cpu 2024-06-26T05:42:58.8597040Z copying build/lib.macosx-11.1-arm64-3.9/torch/cpu/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cpu 2024-06-26T05:42:58.8598670Z creating build/bdist.macosx-11.1-arm64/wheel/torch/cpu/amp 2024-06-26T05:42:58.8599810Z copying build/lib.macosx-11.1-arm64-3.9/torch/cpu/amp/autocast_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cpu/amp 2024-06-26T05:42:58.8600750Z copying build/lib.macosx-11.1-arm64-3.9/torch/cpu/amp/grad_scaler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cpu/amp 2024-06-26T05:42:58.8601690Z copying build/lib.macosx-11.1-arm64-3.9/torch/cpu/amp/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cpu/amp 2024-06-26T05:42:58.8603250Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8603940Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2024-06-26T05:42:58.8604880Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/experimental 2024-06-26T05:42:58.8605850Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/experimental/attention.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/experimental 2024-06-26T05:42:58.8607170Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/experimental/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/experimental 2024-06-26T05:42:58.8608420Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/experimental/local_map.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/experimental 2024-06-26T05:42:58.8609690Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/experimental/tp_transform.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/experimental 2024-06-26T05:42:58.8610880Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/_shards_wrapper.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2024-06-26T05:42:58.8612040Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/_redistribute.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2024-06-26T05:42:58.8613250Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/_sharding_prop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2024-06-26T05:42:58.8614460Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/_collective_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2024-06-26T05:42:58.8615800Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2024-06-26T05:42:58.8617200Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/_dispatch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2024-06-26T05:42:58.8618420Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/random.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2024-06-26T05:42:58.8619810Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2024-06-26T05:42:58.8621150Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/_op_schema.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2024-06-26T05:42:58.8622410Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/placement_types.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2024-06-26T05:42:58.8623660Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/_tp_conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2024-06-26T05:42:58.8624880Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/device_mesh.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2024-06-26T05:42:58.8626130Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/ops 2024-06-26T05:42:58.8627030Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops/experimental_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/ops 2024-06-26T05:42:58.8628190Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops/common_rules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/ops 2024-06-26T05:42:58.8629410Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops/basic_strategy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/ops 2024-06-26T05:42:58.8630620Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops/conv_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/ops 2024-06-26T05:42:58.8631770Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops/tensor_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/ops 2024-06-26T05:42:58.8632970Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/ops 2024-06-26T05:42:58.8639650Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/ops 2024-06-26T05:42:58.8640820Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops/pointwise_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/ops 2024-06-26T05:42:58.8641970Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops/math_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/ops 2024-06-26T05:42:58.8643090Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops/view_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/ops 2024-06-26T05:42:58.8644220Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops/random_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/ops 2024-06-26T05:42:58.8645350Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops/matrix_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/ops 2024-06-26T05:42:58.8646540Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/ops/embedding_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/ops 2024-06-26T05:42:58.8647640Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor 2024-06-26T05:42:58.8648430Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/debug 2024-06-26T05:42:58.8649350Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/debug/visualize_sharding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/debug 2024-06-26T05:42:58.8650530Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/debug/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/debug 2024-06-26T05:42:58.8651690Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/debug/comm_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/debug 2024-06-26T05:42:58.8652910Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tensor/debug/_op_coverage.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tensor/debug 2024-06-26T05:42:58.8653790Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_sharding_spec 2024-06-26T05:42:58.8654680Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_sharding_spec/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_sharding_spec 2024-06-26T05:42:58.8655800Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable_state.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8656780Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/logging_handlers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8657780Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/rendezvous.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8658710Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/run.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8659690Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_state_dict_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8660460Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/launcher 2024-06-26T05:42:58.8661300Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/launcher/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/launcher 2024-06-26T05:42:58.8662390Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/launcher/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/launcher 2024-06-26T05:42:58.8663190Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8664130Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/logging_handlers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8665310Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/format_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8666450Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/planner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8667610Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/_dedup_save_plans.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8668790Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/state_dict.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8669920Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/metadata.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8671110Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/_storage_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8672320Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/_traverse.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8673540Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/_sharded_tensor_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8674740Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/_dedup_tensors.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8675920Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/filesystem.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8677100Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/state_dict_saver.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8678250Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8679370Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/logger.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8680530Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/resharding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8681690Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8682950Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/state_dict_loader.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8684110Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8685270Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/default_planner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8686470Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/storage.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8687640Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/planner_helpers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8688800Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/optimizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8689940Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/staging.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8691130Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/_checkpointer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8692280Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/stateful.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8693440Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/_fsspec_filesystem.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8694590Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/checkpoint/_nested_dict.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/checkpoint 2024-06-26T05:42:58.8695450Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_sharded_tensor 2024-06-26T05:42:58.8696330Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_sharded_tensor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_sharded_tensor 2024-06-26T05:42:58.8697140Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn 2024-06-26T05:42:58.8697910Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn 2024-06-26T05:42:58.8698930Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn 2024-06-26T05:42:58.8699670Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/jit 2024-06-26T05:42:58.8700510Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/jit/instantiator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/jit 2024-06-26T05:42:58.8701590Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/jit/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/jit 2024-06-26T05:42:58.8702390Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/jit/templates 2024-06-26T05:42:58.8703320Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/jit/templates/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/jit/templates 2024-06-26T05:42:58.8704620Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/jit/templates/remote_module_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/jit/templates 2024-06-26T05:42:58.8705520Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/api 2024-06-26T05:42:58.8706360Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/api/remote_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/api 2024-06-26T05:42:58.8707470Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/nn/api/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/nn/api 2024-06-26T05:42:58.8708250Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic 2024-06-26T05:42:58.8708820Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/metrics 2024-06-26T05:42:58.8709710Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/metrics/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/metrics 2024-06-26T05:42:58.8710900Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/metrics/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/metrics 2024-06-26T05:42:58.8711940Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2024-06-26T05:42:58.8712900Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous/etcd_store.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2024-06-26T05:42:58.8714170Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous/registry.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2024-06-26T05:42:58.8715420Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2024-06-26T05:42:58.8716740Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous/etcd_rendezvous.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2024-06-26T05:42:58.8718080Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2024-06-26T05:42:58.8719380Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2024-06-26T05:42:58.8720710Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2024-06-26T05:42:58.8722000Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2024-06-26T05:42:58.8723340Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous/dynamic_rendezvous.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2024-06-26T05:42:58.8724660Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous/etcd_server.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2024-06-26T05:42:58.8725970Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/rendezvous 2024-06-26T05:42:58.8726950Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing 2024-06-26T05:42:58.8727830Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2024-06-26T05:42:58.8729150Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2024-06-26T05:42:58.8736090Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2024-06-26T05:42:58.8737800Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2024-06-26T05:42:58.8739310Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/tail_log.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing 2024-06-26T05:42:58.8740760Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing 2024-06-26T05:42:58.8742090Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing 2024-06-26T05:42:58.8743430Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/redirects.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing 2024-06-26T05:42:58.8744500Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2024-06-26T05:42:58.8745650Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/errors/handlers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2024-06-26T05:42:58.8747140Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/errors/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2024-06-26T05:42:58.8748790Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/multiprocessing/errors/error_handler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2024-06-26T05:42:58.8749840Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/timer 2024-06-26T05:42:58.8750740Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/timer/local_timer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/timer 2024-06-26T05:42:58.8751980Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/timer/debug_info_logging.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/timer 2024-06-26T05:42:58.8753190Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/timer/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/timer 2024-06-26T05:42:58.8754360Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/timer/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/timer 2024-06-26T05:42:58.8755580Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/timer/file_based_local_timer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/timer 2024-06-26T05:42:58.8756800Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic 2024-06-26T05:42:58.8757900Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/control_plane.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic 2024-06-26T05:42:58.8758740Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils 2024-06-26T05:42:58.8759620Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils/store.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils 2024-06-26T05:42:58.8760810Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils/logging.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils 2024-06-26T05:42:58.8761980Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils 2024-06-26T05:42:58.8763150Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils/log_level.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils 2024-06-26T05:42:58.8764300Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils 2024-06-26T05:42:58.8765470Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils/distributed.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils 2024-06-26T05:42:58.8766420Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils/data 2024-06-26T05:42:58.8767450Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils/data/elastic_distributed_sampler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils/data 2024-06-26T05:42:58.8768780Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils/data/cycling_iterator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils/data 2024-06-26T05:42:58.8770010Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/utils/data/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/utils/data 2024-06-26T05:42:58.8770900Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/agent 2024-06-26T05:42:58.8771760Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/agent/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/agent 2024-06-26T05:42:58.8772600Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/agent/server 2024-06-26T05:42:58.8773620Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/agent/server/health_check_server.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/agent/server 2024-06-26T05:42:58.8774990Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/agent/server/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/agent/server 2024-06-26T05:42:58.8776260Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/agent/server/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/agent/server 2024-06-26T05:42:58.8777570Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/agent/server/local_elastic_agent.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/agent/server 2024-06-26T05:42:58.8778540Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/events 2024-06-26T05:42:58.8779450Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/events/handlers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/events 2024-06-26T05:42:58.8780630Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/events/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/events 2024-06-26T05:42:58.8781810Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/elastic/events/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/elastic/events 2024-06-26T05:42:58.8782650Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_cuda_p2p 2024-06-26T05:42:58.8783480Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_cuda_p2p/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_cuda_p2p 2024-06-26T05:42:58.8784280Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/autograd 2024-06-26T05:42:58.8785100Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/autograd/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/autograd 2024-06-26T05:42:58.8786120Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/distributed_c10d.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8786910Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2024-06-26T05:42:58.8787720Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining/_IR.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2024-06-26T05:42:58.8788840Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining/_unflatten.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2024-06-26T05:42:58.8790010Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2024-06-26T05:42:58.8791150Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining/microbatch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2024-06-26T05:42:58.8792450Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining/_backward.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2024-06-26T05:42:58.8793630Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining/_debug.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2024-06-26T05:42:58.8794740Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining/stage.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2024-06-26T05:42:58.8795970Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining/schedules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2024-06-26T05:42:58.8797300Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/pipelining/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/pipelining 2024-06-26T05:42:58.8798410Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/argparse_util.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8799470Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_checkpointable.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8800510Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/constants.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8801620Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/c10d_logger.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8802620Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms 2024-06-26T05:42:58.8803540Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2024-06-26T05:42:58.8804520Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_comm_hooks/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2024-06-26T05:42:58.8805830Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_comm_hooks/default_hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2024-06-26T05:42:58.8806910Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_checkpoint 2024-06-26T05:42:58.8807960Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_checkpoint 2024-06-26T05:42:58.8809460Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_checkpoint/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_checkpoint 2024-06-26T05:42:58.8810450Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/model_averaging 2024-06-26T05:42:58.8811500Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/model_averaging/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/model_averaging 2024-06-26T05:42:58.8812890Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/model_averaging/averagers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/model_averaging 2024-06-26T05:42:58.8814250Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/model_averaging/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/model_averaging 2024-06-26T05:42:58.8815680Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/model_averaging 2024-06-26T05:42:58.8816740Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:58.8817810Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:58.8819240Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:58.8820720Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:58.8822090Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:58.8823490Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:58.8824870Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:58.8826230Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:58.8827630Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:58.8829080Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2024-06-26T05:42:58.8830310Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms 2024-06-26T05:42:58.8831410Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/join.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms 2024-06-26T05:42:58.8832320Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2024-06-26T05:42:58.8833430Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2024-06-26T05:42:58.8834850Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_optimizer_overlap/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2024-06-26T05:42:58.8835900Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_quantization 2024-06-26T05:42:58.8836940Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_quantization/quantization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_quantization 2024-06-26T05:42:58.8838270Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/algorithms/_quantization/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/algorithms/_quantization 2024-06-26T05:42:58.8839310Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2024-06-26T05:42:58.8840120Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim/named_optimizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2024-06-26T05:42:58.8841160Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2024-06-26T05:42:58.8842200Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim/functional_sgd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2024-06-26T05:42:58.8844520Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim/functional_adagrad.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2024-06-26T05:42:58.8845660Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim/functional_adamw.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2024-06-26T05:42:58.8846860Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim/apply_optimizer_in_backward.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2024-06-26T05:42:58.8848010Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim/functional_adam.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2024-06-26T05:42:58.8849080Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2024-06-26T05:42:58.8850160Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim/functional_rprop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2024-06-26T05:42:58.8851330Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim/post_localSGD_optimizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2024-06-26T05:42:58.8852460Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim/optimizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2024-06-26T05:42:58.8853580Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim/functional_adadelta.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2024-06-26T05:42:58.8854710Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim/functional_rmsprop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2024-06-26T05:42:58.8855900Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim/zero_redundancy_optimizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2024-06-26T05:42:58.8857110Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/optim/functional_adamax.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/optim 2024-06-26T05:42:58.8858160Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8859230Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable 2024-06-26T05:42:58.8860100Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/replicate.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable 2024-06-26T05:42:58.8861310Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable 2024-06-26T05:42:58.8862380Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable/fsdp 2024-06-26T05:42:58.8863330Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp/_fsdp_api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable/fsdp 2024-06-26T05:42:58.8864540Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp/_fsdp_common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable/fsdp 2024-06-26T05:42:58.8865780Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp/_fsdp_param_group.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable/fsdp 2024-06-26T05:42:58.8867100Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable/fsdp 2024-06-26T05:42:58.8868310Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp/_fsdp_param.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable/fsdp 2024-06-26T05:42:58.8869510Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp/_fsdp_init.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable/fsdp 2024-06-26T05:42:58.8870720Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp/_fsdp_collectives.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable/fsdp 2024-06-26T05:42:58.8871960Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp/fully_shard.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable/fsdp 2024-06-26T05:42:58.8873170Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fsdp/_fsdp_state.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable/fsdp 2024-06-26T05:42:58.8874390Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/fully_shard.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable 2024-06-26T05:42:58.8875510Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/contract.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable 2024-06-26T05:42:58.8876680Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_composable/checkpoint_activation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_composable 2024-06-26T05:42:58.8882340Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tools 2024-06-26T05:42:58.8883170Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tools/mem_tracker.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tools 2024-06-26T05:42:58.8884250Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tools/fsdp2_mem_tracker.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tools 2024-06-26T05:42:58.8885320Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tools/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tools 2024-06-26T05:42:58.8886430Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tools/memory_tracker.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tools 2024-06-26T05:42:58.8887580Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_tools/mod_tracker.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_tools 2024-06-26T05:42:58.8888380Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8889200Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/_exec_order_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8890290Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/_traversal_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8891390Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/sharded_grad_scaler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8892480Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/_state_dict_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8893660Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/fully_sharded_data_parallel.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8894760Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/_wrap_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8895800Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/_optim_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8896840Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/_trace_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8897890Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/_common_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8898920Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8899930Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8900960Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/_limiter_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8902030Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/_dynamo_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8903090Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/_unshard_param_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8904220Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/_shard_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8905240Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/wrap.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8906280Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/_runtime_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8907340Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/_fsdp_extensions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8908420Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/_init_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8909470Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/_debug_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8910520Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/fsdp/_flat_param.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/fsdp 2024-06-26T05:42:58.8911890Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/collective_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8913030Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_functional_collectives.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8914900Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard 2024-06-26T05:42:58.8915540Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/checkpoint 2024-06-26T05:42:58.8916460Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/checkpoint/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/checkpoint 2024-06-26T05:42:58.8917580Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/metadata.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard 2024-06-26T05:42:58.8918690Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/op_registry_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard 2024-06-26T05:42:58.8919870Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:58.8920910Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/logging_handlers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:58.8922210Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/metadata.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:58.8923290Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2024-06-26T05:42:58.8924320Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2024-06-26T05:42:58.8925710Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2024-06-26T05:42:58.8927140Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/_ops/_common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2024-06-26T05:42:58.8928460Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/_ops/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2024-06-26T05:42:58.8929800Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2024-06-26T05:42:58.8931120Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/_ops/init.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2024-06-26T05:42:58.8932460Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:58.8933710Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/logger.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:58.8934950Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/reshard.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:58.8936220Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:58.8937480Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/shard.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:58.8938700Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_tensor/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_tensor 2024-06-26T05:42:58.8939660Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_plan 2024-06-26T05:42:58.8940620Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_plan/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_plan 2024-06-26T05:42:58.8941840Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_plan/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_plan 2024-06-26T05:42:58.8942970Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharder.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard 2024-06-26T05:42:58.8944000Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard 2024-06-26T05:42:58.8944810Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_spec 2024-06-26T05:42:58.8945590Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2024-06-26T05:42:58.8946840Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.8948460Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.8950040Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.8951620Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.8953040Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_spec/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_spec 2024-06-26T05:42:58.8954300Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_spec/_internals.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_spec 2024-06-26T05:42:58.8955530Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_spec/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_spec 2024-06-26T05:42:58.8956790Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharding_spec 2024-06-26T05:42:58.8957770Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_optim 2024-06-26T05:42:58.8958710Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_optim/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_optim 2024-06-26T05:42:58.8959930Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/sharded_optim/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard/sharded_optim 2024-06-26T05:42:58.8961080Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/common_op_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard 2024-06-26T05:42:58.8962130Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard 2024-06-26T05:42:58.8963160Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_shard/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_shard 2024-06-26T05:42:58.8964140Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/launch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8964890Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_spmd 2024-06-26T05:42:58.8965710Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd/experimental_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_spmd 2024-06-26T05:42:58.8966800Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd/iter_graph_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_spmd 2024-06-26T05:42:58.8967980Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd/distribute.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_spmd 2024-06-26T05:42:58.8969120Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd/batch_dim_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_spmd 2024-06-26T05:42:58.8970220Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd/config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_spmd 2024-06-26T05:42:58.8971350Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd/gm_transformation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_spmd 2024-06-26T05:42:58.8972460Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd/log_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_spmd 2024-06-26T05:42:58.8973520Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd/data_parallel.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_spmd 2024-06-26T05:42:58.8974700Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd/graph_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_spmd 2024-06-26T05:42:58.8981350Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_spmd 2024-06-26T05:42:58.8982370Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_spmd 2024-06-26T05:42:58.8983400Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd/partial_lower.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_spmd 2024-06-26T05:42:58.8984490Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd/graph_optimization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_spmd 2024-06-26T05:42:58.8985560Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd/comm_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_spmd 2024-06-26T05:42:58.8986610Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_spmd/parallel_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/_spmd 2024-06-26T05:42:58.8987590Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8988610Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/remote_device.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8989570Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/device_mesh.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.8990300Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2024-06-26T05:42:58.8990860Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2024-06-26T05:42:58.8991760Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel/ddp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2024-06-26T05:42:58.8993010Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel/fsdp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2024-06-26T05:42:58.8994200Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel/style.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2024-06-26T05:42:58.8995380Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2024-06-26T05:42:58.8996630Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2024-06-26T05:42:58.8997810Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel/loss.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2024-06-26T05:42:58.8999040Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel/input_reshard.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2024-06-26T05:42:58.9000260Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2024-06-26T05:42:58.9001500Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/parallel/_data_parallel_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor/parallel 2024-06-26T05:42:58.9002670Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/tensor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/tensor 2024-06-26T05:42:58.9003430Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2024-06-26T05:42:58.9004250Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc/functions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2024-06-26T05:42:58.9005280Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc/options.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2024-06-26T05:42:58.9006280Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc/internal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2024-06-26T05:42:58.9007340Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc/constants.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2024-06-26T05:42:58.9008340Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2024-06-26T05:42:58.9009110Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc/_testing 2024-06-26T05:42:58.9009980Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc/_testing/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc/_testing 2024-06-26T05:42:58.9011180Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc/_testing/faulty_agent_backend_registry.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc/_testing 2024-06-26T05:42:58.9012310Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc/api.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2024-06-26T05:42:58.9013310Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc/rref_proxy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2024-06-26T05:42:58.9014460Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc/server_process_global_profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2024-06-26T05:42:58.9015530Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2024-06-26T05:42:58.9016570Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/rpc/backend_registry.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed/rpc 2024-06-26T05:42:58.9017660Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributed/_functional_collectives_impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributed 2024-06-26T05:42:58.9018600Z copying build/lib.macosx-11.1-arm64-3.9/torch/_size_docs.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:42:58.9019200Z creating build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2024-06-26T05:42:58.9019870Z copying build/lib.macosx-11.1-arm64-3.9/torch/autograd/anomaly_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2024-06-26T05:42:58.9020600Z creating build/bdist.macosx-11.1-arm64/wheel/torch/autograd/_functions 2024-06-26T05:42:58.9021390Z copying build/lib.macosx-11.1-arm64-3.9/torch/autograd/_functions/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd/_functions 2024-06-26T05:42:58.9022480Z copying build/lib.macosx-11.1-arm64-3.9/torch/autograd/_functions/tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd/_functions 2024-06-26T05:42:58.9023510Z copying build/lib.macosx-11.1-arm64-3.9/torch/autograd/_functions/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd/_functions 2024-06-26T05:42:58.9024480Z copying build/lib.macosx-11.1-arm64-3.9/torch/autograd/graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2024-06-26T05:42:58.9025430Z copying build/lib.macosx-11.1-arm64-3.9/torch/autograd/forward_ad.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2024-06-26T05:42:58.9026560Z copying build/lib.macosx-11.1-arm64-3.9/torch/autograd/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2024-06-26T05:42:58.9046080Z copying build/lib.macosx-11.1-arm64-3.9/torch/autograd/variable.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2024-06-26T05:42:58.9047170Z copying build/lib.macosx-11.1-arm64-3.9/torch/autograd/functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2024-06-26T05:42:58.9048570Z copying build/lib.macosx-11.1-arm64-3.9/torch/autograd/grad_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2024-06-26T05:42:58.9050360Z copying build/lib.macosx-11.1-arm64-3.9/torch/autograd/profiler_util.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2024-06-26T05:42:58.9051440Z copying build/lib.macosx-11.1-arm64-3.9/torch/autograd/profiler_legacy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2024-06-26T05:42:58.9052490Z copying build/lib.macosx-11.1-arm64-3.9/torch/autograd/gradcheck.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2024-06-26T05:42:58.9054330Z copying build/lib.macosx-11.1-arm64-3.9/torch/autograd/profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2024-06-26T05:42:58.9055410Z copying build/lib.macosx-11.1-arm64-3.9/torch/autograd/function.py -> build/bdist.macosx-11.1-arm64/wheel/torch/autograd 2024-06-26T05:42:58.9057230Z copying build/lib.macosx-11.1-arm64-3.9/torch/_torch_docs.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:42:58.9060730Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9061350Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/_pytree.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9062290Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/graph_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9064020Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9064810Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/validator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9066050Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2024-06-26T05:42:58.9066990Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/dispatch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2024-06-26T05:42:58.9068210Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2024-06-26T05:42:58.9069420Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/core.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2024-06-26T05:42:58.9070720Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/unification_tools.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2024-06-26T05:42:58.9071780Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2024-06-26T05:42:58.9072940Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/multipledispatch/dispatcher.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2024-06-26T05:42:58.9074570Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/multipledispatch/variadic.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2024-06-26T05:42:58.9076100Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/multipledispatch/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2024-06-26T05:42:58.9077600Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/multipledispatch/core.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2024-06-26T05:42:58.9079130Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/multipledispatch/conflict.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2024-06-26T05:42:58.9080660Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/multipledispatch/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2024-06-26T05:42:58.9082020Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/variable.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2024-06-26T05:42:58.9083270Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/more.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2024-06-26T05:42:58.9084490Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2024-06-26T05:42:58.9085680Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unification/match.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/unification 2024-06-26T05:42:58.9086800Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/meta_tracer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9087870Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/partitioner_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9088940Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/recording.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9089980Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/rewriter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9091020Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/const_fold.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9091870Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:58.9092940Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types/constraint.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:58.9094390Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types/constraint_transformation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:58.9100330Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types/util.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:58.9101720Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:58.9103080Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types/operation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:58.9104470Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types/transform_to_z3.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:58.9105830Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types/z3_types.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:58.9107250Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/migrate_gradual_types/constraint_generator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2024-06-26T05:42:58.9108550Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/accelerator_partitioner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9109640Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/normalize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9110710Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/optimization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9111780Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/refinement_types.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9112910Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/graph_gradual_typechecker.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9114010Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9115010Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/sym_node.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9116040Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/unify_refinements.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9117120Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/merge_matmul.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9118130Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/debug.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9119200Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/schema_type_annotation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9120300Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/symbolic_shapes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9121370Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/_sym_dispatch_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9122400Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/_config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9123430Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/_backward_state.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9124520Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/experimental/proxy_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/experimental 2024-06-26T05:42:58.9125470Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/operator_schemas.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9126300Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9127100Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/__init__.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9127920Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/proxy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9128740Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/_lazy_graph_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9129560Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/traceback.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9130380Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9131020Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9131730Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/net_min_base.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9132680Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/param_fetch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9133610Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/tools_common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9134370Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/infra 2024-06-26T05:42:58.9135170Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/infra/partitioner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/infra 2024-06-26T05:42:58.9136360Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/infra/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/infra 2024-06-26T05:42:58.9137680Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/infra/pass_base.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/infra 2024-06-26T05:42:58.9138880Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/infra/pass_manager.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/infra 2024-06-26T05:42:58.9140100Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/split_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9141110Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/shape_prop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9142270Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/split_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9143530Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/runtime_assert.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9144630Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/reinplace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9146490Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/backends 2024-06-26T05:42:58.9147310Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/backends/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/backends 2024-06-26T05:42:58.9148410Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/backends/cudagraphs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/backends 2024-06-26T05:42:58.9149240Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/tests 2024-06-26T05:42:58.9150010Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/tests/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/tests 2024-06-26T05:42:58.9151120Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/tests/test_pass_manager.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/tests 2024-06-26T05:42:58.9152200Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9152940Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/utils 2024-06-26T05:42:58.9153900Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/utils/source_matcher_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/utils 2024-06-26T05:42:58.9155190Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/utils/matcher_with_name_node_map_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/utils 2024-06-26T05:42:58.9156330Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/utils/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/utils 2024-06-26T05:42:58.9157380Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/utils/common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/utils 2024-06-26T05:42:58.9158460Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/utils/matcher_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/utils 2024-06-26T05:42:58.9159630Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/utils/fuser_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/utils 2024-06-26T05:42:58.9160730Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/pass_manager.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9161790Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/fake_tensor_prop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9163010Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/operator_support.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9164070Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/annotate_getitem_nodes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9165150Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/graph_manipulation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9166380Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/dialect 2024-06-26T05:42:58.9167180Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/dialect/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/dialect 2024-06-26T05:42:58.9168060Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/dialect/common 2024-06-26T05:42:58.9168990Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/dialect/common/cse_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/dialect/common 2024-06-26T05:42:58.9170170Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/dialect/common/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes/dialect/common 2024-06-26T05:42:58.9171230Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/graph_drawer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9172290Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/splitter_base.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9173430Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/passes/graph_transform_observer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx/passes 2024-06-26T05:42:58.9174440Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/tensor_type.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9175370Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9176510Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/immutable_collections.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9177550Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/annotate.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9178670Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/subgraph_rewriter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9180420Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/interpreter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9181370Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/_symbolic_trace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9182630Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/node.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9184480Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/_compatibility.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9185300Z copying build/lib.macosx-11.1-arm64-3.9/torch/fx/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fx 2024-06-26T05:42:58.9186210Z copying build/lib.macosx-11.1-arm64-3.9/torch/_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:42:58.9188010Z copying build/lib.macosx-11.1-arm64-3.9/torch/_utils_internal.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:42:58.9189080Z copying build/lib.macosx-11.1-arm64-3.9/torch/quasirandom.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:42:58.9193840Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_prims_common 2024-06-26T05:42:58.9194620Z copying build/lib.macosx-11.1-arm64-3.9/torch/_prims_common/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_prims_common 2024-06-26T05:42:58.9195570Z copying build/lib.macosx-11.1-arm64-3.9/torch/_prims_common/wrappers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_prims_common 2024-06-26T05:42:58.9196290Z creating build/bdist.macosx-11.1-arm64/wheel/torch/multiprocessing 2024-06-26T05:42:58.9197060Z copying build/lib.macosx-11.1-arm64-3.9/torch/multiprocessing/queue.py -> build/bdist.macosx-11.1-arm64/wheel/torch/multiprocessing 2024-06-26T05:42:58.9198070Z copying build/lib.macosx-11.1-arm64-3.9/torch/multiprocessing/_atfork.py -> build/bdist.macosx-11.1-arm64/wheel/torch/multiprocessing 2024-06-26T05:42:58.9199060Z copying build/lib.macosx-11.1-arm64-3.9/torch/multiprocessing/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/multiprocessing 2024-06-26T05:42:58.9200050Z copying build/lib.macosx-11.1-arm64-3.9/torch/multiprocessing/spawn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/multiprocessing 2024-06-26T05:42:58.9201080Z copying build/lib.macosx-11.1-arm64-3.9/torch/multiprocessing/reductions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/multiprocessing 2024-06-26T05:42:58.9202120Z copying build/lib.macosx-11.1-arm64-3.9/torch/multiprocessing/pool.py -> build/bdist.macosx-11.1-arm64/wheel/torch/multiprocessing 2024-06-26T05:42:58.9202810Z creating build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9203430Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/streams.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9204260Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/error.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9205080Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/comm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9205980Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/memory.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9207120Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/jiterator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9208250Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/nccl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9209350Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9211140Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/_gpu_trace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9212180Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/_sanitizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9213280Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/random.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9214300Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/_memory_viz.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9216120Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/tunable.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9216930Z creating build/bdist.macosx-11.1-arm64/wheel/torch/cuda/amp 2024-06-26T05:42:58.9217670Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/amp/autocast_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda/amp 2024-06-26T05:42:58.9218790Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/amp/grad_scaler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda/amp 2024-06-26T05:42:58.9219880Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/amp/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda/amp 2024-06-26T05:42:58.9221050Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/amp/common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda/amp 2024-06-26T05:42:58.9222020Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/sparse.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9223070Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/nvtx.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9224120Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/graphs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9225580Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9226520Z copying build/lib.macosx-11.1-arm64-3.9/torch/cuda/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/cuda 2024-06-26T05:42:58.9228160Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include 2024-06-26T05:42:58.9228810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/sleef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2024-06-26T05:42:58.9231070Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9231850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/attr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9233010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/embed.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9234230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/numpy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9235650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/pybind11.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9237690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/operators.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9238730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/iostream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9239750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/gil.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9240860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/chrono.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9241970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/typing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9243160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/stl_bind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9244320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/buffer_info.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9245500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/options.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9246450Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/eigen 2024-06-26T05:42:58.9247360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/eigen/matrix.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/eigen 2024-06-26T05:42:58.9248600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/eigen/common.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/eigen 2024-06-26T05:42:58.9249720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/eigen/tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/eigen 2024-06-26T05:42:58.9250850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/functional.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9251930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/stl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9253580Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2024-06-26T05:42:58.9254470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/detail/type_caster_base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2024-06-26T05:42:58.9255640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/detail/typeid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2024-06-26T05:42:58.9256870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/detail/descr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2024-06-26T05:42:58.9258110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/detail/internals.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2024-06-26T05:42:58.9259250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/detail/common.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2024-06-26T05:42:58.9260380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/detail/class.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2024-06-26T05:42:58.9261500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/detail/init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11/detail 2024-06-26T05:42:58.9262610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/common.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9263670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/eval.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9264740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/cast.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9266150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/type_caster_pyobject_ptr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9267380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/eigen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9268440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/gil_safe_call_once.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9269500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/pytypes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9270910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pybind11/complex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/pybind11 2024-06-26T05:42:58.9271890Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2 2024-06-26T05:42:58.9272950Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2/serialize 2024-06-26T05:42:58.9273870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/caffe2/serialize/in_memory_adapter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2/serialize 2024-06-26T05:42:58.9275140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/caffe2/serialize/read_adapter_interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2/serialize 2024-06-26T05:42:58.9276390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/caffe2/serialize/crc_alt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2/serialize 2024-06-26T05:42:58.9277720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/caffe2/serialize/versions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2/serialize 2024-06-26T05:42:58.9278960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/caffe2/serialize/inline_container.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2/serialize 2024-06-26T05:42:58.9280260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/caffe2/serialize/file_adapter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2/serialize 2024-06-26T05:42:58.9281470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/caffe2/serialize/istream_adapter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/caffe2/serialize 2024-06-26T05:42:58.9282510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/cpuinfo.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2024-06-26T05:42:58.9284280Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch 2024-06-26T05:42:58.9285030Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9285880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/Size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9291290Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor 2024-06-26T05:42:58.9292270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/inductor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor 2024-06-26T05:42:58.9293240Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2024-06-26T05:42:58.9294320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runner/pybind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2024-06-26T05:42:58.9295780Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9297310Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9298840Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9299940Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:58.9301010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:58.9302440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:58.9303900Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9305360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:58.9306800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:58.9308250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime/interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:58.9309720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime/model.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:58.9311140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:58.9312590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_runtime/model_container.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2024-06-26T05:42:58.9313690Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2024-06-26T05:42:58.9314430Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2024-06-26T05:42:58.9315610Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9317190Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9318690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_torch/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2024-06-26T05:42:58.9320110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2024-06-26T05:42:58.9321530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2024-06-26T05:42:58.9322990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2024-06-26T05:42:58.9324040Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2024-06-26T05:42:58.9325140Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9326370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9327430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/Export.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9328480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/Device.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9329530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/THConcat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9330330Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/onnx 2024-06-26T05:42:58.9331230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/onnx/back_compat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/onnx 2024-06-26T05:42:58.9332390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/onnx/init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/onnx 2024-06-26T05:42:58.9333520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/onnx/onnx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/onnx 2024-06-26T05:42:58.9334600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/Event.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9335660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/Types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9336470Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed 2024-06-26T05:42:58.9337120Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2024-06-26T05:42:58.9337850Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2024-06-26T05:42:58.9339090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/context/container.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2024-06-26T05:42:58.9340720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/context/context.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2024-06-26T05:42:58.9341910Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2024-06-26T05:42:58.9343240Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9345150Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9346890Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9348600Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9350350Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9352120Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9353850Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9355560Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9357260Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9358980Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9360230Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2024-06-26T05:42:58.9361480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2024-06-26T05:42:58.9363170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2024-06-26T05:42:58.9364350Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9365360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9366710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/rref_context.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9368160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/request_callback_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9369570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/python_resp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9370930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/rref_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9372350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/request_callback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9373720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9375070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/rref_proto.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9376420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/py_rref.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9377770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/rpc_agent.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9379160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/python_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9380570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/message.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9382000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9383430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/python_remote_call.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9384840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/python_call.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9386220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9387780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/script_remote_call.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9389220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/script_resp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9390590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/rpc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9392070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/rpc_command_base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9393460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/script_call.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9394900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9396420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/torchscript_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9397870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9399300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9400740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/agent_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9406830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2024-06-26T05:42:58.9407870Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9408940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9410340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/error.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9411760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9413210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/logger.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9414570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/Work.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9415970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9417370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/debug.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9418790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9420200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/Store.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9421610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9423060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9424590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/ProcessGroupCudaP2P.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9426080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9427540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/RankLocal.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9429010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9430430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/FileStore.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9431820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/reducer.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9433310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9434770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9436140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/logging.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9437560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9438990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/comm.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9440370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/TCPStore.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9441820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/python_comm_hook.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9443270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9444000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9444710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9445370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9446100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9446800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9447480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/HashStore.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9448160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/c10d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9448850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/sequence_num.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9449540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9450310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/SymmetricMemory.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9451040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9451720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/Backend.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9452430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/TraceUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9453090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/Utils.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9453760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/Types.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9454440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/exception.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9455130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9455830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/socket.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9456530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/intra_node_comm.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9457250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9457980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory.hpp -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2024-06-26T05:42:58.9458250Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9458560Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/generated 2024-06-26T05:42:58.9459290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/generated/python_return_types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/generated 2024-06-26T05:42:58.9460000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/generated/ViewFuncs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/generated 2024-06-26T05:42:58.9460710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/generated/python_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/generated 2024-06-26T05:42:58.9461470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/generated/VariableType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/generated 2024-06-26T05:42:58.9462170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/generated/Functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/generated 2024-06-26T05:42:58.9462900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/generated/variable_factories.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/generated 2024-06-26T05:42:58.9463560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9464180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/custom_function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9464830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_linalg_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9465470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/saved_variable_hooks.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9466140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/record_function_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9466730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/engine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9467350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_enum_tag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9467960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/graph_task.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9468530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/edge.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9469190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_nested_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9469840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/variable_info.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9470460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/saved_variable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9471050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_engine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9471700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_legacy_variable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9472320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/profiler_python.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9473010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9473670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_saved_variable_hooks.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9474290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_cpp_function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9474910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_hook.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9475560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/VariableTypeUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9476170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_autograd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9476810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/profiler_kineto.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9477410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/variable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9477710Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/utils 2024-06-26T05:42:58.9478370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/utils/warnings.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/utils 2024-06-26T05:42:58.9479060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/utils/wrap_outputs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/utils 2024-06-26T05:42:58.9479760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/utils/python_arg_parsing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/utils 2024-06-26T05:42:58.9480450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/utils/grad_layout_contract.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/utils 2024-06-26T05:42:58.9481270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/utils/lambda_post_hook.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/utils 2024-06-26T05:42:58.9481940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/utils/error_messages.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/utils 2024-06-26T05:42:58.9482720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_fft_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9484390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_variable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9485330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_torch_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9486130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/function_hook.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9487070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/input_metadata.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9488800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/grad_mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9489920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/jit_decomp_interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9491440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_sparse_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9492080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/symbolic.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9493150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/input_buffer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9494230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/profiler_legacy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9495840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/autograd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9496770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/cpp_hook.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9498220Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/functions 2024-06-26T05:42:58.9498900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/functions/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/functions 2024-06-26T05:42:58.9499880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/functions/pybind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/functions 2024-06-26T05:42:58.9500920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/functions/comm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/functions 2024-06-26T05:42:58.9502170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/functions/basic_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/functions 2024-06-26T05:42:58.9503200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/functions/accumulate_grad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/functions 2024-06-26T05:42:58.9504770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/functions/tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd/functions 2024-06-26T05:42:58.9505650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_special_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9506660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/FunctionsManual.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9508270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/forward_grad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9509130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_anomaly_mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9510460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_nn_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9511440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/InferenceMode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9512460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/python_variable_indexing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9513370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/profiler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9514430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9515900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/autograd/anomaly_mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/autograd 2024-06-26T05:42:58.9517370Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2024-06-26T05:42:58.9518030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2024-06-26T05:42:58.9518890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda/THCP.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2024-06-26T05:42:58.9520320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda/nccl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2024-06-26T05:42:58.9521240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda/memory_snapshot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2024-06-26T05:42:58.9522740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda/python_nccl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2024-06-26T05:42:58.9523440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda/device_set.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2024-06-26T05:42:58.9524380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda/Event.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2024-06-26T05:42:58.9525450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda/python_comm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2024-06-26T05:42:58.9526980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda/comm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2024-06-26T05:42:58.9527960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda/Stream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2024-06-26T05:42:58.9529100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/cuda/Module.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/cuda 2024-06-26T05:42:58.9530120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/serialization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9531750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/Exceptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9532840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/itt_wrapper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9534070Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/xpu 2024-06-26T05:42:58.9534670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/xpu/Event.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/xpu 2024-06-26T05:42:58.9536100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/xpu/Stream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/xpu 2024-06-26T05:42:58.9536800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/xpu/Module.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/xpu 2024-06-26T05:42:58.9542080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/QScheme.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9542350Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2024-06-26T05:42:58.9542950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo/cache_entry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2024-06-26T05:42:58.9543530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2024-06-26T05:42:58.9544130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo/cpython_defs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2024-06-26T05:42:58.9544780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo/cpp_shim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2024-06-26T05:42:58.9545360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo/extra_state.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2024-06-26T05:42:58.9545990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo/compiled_autograd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2024-06-26T05:42:58.9546700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo/eval_frame.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2024-06-26T05:42:58.9547750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo/debug_macros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2024-06-26T05:42:58.9548760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo/python_compiled_autograd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2024-06-26T05:42:58.9550070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo/init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2024-06-26T05:42:58.9550880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/dynamo/guards.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/dynamo 2024-06-26T05:42:58.9552470Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9553050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/object_ptr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9554040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/tensor_numpy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9555490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/tensor_dtypes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9556230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/python_tuples.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9557230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/nested.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9558650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/python_raii.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9559450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/python_numbers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9560910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/python_scalars.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9561860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/pybind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9563410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/tensor_types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9564260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/tensor_memoryformats.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9565260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/python_arg_parser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9567100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/python_torch_function_mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9567800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/schema_info.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9568830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/tensor_new.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9570410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/tensor_qschemes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9571260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/verbose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9572170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/python_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9573160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/tensor_list.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9574260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/invalid_arguments.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9575370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/pythoncapi_compat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9576930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/cpp_stacktraces.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9577760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/device_lazy_init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9578780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/python_strings.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9579780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/python_symnode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9581230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/byte_order.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9582070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/pycfunction_helpers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9583500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/cuda_enabled.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9584220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/numpy_stub.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9585210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/out_types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9586650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/tensor_layouts.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9587270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/structseq.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9588470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/throughput_benchmark.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9589510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/disable_torch_function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9591220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/pyobject_preservation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9592150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/throughput_benchmark-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9593650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/tensor_flatten.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9594500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/torch_dispatch_mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9595460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/tensor_apply.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9596660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9597910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/python_compat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9598790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/six.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9599950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/python_stub.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9601110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/utils/variadic.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/utils 2024-06-26T05:42:58.9602130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/Stream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9603260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/DataLoader.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9604220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/THP.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9605630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/python_headers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9606390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/Layout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9607850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/DynamicTypes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9608700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/copy_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9610140Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit 2024-06-26T05:42:58.9610710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/jit_opt_limit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit 2024-06-26T05:42:58.9612360Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9613010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/error_report.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9613870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/source_range.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9615530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/edit_distance.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9616550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9617730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/schema_matching.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9618790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/function_schema_parser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9619790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/tree_views.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9621270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/ir_emitter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9622160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/parser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9623260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/strtod.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9624370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/tree.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9625480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/concrete_module_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9627090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/builtin_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9627870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/exit_transforms.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9628980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/parse_string_literal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9630010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/sugared_value.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9631850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/inline_loop_condition.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9632600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/name_mangler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9633400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/tracer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9635380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/resolver.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9636110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/script_type_parser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9637070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/schema_type_parser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9638070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/lexer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9639760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/versioned_symbols.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9640530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/convert_to_ssa.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9641630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/source_ref.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9643260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/mini_environment.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9644090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/frontend/parser_constants.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/frontend 2024-06-26T05:42:58.9645450Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9646100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python/pybind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9647110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9648140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python/python_ir.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9649240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python/script_init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9650450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python/python_tree_views.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9651380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python/python_list.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9652520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python/python_ivalue.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9653520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python/python_dict.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9654610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python/python_custom_class.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9655780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python/update_graph_executor_opt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9656750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python/python_tracer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9658220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python/pybind_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9659180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python/init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9660350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python/python_sugared_value.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9661880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python/python_arg_flatten.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9662620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/python/module_python.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/python 2024-06-26T05:42:58.9663980Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9664730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9665890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9667080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9668890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9669960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/lowerings.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9671070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/graph_opt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9672710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9674090Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:58.9674850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:58.9676450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:58.9677360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators/operators.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:58.9679130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators/misc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:58.9680210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:58.9681170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators/norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:58.9682320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:58.9683520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:58.9685210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2024-06-26T05:42:58.9686020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9687520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9688470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9690120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/ir.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9691710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/exceptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9692490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9694180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/hash_provider.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9694990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/ir_printer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9695980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9696970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9698030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/expr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9699850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/cuda_random.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9700620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/codegen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9701660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9703300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9704350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9705460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/eval.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9706560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9707650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9708800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/block_codegen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9710030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9711690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/kernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9712570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/loopnest.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9714170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9715130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9719810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9720610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9721360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/external_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9722020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/stmt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9722690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/half_support.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9723420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/registerizer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9724090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/reduction.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9724750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9725560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9726670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/tensorexpr/analysis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2024-06-26T05:42:58.9728130Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:58.9728730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir/named_value.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:58.9730300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir/irparser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:58.9730980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir/ir.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:58.9732580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir/graph_node_list.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:58.9733450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir/ir_views.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:58.9735080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir/alias_analysis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:58.9736060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir/attributes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:58.9737150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir/type_hashing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:58.9738230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir/constants.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:58.9739290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir/subgraph_matcher.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:58.9740300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir/scope.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:58.9741750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir/graph_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:58.9742520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/ir/node_hashing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/ir 2024-06-26T05:42:58.9744230Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9744920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/import_read.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9745900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/export_bytecode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9747000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/import_source.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9747990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/export.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9749700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/import_export_helpers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9750520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/type_name_uniquer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9751420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/pickler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9753250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/storage_context.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9754090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/python_print.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9755190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9756230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/import_export_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9757260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9758250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/pickle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9759870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/import_export_constants.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9760760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9761700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/import.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9762840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9763830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/unpickler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9765100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/source_range_serialization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9766260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9767910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/serialization/onnx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/serialization 2024-06-26T05:42:58.9769290Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:58.9770010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends/backend_debug_handler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:58.9771020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends/backend_interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:58.9772080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends/backend.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:58.9773210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends/backend_exception.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:58.9774300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends/backend_debug_info.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:58.9775320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends/backend_resolver.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:58.9777000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends/backend_preprocess.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:58.9777860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends/backend_detail.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:58.9778660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/backends/backend_init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/backends 2024-06-26T05:42:58.9780150Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9780830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9781920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9782940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9783960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/operator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9785260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/script_profile.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9786200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/interpreter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9787710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/register_ops_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9788790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/jit_exception.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9789800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/exception_message.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9790830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/argument_spec.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9792420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/shape_function_registry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9793340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/logging.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9794780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/jit_trace.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9795630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9796750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9797790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9799340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/custom_operator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9800140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/vararg_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9801000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/graph_iterator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9802520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/symbolic_script.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9803300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/variable_tensor_list.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9804440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/decomposition_registry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9805570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9806550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/autodiff.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9807580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/print_handler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9808670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/profiling_record.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9810090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9810990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/graph_executor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9811990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/operator_options.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9813150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/instruction.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9814180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/runtime/graph_executor_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/runtime 2024-06-26T05:42:58.9816210Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9816940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/remove_expands.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9817830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/restore_mutation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9818760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/peephole_list_idioms.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9820280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/subgraph_rewrite.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9820980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/fuse_relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9822100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/guard_elimination.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9823220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9824190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/freeze_module.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9825260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/clear_undefinedness.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9826350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/dtype_analysis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9827980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/peephole.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9828730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/remove_dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9829700Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9830700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/value_refinement_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9831770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/metal_rewrite.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9832790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/liveness.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9834300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/remove_mutation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9835150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9836320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9837400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/batch_mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9838540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/frozen_concat_linear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9839600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/constant_pooling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9841170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9841950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9842930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9843930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/fuse_linear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9845040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/annotate_warns.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9846190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/specialize_autogradzero.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9847340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/frozen_linear_folding.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9848230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/prepack_folding.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9849320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/frozen_conv_folding.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9851030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/constant_propagation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9851940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9852770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/insert_guards.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9854200Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2024-06-26T05:42:58.9854920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/utils/optimization_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2024-06-26T05:42:58.9855920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/utils/memory_dag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2024-06-26T05:42:58.9857380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2024-06-26T05:42:58.9858180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/utils/op_registry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2024-06-26T05:42:58.9859230Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9860160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/variadic_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9861320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/refine_tuple_types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9862270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/inliner.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9863640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/lower_grad_of.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9865050Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:58.9865830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/quantization/helper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:58.9867520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/quantization/quantization_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:58.9868480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/quantization/insert_observers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:58.9869410Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9870610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:58.9872350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/quantization/finalize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:58.9873450Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9874420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2024-06-26T05:42:58.9875440Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9876400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/normalize_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9877460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/device_type_analysis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9878570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/vulkan_rewrite.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9879630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/erase_number_types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9880770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/integer_value_refinement.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9881710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/fold_linear_bn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9882840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9884240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/graph_fuser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9885020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/fold_conv_bn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9886040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9887140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/inline_forked_closures.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9888130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9889260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9894240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9895050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/add_if_then_else.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9895710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/decompose_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9896380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/peephole_non_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9897050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/remove_inplace_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9897710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/inline_fork_wait.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9898360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/check_strict_fusion.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9899020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/concat_opt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9899740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9900620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/eliminate_no_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9901870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/requires_grad_analysis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9902890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/dead_code_elimination.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9904420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/clear_profiling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9905200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/create_functional_graphs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9906190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/bailout_graph.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9907110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/lower_tuples.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9908660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9909330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9910390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/canonicalize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9911460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9912570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9913560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/loop_unrolling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9914610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/shape_analysis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9916130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9917020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/remove_exceptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9917930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9919540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/inplace_check.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9920330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9921130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9922090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/pass_manager.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9923610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/onnx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9924430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9925440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/lift_closures.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9926610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/autocast.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9927640Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9928800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/passes/lower_graph.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/passes 2024-06-26T05:42:58.9930430Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/codegen 2024-06-26T05:42:58.9931000Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/codegen/cuda 2024-06-26T05:42:58.9931890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/codegen/cuda/interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/codegen/cuda 2024-06-26T05:42:58.9933250Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/testing 2024-06-26T05:42:58.9933890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/testing/file_check.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/testing 2024-06-26T05:42:58.9935100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/testing/hooks_for_testing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/testing 2024-06-26T05:42:58.9936180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/jit_log.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit 2024-06-26T05:42:58.9937680Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9938340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9939430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/parse_operators.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9940370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/observer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9941910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/upgrader_mobile.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9942750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9943630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/quantization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9944710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/profiler_edge.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9945850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/code.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9946860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/interpreter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9947920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/frame.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9949050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/method.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9950120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/debug_info.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9951220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9952270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/prim_ops_registery.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9953920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/parse_bytecode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9954680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/import_data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9955560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/import_export_common.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9956640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/type_parser.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9957640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/import.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9959150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/module.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9959900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9960900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/mobile/file_format.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/mobile 2024-06-26T05:42:58.9962020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/resource_guard.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit 2024-06-26T05:42:58.9963430Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/api 2024-06-26T05:42:58.9964060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/api/function_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/api 2024-06-26T05:42:58.9973670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/api/method.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/api 2024-06-26T05:42:58.9974480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/api/compilation_unit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/api 2024-06-26T05:42:58.9976050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/api/object.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/api 2024-06-26T05:42:58.9977570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/jit/api/module.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/jit/api 2024-06-26T05:42:58.9979410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/Storage.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:58.9980620Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy 2024-06-26T05:42:58.9982110Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:58.9982980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/debug_util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:58.9984580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/tensor_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:58.9985460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/config.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:58.9986730Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core/internal_ops 2024-06-26T05:42:58.9987530Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:58.9989040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/multi_wait.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:58.9990680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/ir.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:58.9992170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/permutation_util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:58.9993170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/lazy_graph_executor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:58.9995820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/cache.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:58.9996840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/tensor_util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:58.9998290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/shape.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:59.0000360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/thread_pool.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:59.0002850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/unique.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:59.0003880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/shape_inference.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:59.0005630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:59.0007170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/ir_util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:59.0008680Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2024-06-26T05:42:59.0009360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/ops/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2024-06-26T05:42:59.0010370Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0011980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/metrics.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:59.0012950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/ir_dump_util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:59.0014090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/dynamic_ir.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:59.0015710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/ir_builder.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:59.0016610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/helpers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:59.0018210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/trie.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:59.0018980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:59.0019970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/hash.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:59.0021470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/core/ir_metadata.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/core 2024-06-26T05:42:59.0022620Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/python 2024-06-26T05:42:59.0023270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/python/python_util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/python 2024-06-26T05:42:59.0024600Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2024-06-26T05:42:59.0025290Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0026370Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0027360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/ts_backend/config.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2024-06-26T05:42:59.0028540Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0029630Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0031240Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0032030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2024-06-26T05:42:59.0033260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/ts_backend/ts_node.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2024-06-26T05:42:59.0034240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/ts_backend/ir_builder.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2024-06-26T05:42:59.0035860Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0037040Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/backend 2024-06-26T05:42:59.0037890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/backend/backend_interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/backend 2024-06-26T05:42:59.0039570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/backend/backend_data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/backend 2024-06-26T05:42:59.0043930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/backend/lowering_context.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/backend 2024-06-26T05:42:59.0045140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/lazy/backend/backend_device.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/lazy/backend 2024-06-26T05:42:59.0046740Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api 2024-06-26T05:42:59.0047370Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include 2024-06-26T05:42:59.0048690Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.0049360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/fft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.0051070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nested.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.0051900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.0052970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/version.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.0054330Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2024-06-26T05:42:59.0055570Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2024-06-26T05:42:59.0056410Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0057380Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0059040Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0060280Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0061110Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0062360Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0063740Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0064750Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0066040Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0067340Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0068360Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0070120Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0071100Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0072760Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0073670Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0074880Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0076170Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0077360Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0079170Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0080100Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0081140Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0082710Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0083950Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/parallel 2024-06-26T05:42:59.0084920Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0085780Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0091250Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2024-06-26T05:42:59.0092050Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0092860Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0093750Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0094480Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0095230Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0095950Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0096700Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0097410Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0097930Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2024-06-26T05:42:59.0098760Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0099780Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0100950Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0102780Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0256200Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.0258230Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1095830Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1097710Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1099510Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1101050Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2024-06-26T05:42:59.1102130Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1104130Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1107370Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1110360Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1112360Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1114320Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1115940Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1117010Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1118310Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1120220Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1121340Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1137960Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1139280Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1141020Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1141970Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1143260Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1145560Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1146540Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1148480Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1152760Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1154620Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1156310Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1158110Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1161000Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1162910Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1164740Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1166300Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2024-06-26T05:42:59.1167170Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1168510Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1169780Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1171040Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1172350Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1173510Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1175230Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1176270Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1177550Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1178840Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1180010Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1181850Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1182930Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1184760Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1185700Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1186700Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1188310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/enum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1189180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1190830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/all.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1191640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1192730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/arg.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1194330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/xpu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1195690Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2024-06-26T05:42:59.1196490Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1200830Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1201810Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1202820Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1204570Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1205800Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1207860Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1209220Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2024-06-26T05:42:59.1210210Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1211490Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1212680Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1213760Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1215360Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2024-06-26T05:42:59.1216150Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1217270Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1218480Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1219680Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1220610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/torch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1222210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/optim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1222990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/jit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1224490Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/detail 2024-06-26T05:42:59.1225250Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1226380Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1228170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/nn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1229160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/imethod.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1230730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/ordered_dict.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1232410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/cuda.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1233260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/autograd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1234310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/linalg.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1236010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/special.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1237080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/sparse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1238730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/mps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1239720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/python.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1241140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/serialize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1242310Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2024-06-26T05:42:59.1243110Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1244210Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1245330Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2024-06-26T05:42:59.1246160Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1247250Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1248380Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1249440Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1251180Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1252220Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1253270Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1254230Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1255510Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1256610Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2024-06-26T05:42:59.1257460Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1258560Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1259760Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1260690Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1262030Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2024-06-26T05:42:59.1262880Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1264230Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1265110Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1266300Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1267370Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1268560Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2024-06-26T05:42:59.1269410Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1270430Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1271510Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1272580Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1273650Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1274910Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1276040Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1277410Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1278510Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1279990Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1281270Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2024-06-26T05:42:59.1282450Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1284490Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1285550Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1286740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/api/include/torch/expanding_array.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/api/include/torch 2024-06-26T05:42:59.1287830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/MemoryFormat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:59.1289180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/StorageSharing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:59.1290430Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2024-06-26T05:42:59.1291390Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/stubs 2024-06-26T05:42:59.1292160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/stubs/base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/stubs 2024-06-26T05:42:59.1293430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/combined_traceback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2024-06-26T05:42:59.1294790Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2024-06-26T05:42:59.1295560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2024-06-26T05:42:59.1296600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/standalone/nvtx_observer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2024-06-26T05:42:59.1297920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/standalone/itt_observer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2024-06-26T05:42:59.1298840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2024-06-26T05:42:59.1300030Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/python 2024-06-26T05:42:59.1305090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/python/pybind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/python 2024-06-26T05:42:59.1305980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/python/combined_traceback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/python 2024-06-26T05:42:59.1306700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/python/init.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/python 2024-06-26T05:42:59.1307300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/events.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2024-06-26T05:42:59.1307910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/kineto_shim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2024-06-26T05:42:59.1308530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/api.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2024-06-26T05:42:59.1309110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/util.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2024-06-26T05:42:59.1309440Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2024-06-26T05:42:59.1310190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/orchestration/vulkan.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2024-06-26T05:42:59.1310960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/orchestration/observer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2024-06-26T05:42:59.1312060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/orchestration/python_tracer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2024-06-26T05:42:59.1313120Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1313880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind/unwinder.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1315060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind/dwarf_enums.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1316130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind/unwind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1317420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind/sections.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1318450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind/unwind_error.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1319700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1320700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind/debug_info.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1322100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind/action.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1322970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind/mem_file.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1324040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1325170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind/fde.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1326730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind/communicate.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1327550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind/lexer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1328810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind/line_number_program.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1329950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1331110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/unwind/range_table.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2024-06-26T05:42:59.1332100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/containers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2024-06-26T05:42:59.1333160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/collection.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2024-06-26T05:42:59.1334620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/perf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2024-06-26T05:42:59.1335540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/data_flow.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2024-06-26T05:42:59.1336760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/profiler/perf-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/profiler 2024-06-26T05:42:59.1337890Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/tensor 2024-06-26T05:42:59.1338650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/tensor/python_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc/tensor 2024-06-26T05:42:59.1339650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/PyInterpreter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:59.1340850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/Dtype.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:59.1341970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/Module.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:59.1343160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/python_dimname.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:59.1344060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/CudaIPCTypes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:59.1345210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/Generator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:59.1346160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/TypeInfo.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:59.1347270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/csrc/StorageMethods.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch/csrc 2024-06-26T05:42:59.1348420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/script.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch 2024-06-26T05:42:59.1349430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/library.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch 2024-06-26T05:42:59.1350880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/custom_class_detail.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch 2024-06-26T05:42:59.1352000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/custom_class.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch 2024-06-26T05:42:59.1353250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/torch/extension.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/torch 2024-06-26T05:42:59.1354440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/nnpack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2024-06-26T05:42:59.1355960Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1356640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/kineto/ClientInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1357830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/kineto/GenericTraceActivity.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1358750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/kineto/IActivityProfiler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1359920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/kineto/Config.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1361390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/kineto/TraceSpan.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1362480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/kineto/LoggingAPI.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1363370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/kineto/ITraceActivity.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1364610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/kineto/ActivityProfilerInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1365590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/kineto/ActivityTraceInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1366530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/kineto/output_base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1367800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/kineto/ThreadUtil.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1368700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/kineto/ActivityType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1369870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/kineto/libkineto.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1371130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/kineto/time_since_epoch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1372230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/kineto/ILoggerObserver.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1373470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/kineto/AbstractConfig.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/kineto 2024-06-26T05:42:59.1374370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/xnnpack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2024-06-26T05:42:59.1377060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/libshm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2024-06-26T05:42:59.1378180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/fp16.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2024-06-26T05:42:59.1379380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/qnnpack_func.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2024-06-26T05:42:59.1380610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/pthreadpool.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2024-06-26T05:42:59.1382380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/clog.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2024-06-26T05:42:59.1383570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/omp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2024-06-26T05:42:59.1385780Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1386480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Formatting.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1387840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/NestedTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1389170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CPUFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1390260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/LegacyBatchedFallback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1391520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CollapseDims.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1392920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1393820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/MetaFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1395100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1396230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/TensorOptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1397440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/DeviceAccelerator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1398430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/TensorUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1399700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/MemoryOverlap.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1400850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/TensorSubclassLikeUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1402110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/LegacyVmapMode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1403360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/InitialTensorOptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1404450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Version.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1405560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/DLConvertor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1406830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Device.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1408120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/FuncTorchTLS.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1409680Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1410370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/Dict_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1411730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/Formatting.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1412840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/TensorBody.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1416310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/GeneratorForPrivateuseone.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1417640Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/op_registration 2024-06-26T05:42:59.1418390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/op_registration/adaption.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/op_registration 2024-06-26T05:42:59.1419880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/op_registration/op_allowlist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/op_registration 2024-06-26T05:42:59.1420970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/op_registration/op_registration.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/op_registration 2024-06-26T05:42:59.1422440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/op_registration/infer_schema.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/op_registration 2024-06-26T05:42:59.1423420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/jit_type_base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1424860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/typeid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1426080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/rref_interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1427240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/Range.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1428510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/interned_strings_class.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1429540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/operator_name.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1430870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1431820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/symbol.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1433130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/Backtrace.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1434250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/TransformationHelper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1435330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/blob.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1436700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/function_schema.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1438010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/type_factory.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1439410Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/dispatch 2024-06-26T05:42:59.1440210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/dispatch/OperatorOptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/dispatch 2024-06-26T05:42:59.1441550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/dispatch/RegistrationHandleRAII.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/dispatch 2024-06-26T05:42:59.1442750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/dispatch/ObservedOperators.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/dispatch 2024-06-26T05:42:59.1444130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/dispatch/DispatchKeyExtractor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/dispatch 2024-06-26T05:42:59.1445480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/dispatch/Dispatcher.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/dispatch 2024-06-26T05:42:59.1447080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/dispatch/CppSignature.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/dispatch 2024-06-26T05:42:59.1448040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/dispatch/OperatorEntry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/dispatch 2024-06-26T05:42:59.1450880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/MT19937RNGEngine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1452300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/ivalue_to.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1453260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/aten_interned_strings.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1454890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/dynamic_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1456310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/class_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1458000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/LegacyTypeDispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1459410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/function_schema_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1461030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/NestedIntSymNodeImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1461990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/qualified_name.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1463330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/UndefinedTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1464380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/NamedTensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1465560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/Scalar.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1466910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/CachingHostAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1468610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/functional.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1469640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/DeprecatedTypeProperties.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1470900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/interned_strings.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1472420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/List.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1474000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/ATenOpList.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1475210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/Dict.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1476730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/type_ptr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1477850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/grad_mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1479240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/DistributionsHelper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1480740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/VariableHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1481810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/CheckMemoryFormat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1483030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/ScalarType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1484030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/Array.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1485290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/ATen_fwd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1486320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/stack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1487710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/ATenGeneral.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1488720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/custom_class.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1490300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/IListRef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1491770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/UnsafeFromTH.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1492890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/PythonOpRegistrationTrampoline.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1494050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/TensorBase.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1499400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/ATen_pch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1500000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/QuantizerBase.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1500540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/enum_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1501060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/alias_info.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1501560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/List_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1502130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/TorchDispatchUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1502720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/enum_tag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1503690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/jit_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1505140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/IListRef_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1506500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/ivalue.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1507760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/Dimname.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1508550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/Vitals.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1509830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/PythonFallbackKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1511040Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing 2024-06-26T05:42:59.1511960Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing/impl 2024-06-26T05:42:59.1512730Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1514190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing/impl/boxing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing/impl 2024-06-26T05:42:59.1515700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing/impl/test_helpers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing/impl 2024-06-26T05:42:59.1516810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing/impl 2024-06-26T05:42:59.1518040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing/impl 2024-06-26T05:42:59.1519050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing/KernelFunction.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing 2024-06-26T05:42:59.1520350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing/OperatorKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing 2024-06-26T05:42:59.1521310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing/KernelFunction_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing 2024-06-26T05:42:59.1522740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing/BoxedKernel_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing 2024-06-26T05:42:59.1523650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/boxing/BoxedKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core/boxing 2024-06-26T05:42:59.1524960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/builtin_function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1525770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/DimVector.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1527050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/Reduction.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1527840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/Tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1529050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1529960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/Generator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1531180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/PhiloxRNGEngine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1532210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/TensorAccessor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1533570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/ivalue_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1535330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/core/Variadic.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/core 2024-06-26T05:42:59.1536570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1537480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/jiterator_macros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1538530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Operators.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1540050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CPUFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1541500Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2024-06-26T05:42:59.1542150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps/MPSProfiler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2024-06-26T05:42:59.1543520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps/EmptyTensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2024-06-26T05:42:59.1544550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps/MPSAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2024-06-26T05:42:59.1546080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps/MPSGuardImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2024-06-26T05:42:59.1546870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps/MPSHooks.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2024-06-26T05:42:59.1547980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps/MPSEvent.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2024-06-26T05:42:59.1549350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps/MPSDevice.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2024-06-26T05:42:59.1550020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps/MPSStream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2024-06-26T05:42:59.1551210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps/IndexKernels.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2024-06-26T05:42:59.1552840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps/MPSAllocatorInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2024-06-26T05:42:59.1553770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/mps/MPSGeneratorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/mps 2024-06-26T05:42:59.1555840Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1556450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/CompositeRandomAccessor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1557340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/MathBitsFallback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1558540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/TensorTransformations.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1559910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/ComplexHelper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1560680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/ConvUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1561910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Normalization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1562920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/ReductionType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1563910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Repeat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1565310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/layer_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1566070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/GridSampler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1567610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/TriangularOpsUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1568200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/UnfoldBackward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1569360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/batch_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1570310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Unfold3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1571840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Fill.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1572530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/LinearAlgebra.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1573460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/RangeFactories.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1574520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/RNN.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1576440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/IndexKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1576960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Pool.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1578340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Cross.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1579420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/im2col.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1580240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/TransposeType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1581870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/DispatchStub.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1582810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Unfold2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1583810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Distance.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1585190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/FunctionOfAMatrixUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1586550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mps 2024-06-26T05:42:59.1587150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/mps/TensorFactory.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mps 2024-06-26T05:42:59.1588080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/mps/MPSGraphSonomaOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mps 2024-06-26T05:42:59.1589340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/mps/MPSGraphVenturaOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mps 2024-06-26T05:42:59.1590630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/mps/UnaryConstants.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mps 2024-06-26T05:42:59.1591620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/mps/OperationUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mps 2024-06-26T05:42:59.1593080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/mps/Copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/mps 2024-06-26T05:42:59.1594120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Distributions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1595630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/MaxPooling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1596320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/SparseTensorUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1597750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/CPUFallback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1599120Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1599710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/IsContiguous.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1600710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/zmath.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1602250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/ReduceUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1603200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/mixed_data_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1603920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1605010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/int_mm_kernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1606490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/SampledAddmmKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1607290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/moments_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1608300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/ChannelShuffleKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1609350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/SpmmReduceKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1610820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/GridSamplerKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1612320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/SerialStackImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1613760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/Intrinsics.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1614590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/LogAddExp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1616070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/WeightNormKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1617660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/MaxUnpoolKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1618260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/SoftmaxKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1619200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/AtomicAddFloat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1620720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/Reduce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1621480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/CatKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1622950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/StackKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1623620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/DepthwiseConvKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1624660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/DistributionTemplates.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1626020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/PixelShuffleKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1627140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1628870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/IndexKernelUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1629720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/avx_mathfun.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1632710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/CopyKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1633750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cpu/Loops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cpu 2024-06-26T05:42:59.1635640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/FusedAdagrad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1636530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/GridSamplerUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1637920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/TopKImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1638780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/TensorAdvancedIndexingUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1639850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/DilatedConvolutionUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1641420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/ForeachUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1643010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/SobolEngineOpsUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1643780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/ReduceAllOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1645560Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1646590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/CompositeRandomAccessor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1647310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/Normalization.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1649290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/SortingRadixSelect.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1650710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/MiscUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1651550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/block_reduce.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1652450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/GridSampler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1653570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/TensorModeKernel.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1655500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/MemoryAccess.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1656990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/CuFFTPlanCache.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1657940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/RowwiseScaledMM.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1659410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/CUDAJitLoops.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1660230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/im2col.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1661440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/ScanKernels.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1662520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/IndexKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1663540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/SortUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1665280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/DeviceSqrt.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1666140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/Distributions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1667250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/UpSample.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1668540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/Randperm.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1669500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/vol2col.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1671280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/Pow.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1671930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/BinaryInternal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1672840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/reduction_template.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1674290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/fused_adamw_impl.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1675350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/Math.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1677140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/CuFFTUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1677920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/ReduceOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1679380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/SortingCommon.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1684370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/TensorTopK.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1685140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/ScanUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1685780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/TensorModeKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1686450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/MultiTensorApply.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1687120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1687720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/thread_constants.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1688290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/Resize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1688850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/Sorting.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1689840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1690670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/fused_adam_utils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1691620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/Activation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1692660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/JitLoops.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1693980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/KernelUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1695150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/ForeachFunctors.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1696850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1697900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/Loops.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1699530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/Sort.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1700350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/UniqueCub.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1701380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/CUDALoops.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1702940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/DistributionTemplates.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1703870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/GridSampler.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1705420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/PersistentSoftmax.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1706240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/Reduce.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1707890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/jit_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1708760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1710000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/SortStable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1711570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/LaunchUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1712600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/fused_adam_impl.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1714020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/cuda/Copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/cuda 2024-06-26T05:42:59.1715650Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2024-06-26T05:42:59.1716280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/ConvUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2024-06-26T05:42:59.1717300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/AffineQuantizer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2024-06-26T05:42:59.1718190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/IndexKernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2024-06-26T05:42:59.1719800Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:59.1720530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu/XnnpackUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:59.1722430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu/fbgemm_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:59.1723310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu/init_qnnpack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:59.1724330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu/conv_serialization.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:59.1726150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:59.1727060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu/qembeddingbag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:59.1728310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu/QnnpackUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:59.1729290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:59.1730260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu/OnednnUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:59.1732000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu/QuantUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:59.1733230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu/RuyUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:59.1734040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu/BinaryOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:59.1735170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/cpu/QuantizedOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized/cpu 2024-06-26T05:42:59.1736280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/AffineQuantizerBase.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2024-06-26T05:42:59.1737430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/FakeQuantAffine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2024-06-26T05:42:59.1738650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/PackedParams.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2024-06-26T05:42:59.1739460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/quantized/Copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/quantized 2024-06-26T05:42:59.1740840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Lerp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1741540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/ReduceOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1742680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/TensorAdvancedIndexing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1743690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/UnaryOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1745060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/SortingUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1746120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/MathBitFallThroughLists.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1747060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/StridedRandomAccessor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1748550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/TensorShape.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1749330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/IndexingUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1750300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/UpSample.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1752020Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/utils 2024-06-26T05:42:59.1752710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/utils/ParamUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/utils 2024-06-26T05:42:59.1754230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/utils/ParamsHash.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/utils 2024-06-26T05:42:59.1754930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/utils/Factory.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/utils 2024-06-26T05:42:59.1755980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/ResizeCommon.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1757530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/SharedReduceOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1759070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Resize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1759910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/SpectralOpsUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1760970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Sorting.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1762040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/NonSymbolicBC.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1763540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/TensorProperties.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1764350Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/transformers 2024-06-26T05:42:59.1765160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/transformers/attention.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/transformers 2024-06-26T05:42:59.1766260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/transformers/sdp_utils_cpp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/transformers 2024-06-26T05:42:59.1767990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/BucketizationUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1768730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/vol2col.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1769930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/LossMulti.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1770820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/NonEmptyUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1772250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/TensorDimApply.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1772930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/verbose_wrapper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1774120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/AdaptivePooling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1775130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/ConvolutionMM3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1776120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/group_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1777540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Histogram.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1778200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Activation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1779180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Math.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1781390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/FusedAdam.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1782260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/ScatterGatherChecks.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1783490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/CPUBlas.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1785260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/CompositeRandomAccessorCommon.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1786090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/BatchLinearAlgebra.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1787680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/AmpKernels.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1788530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/DistributionTemplates.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1790550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/TensorIterator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1791500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/TensorConversions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1792700Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/nested 2024-06-26T05:42:59.1793390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/nested/NestedTensorUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/nested 2024-06-26T05:42:59.1795360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/nested/NestedTensorTransformerUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/nested 2024-06-26T05:42:59.1796140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/nested/NestedTensorMath.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/nested 2024-06-26T05:42:59.1797300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/nested/NestedTensorBinaryOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/nested 2024-06-26T05:42:59.1798360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/nested 2024-06-26T05:42:59.1799450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/nested/NestedTensorFactories.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native/nested 2024-06-26T05:42:59.1800490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/FractionalMaxPooling.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1801430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/ReduceOpsUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1802710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/TensorFactories.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1804240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/PointwiseOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1804780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/BinaryOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1806380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Pow.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1807040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/EmbeddingBag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1807960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/im2col_shape_check.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1809050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/SegmentReduce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1810600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/FusedSGD.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1811190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Padding.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1812350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/TensorCompare.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1813250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/PixelShuffle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1814780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/LinearAlgebraUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1815570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/TypeProperties.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1816550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/Copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1818060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/CanUse32BitIndexMath.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1818830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/native/TensorIteratorDynamicCasting.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/native 2024-06-26T05:42:59.1819670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ceil_div.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1820970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/EmptyTensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1821860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/NativeMetaFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1823530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/dlpack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1824350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Config.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1825720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ThreadLocalPythonObjects.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1826560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Backtrace.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1828130Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu 2024-06-26T05:42:59.1828650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/Utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu 2024-06-26T05:42:59.1830040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/FlushDenormal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu 2024-06-26T05:42:59.1830590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vml.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu 2024-06-26T05:42:59.1832250Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2024-06-26T05:42:59.1832820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec_half.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2024-06-26T05:42:59.1833850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec_mask.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2024-06-26T05:42:59.1835280Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:59.1835950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:59.1837720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vec256_float_neon.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:59.1838610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:59.1839780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vec256_mask.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:59.1840820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vec256_half_neon.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:59.1842030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vec256_qint.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:59.1843630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:59.1844600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vec256_double.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:59.1846400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vec256_float.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:59.1847390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:59.1849100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vec256.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:59.1850450Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/zarch 2024-06-26T05:42:59.1851130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/zarch 2024-06-26T05:42:59.1852950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vec256_convert.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:59.1854380Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2024-06-26T05:42:59.1855180Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1856260Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1857900Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1859660Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1860670Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1862680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2024-06-26T05:42:59.1863570Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1869580Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1870570Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1871270Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1872020Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1872740Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1873410Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.1874030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vec256_int.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:59.1874680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2024-06-26T05:42:59.1875740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2024-06-26T05:42:59.1876680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec_convert.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2024-06-26T05:42:59.1878240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/intrinsics.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2024-06-26T05:42:59.1879270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/functional_bfloat16.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2024-06-26T05:42:59.1880790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/functional.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2024-06-26T05:42:59.1882280Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:59.1882920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512/vec512_int.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:59.1884520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512/vec512_convert.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:59.1885400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:59.1887060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:59.1887980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512/vec512_mask.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:59.1889640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:59.1890810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512/vec512_double.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:59.1891970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512/vec512_qint.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:59.1893430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512/vec512_float.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:59.1894330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec512/vec512.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2024-06-26T05:42:59.1895750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec_n.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2024-06-26T05:42:59.1896860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/functional_base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2024-06-26T05:42:59.1898750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpu/vec/vec_base.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cpu/vec 2024-06-26T05:42:59.1899600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/SparseCsrTensorUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1901080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/TracerMode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1901940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/BlasBackend.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1903370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Backend.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1904170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/RegistrationDeclarations.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1909890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CompositeImplicitAutogradFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1910560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/PTThreadPool.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1911650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/OpaqueTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1912710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/MapAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1914360Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1914890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/CUDADevice.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1916030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/CUDAUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1917390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/CUDABlas.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1918970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/CUDAGeneratorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1919730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/AsmUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1921090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/Sleep.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1921920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/PinnedMemoryAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1923300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/DeviceUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1923980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/jiterator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1925450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/cub_definitions.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1926210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/CUDASparseDescriptors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1927640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/EmptyTensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1928510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/ApplyGridUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1930000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/PeerToPeerAccess.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1930630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/CUDAEvent.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1931820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/PhiloxUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1932760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/CUDAContext.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1934170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/Exceptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1935020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/ScanUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1936410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/NumericLimits.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1937210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/CUDATensorMethods.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1938580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/cub.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1940180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/CUDAGraphsUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1941030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/CachingHostAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1942410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/CUDADataType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1943070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/cub.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1944750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/CUDAContextLight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1945390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/CUDAGraph.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1948190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/CUDAApplyUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1949500Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2024-06-26T05:42:59.1950300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail/TensorInfo.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2024-06-26T05:42:59.1951950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail/CUDAHooks.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2024-06-26T05:42:59.1952690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail/KernelUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2024-06-26T05:42:59.1954420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail/IntegerDivider.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2024-06-26T05:42:59.1955280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail/LazyNVRTC.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2024-06-26T05:42:59.1957040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2024-06-26T05:42:59.1957790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail/DeviceThreadHandles.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2024-06-26T05:42:59.1958950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail/OffsetCalculator.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2024-06-26T05:42:59.1960660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail/IndexUtils.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2024-06-26T05:42:59.1962230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/detail/UnpackRaw.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/detail 2024-06-26T05:42:59.1962900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/ThrustAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1964460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/Atomic.cuh -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1965190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/llvm_jit_strings.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1966620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/CUDASparse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1967460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/PhiloxCudaState.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1968970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/jiterator_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1970870Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/tunable 2024-06-26T05:42:59.1971480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/tunable/TunableOp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/tunable 2024-06-26T05:42:59.1972510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/tunable/StreamTimer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/tunable 2024-06-26T05:42:59.1973950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/tunable/TunableGemm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/tunable 2024-06-26T05:42:59.1974960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/tunable/GemmCommon.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/tunable 2024-06-26T05:42:59.1976440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/tunable/GemmHipblaslt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/tunable 2024-06-26T05:42:59.1977630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/tunable/GemmRocblas.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/tunable 2024-06-26T05:42:59.1979380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/tunable/Tunable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda/tunable 2024-06-26T05:42:59.1980040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/ATenCUDAGeneral.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1981020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cuda/CUDASparseBlas.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cuda 2024-06-26T05:42:59.1983200Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/quantized 2024-06-26T05:42:59.1983770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/quantized/QTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/quantized 2024-06-26T05:42:59.1984710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/quantized/Quantizer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/quantized 2024-06-26T05:42:59.1986040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/record_function.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1987250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/WrapDimUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.1988630Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu 2024-06-26T05:42:59.1989160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/xpu/XPUEvent.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu 2024-06-26T05:42:59.1990280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/xpu/XPUDevice.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu 2024-06-26T05:42:59.1991670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/xpu/PinnedMemoryAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu 2024-06-26T05:42:59.1992410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/xpu/CachingHostAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu 2024-06-26T05:42:59.1993780Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu/detail 2024-06-26T05:42:59.1994370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/xpu/detail/XPUHooks.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu/detail 2024-06-26T05:42:59.1995820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/xpu/XPUGeneratorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu 2024-06-26T05:42:59.1996380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/xpu/XPUContext.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/xpu 2024-06-26T05:42:59.1997810Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/miopen 2024-06-26T05:42:59.1998370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/miopen/Utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/miopen 2024-06-26T05:42:59.1999600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/miopen/Types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/miopen 2024-06-26T05:42:59.2000610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/miopen/Descriptors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/miopen 2024-06-26T05:42:59.2001940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/miopen/miopen-wrapper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/miopen 2024-06-26T05:42:59.2002920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/miopen/Exceptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/miopen 2024-06-26T05:42:59.2003880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/miopen/Handle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/miopen 2024-06-26T05:42:59.2005120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/RedispatchFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2038760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Context.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2039930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2041050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2042350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/div_rtn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2043200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ExpandUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2045030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/MPSFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2046470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/TypeDefault.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2047290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/MPSFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2048720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/VmapGeneratedPlumbing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2058230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/MethodOperators.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2059710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CPUFixedAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2060440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/NamedTensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2061760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Scalar.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2062630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/TensorIteratorInternal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2064020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/LinalgBackend.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2064700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/LegacyBatchedTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2066030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ArrayRef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2066830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/SequenceNumber.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2068290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/FunctionalStorageImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2068980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ExpandBase.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2070340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Parallel-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2071020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/MatrixRef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2072470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CUDAFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2073470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CompositeExplicitAutogradFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2074470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/FunctionalTensorWrapper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2075940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/SparseCsrTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2076780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/NumericUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2078130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ATen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2078990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/TensorNames.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2080290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/TensorMeta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2081100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/TensorIndexing.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2082700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Layout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2083440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/SparseTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2085200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/SavedTensorHooks.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2086550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2024-06-26T05:42:59.2087180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail/PrivateUse1HooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2024-06-26T05:42:59.2088650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail/AcceleratorHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2024-06-26T05:42:59.2089360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail/CUDAHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2024-06-26T05:42:59.2090380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail/MAIAHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2024-06-26T05:42:59.2091970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail/XPUHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2024-06-26T05:42:59.2092600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail/FunctionTraits.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2024-06-26T05:42:59.2093910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail/HIPHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2024-06-26T05:42:59.2094720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail/MPSHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2024-06-26T05:42:59.2096150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail/MTIAHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2024-06-26T05:42:59.2101550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/detail/IPUHooksInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/detail 2024-06-26T05:42:59.2102300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2102830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/StorageUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2103350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/WrapDimUtilsMulti.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2103830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/code_template.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2104330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/TensorOperators.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2104860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CUDAFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2105090Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/hip 2024-06-26T05:42:59.2105440Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/hip/impl 2024-06-26T05:42:59.2106280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/hip/impl 2024-06-26T05:42:59.2107810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/hip/impl 2024-06-26T05:42:59.2111470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/hip/impl 2024-06-26T05:42:59.2118240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/hip/impl 2024-06-26T05:42:59.2123990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ScalarType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2125390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cpp_custom_type_hack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2126300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Dispatch_v2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2127770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Storage.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2128650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/DeviceGuard.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2130660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ParallelNative.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2131960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/OpMathType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2133050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/PythonTorchFunctionTLS.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2133940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/PadNd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2135290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2137680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CPUGeneratorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2143650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ParallelFuture.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2165300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Functions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:42:59.2212420Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2213010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_vulkan_available.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2214090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_atan.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2215590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2216420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2218000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2218650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mode_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2220010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2220640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_ones.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2222110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pixel_shuffle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2222810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_min_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2224320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2225120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acosh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2226420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frexp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2227330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erf_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2228390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/repeat_interleave_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2229810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i0e_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2230630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pixel_unshuffle_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2232230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2232760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cummin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2234340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/choose_qparams_optimized_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2235030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/where_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2235990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_scatter_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2237550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2238220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isfinite_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2239570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2240430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2242140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2242800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfinv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2243700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vecdot_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2245350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2246050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2246980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_and_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2248580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_strided_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2249520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2250340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2251820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/result_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2252470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2253870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/min_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2254710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumulative_trapezoid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2255800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss2d_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2257320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/soft_margin_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2257990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardswish_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2259590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2260320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pow_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2261350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2262340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binomial_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2263710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_padded_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2264620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosine_embedding_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2266140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_ambiguous_defaults_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2266740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2268170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2269020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2270460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2271140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/signbit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2273080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_propagate_xla_data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2274010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2275750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2276600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multilabel_margin_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2277570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2278710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumprod_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2279630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_remove_batch_dim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2280770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/constant_pad_nd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2282610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2283220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2284120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_lstm_mps_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2285560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_values_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2286360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2287330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nan_to_num_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2288820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_bin_edges_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2289580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_int_mm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2290630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/i0_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2292020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/inverse_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2292930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2294480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2295050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2296500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2297140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2298610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_batch_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2299730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2300550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2302070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor_divide_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2302720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2304200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2304940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_k1_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2306320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2307160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/huber_loss_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2308750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2309700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2310550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2312130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2312920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fill_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2314050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2315040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2316320Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.2317220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_copy_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2318550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_lstm_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2319470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log10_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2320970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2321620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sub_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2323100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_linear_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2323850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trace_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2325000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2326560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_efficientzerotensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2327260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2328220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_efficient_attention_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2329880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2330650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2331680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_y1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2332710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cholesky_ex_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2334190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2334910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polygamma_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2336340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_xor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2337090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nextafter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2338380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2339400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_sigmoid_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2340840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_y0_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2341520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Long_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2343010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_max_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2343700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pdist_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2344800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sobol_engine_ff_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2345840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2346920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arctan2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2348360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_gru_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2349130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_factor_ex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2350630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2351340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2352300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/absolute_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2353490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2354560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2356110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2356940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2362450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2364170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2364730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool3d_with_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2365310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2365860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_zeta_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2366430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2367120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2367610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2368140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bilinear_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2368650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/topk_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2369210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2369860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eig_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2370810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matrix_exp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2372460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2373110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_rnn_layer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2374550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2375350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2376450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/concatenate_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2377860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2378610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2380130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2380800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_factor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2382320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2383060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_inference_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2384560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i1_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2385220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2386290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hstack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2387450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2388880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_ctc_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2389670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_differentiable_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2391810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2392540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2393830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_nonzero_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2394830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2395840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dot_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2397340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/positive_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2398090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2399670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2400500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Float_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2401560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2402520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lu_unpack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2403960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2404790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2406280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2407040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/narrow_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2407960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan2_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2409410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rnn_relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2409980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mixed_dtypes_linear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2411520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_max_seqlen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2412160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_slogdet_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2413640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2414420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2415920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2416600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bernoulli_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2417740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_jvp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2419180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2419860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matrix_exp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2421160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_rnn_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2422400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2423830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2424510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hann_window_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2425980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rrelu_with_noise.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2426650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_add_relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2428060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2428820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/coalesce_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2430010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_log_softmax_backward_data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2431410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/where_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2432270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2433920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2434840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2435700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2437140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2438000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2439220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2440750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2441500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_factor_ex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2443000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_svd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2443880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2445500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2446230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arctan_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2447320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_efficient_attention_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2448850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2449990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_real_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2450860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2452460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/neg_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2453860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmax_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2454640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2456160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfinv_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2457030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2458610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/chain_matmul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2459270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sign_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2460270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2461720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/affine_grid_generator_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2462680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2463690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2466010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vdot_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2466930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_resize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2468290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_abs_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2469380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2470580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2471550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/abs_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2472960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/col_indices_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2473790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_xor_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2475210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_group_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2476330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_c2c_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2477310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2478370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2479920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cat_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2481370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conj_physical_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2495690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2496570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_sparse_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2498010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2498670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logspace_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2500080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2500750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_same_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2502230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/igammac_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2502950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2504560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2505230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Double_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2506120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/prod_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2507140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ceil_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2508730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2509620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2510630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2511530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2512820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2513770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/and_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2515220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2516150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_backward_reduce_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2517060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2518370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2519470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2520480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sqrt_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2521510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nan_to_num_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2522850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vstack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2523900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_rfftn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2524710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/normal_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2526310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_csr_sum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2527220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_inv_ex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2528710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2529460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2530620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2531630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2533090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2534710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2535510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_factor_ex_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2536930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_sgd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2537960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2538950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_eigh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2540430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2541190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dequantize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2542300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_c2c_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2543300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/align_to.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2544750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2545530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad3d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2546880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2547630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acosh_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2549190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2554040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_assert_scalar.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2554580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2555080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/min_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2555610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2556250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2556830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_select_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2557360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mkldnn_reshape_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2558280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2565380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/std_mean_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2566280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2567710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_fill_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2568390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/repeat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2569760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_floor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2570590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_from_mask_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2571700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2572640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_sparse_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2574240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dropout_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2575030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matmul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2576350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2577290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2578740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_view_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2579800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2580600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2582130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_check_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2582640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rot90_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2583890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/signbit_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2584760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reciprocal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2585800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2587300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/selu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2588020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2589820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2590480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2591380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2592530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2593520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_spherical_bessel_j0_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2595020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/minimum_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2595750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2596800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2597840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2599480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/values_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2600130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/col2im_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2600940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ge_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2602580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2603460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2604340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosh_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2605480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2607130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2607790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardtanh_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2608760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2610320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2611040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2612310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2613070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan2_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2614470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sub_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2615230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_real_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2616510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2617820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2618750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_jvp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2620130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sobol_engine_scramble.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2621060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mish_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2631650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_rfftfreq_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2632470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2634290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nanmean_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2635020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_batch_norm_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2635840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cross_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2637240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2637930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool3d_with_indices_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2639430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addbmm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2640210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2641130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gt_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2642520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2643430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2644560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_rnn_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2646090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2646720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/detach_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2648250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2649010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2650150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2651080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2652500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2653190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2654690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_depthwise3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2655400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/norm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2656840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_select_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2657560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exponential_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2659100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i0_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2659940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2660830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2662270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_autocast_to_full_precision_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2662920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfinv_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2664430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lcm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2665180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2666650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2667450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cross_entropy_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2668600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2669450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsqueeze_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2670560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2671590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2673050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2673780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cross_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2674740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2676140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_int8pack_mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2676860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2678550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2679210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/permute.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2680740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2681570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2683350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2684100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_linear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2685150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_group_norm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2686720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_with_sizes_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2687540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2688530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_functional_assert_scalar_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2689510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mse_loss_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2690960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2691770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2692700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/roll.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2694130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_svdvals_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2694810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/orgqr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2695920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2697380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_transpose2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2698080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/layer_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2699820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2700420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2701290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/std_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2702570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2703340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2704370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/take.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2705400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/igammac_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2706800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isin_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2707770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/record_stream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2708550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2710040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_and_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2710690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2712020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_group_norm_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2712810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_complex_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2713860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fill_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2714860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linear_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2716200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isinf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2717280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expand_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2718140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_with_update_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2719700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_min_seqlen_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2720480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2721440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2722460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_dropout_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2723620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2724540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multinomial.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2725970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/alias_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2726850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2727970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/allclose_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2729180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2730130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nuclear_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2731620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_slow_conv2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2732380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multilabel_margin_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2733930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2734600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pairwise_distance_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2736040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/broadcast_to_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2740660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2742030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_lengths_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2742650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2743190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2743850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2744410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nextafter_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2745140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2745630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_aminmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2746180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/complex_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2746930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardswish_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2747660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/digamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2749050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2749950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2751210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2752150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triangular_solve_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2753120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_pinned_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2754540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pdist_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2755190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2756380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2757700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2758440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2759840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_or_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2760660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/geometric_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2762210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_transpose2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2762950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2764200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumprod_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2765120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2766170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2767130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ldexp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2768540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arccosh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2769210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_rank.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2770690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_copy_from_and_resize_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2771570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2772520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/all_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2774040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2774700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_set_to_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2775770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_left_shift_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2777360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randn_like_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2778060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rnn_relu_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2779500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2780520Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.2781560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2782820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pack_padded_sequence_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2784290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nonzero_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2785510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2787260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2788080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mse_loss_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2789820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2790500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eye_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2791450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_exp2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2792820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adamw.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2793900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2794900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2796250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_copy_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2797120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frac_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2798510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2800080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2801070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2802480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pdist_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2803160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2804680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/broadcast_tensors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2805340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv3d_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2806930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lt_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2807430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_chunk_cat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2808510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2809930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_distributed_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2810820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2812550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_softmax_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2813100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_irfftn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2814610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2815580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_scatter_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2816570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2817550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fftn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2819070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adagrad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2819710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/all_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2821230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_gru_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2821940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eye_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2822930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hypot_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2823840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sqrt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2825400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2826200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/set_data_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2827080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vecdot_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2828670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2829290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acosh_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2830250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convolution_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2831810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2832910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_csr_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2833560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sinh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2834930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/moveaxis_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2835710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/positive.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2836740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sum_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2837710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asin_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2839400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2840170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2840920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_empty.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2842320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2843190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/any_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2844620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2845330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2846440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_propagate_xla_data_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2847510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2848930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2849700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_round_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2851170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conj.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2851980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_coalesced_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2853050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flatten.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2854190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_dense_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2855200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_or_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2856150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bincount_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2857540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dot_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2858390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_resize_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2860330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2860960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linspace_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2862430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lerp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2863130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nanmedian.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2864580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2865320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2866370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sgn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2867860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_gather_sparse_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2868510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/topk_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2869550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flip_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2870540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/any_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2871960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2872740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2874310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_entr_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2875030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2875990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/where_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2877180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_mm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2878220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/igamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2879920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2880650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_choose_qparams_per_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2881570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ihfft2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2882960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kl_div.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2883930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_legendre_polynomial_p_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2885290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mps_convolution.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2886110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2887480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/values_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2888470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize_as_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2889460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bucketize_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2890650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2891720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_svd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2892780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2893830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2894740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/any_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2896180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vsplit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2896920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2898210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_gru_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2899310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2900260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_int4pack_mm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2901280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mps_convolution_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2902880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2903590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/value_selecting_reduction_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2904730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2906280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_log1p_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2907190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2908160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2909040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/put_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2914480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2915250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2915860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2916450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_jvp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2916990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2917520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acos_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2918060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log10_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2918650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2919210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mixed_dtypes_linear_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2919960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_max_pool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2920980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binomial.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2922450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_max_pool1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2923270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_qr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2924100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ctc_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2925560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_propagate_xla_data_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2926370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2927500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_add_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2928740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/norm_except_dim_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2929600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_normal_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2931060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2932060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool3d_with_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2933080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2934040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/transpose_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2935460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2936310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2937310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smooth_l1_loss_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2938340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cholesky_solve_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2939390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_renorm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2940700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2941580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2943140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2943800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2945240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/remainder_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2946000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_interface_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2947460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/deg2rad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2948010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2949670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2950480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2952530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zero_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2953590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_complex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2954780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor_divide.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2955940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/soft_margin_loss_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2957420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addr_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2958190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2959680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2960400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2961460Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.2962460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2963510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/corrcoef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2965180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_tensorsolve_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2966070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2967000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_gammaln_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2968810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2969570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2970610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ccol_indices_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2972050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2975330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_asin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2976310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adam.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2977750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zeros_like.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2978890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2979720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reshape_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2980800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_cosh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2982200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lt_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2982890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_transpose3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2984590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2985350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gt_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2986970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2987860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2988870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2990380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2991280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2992230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unbind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2993500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_reduce_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2994320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_dim_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2995360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triangular_solve_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2996700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2997530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/baddbmm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2998960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linear_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.2999810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3000940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3001960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/geometric_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3002960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multilabel_margin_loss_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3004040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lstm_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3005400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_cos_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3006090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3007600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/outer_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3008500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_buffer_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3009290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vdot_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3010520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3011440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/topk.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3012790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3013990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3015060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3016050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Short_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3017590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_gather_stats_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3018430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3019580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3021130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3022250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_bsc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3023470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3024820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3026160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3027330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3028410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_scale_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3029480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lgamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3030530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/stft_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3031620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_mask_projection.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3032760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/aminmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3033830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_trilinear_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3039250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mse_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3040590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3041890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/affine_grid_generator_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3043000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinc_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3044100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pin_memory_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3045380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3046710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_dim_consecutive_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3047810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3049030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3050290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3051410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3052500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsqueeze_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3053650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/random_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3054770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/repeat_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3055900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3057050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_rank_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3058290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3059470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/output_nr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3060510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3061540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/not_equal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3062610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cholesky_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3063710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/meshgrid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3064770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3065870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_storage_offset_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3066970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isneginf_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3068160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3069300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsqueeze_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3070360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rand_like.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3071530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3072710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mse_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3073880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3075180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3076430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3077680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3078850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/float_power_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3080040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3081340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3082560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_dilated3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3083640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/maximum_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3084750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool3d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3085900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multi_margin_loss_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3087090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3088430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3089920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3091200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_batch_norm_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3092330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosh_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3093540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3094680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asinh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3095860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3097030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3098250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3099400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_scale.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3100560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3101790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3102920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diff_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3104000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmax_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3105230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3106540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3107680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eye_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3108840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3110040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3111130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ceil_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3112390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3113710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3114860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_storage_offset.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3116120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3117320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3118410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pixel_unshuffle_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3119580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3120780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3121920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_softmax_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3123100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3124460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3125790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/and.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3126870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_dilated2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3127990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_csr_sum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3129100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3130330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3131570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gru_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3132660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp2_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3133890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3135250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3136500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/searchsorted_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3141570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmv_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3142860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3144130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_scatter_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3145350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3146640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3147810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3149010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3150200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hann_window.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3151310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_int8_weight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3152560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3153750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log1p_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3154820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Int.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3155900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nextafter_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3157160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3158360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erf_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3159420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3160520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_flash_attention_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3161680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_rnn_layer_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3162920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3164120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isneginf_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3165280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3166570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3167790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/concatenate_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3168900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_or_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3170130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3171380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3172560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_min_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3173690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmin_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3174800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_index_put_impl_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3175970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3177070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfc_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3178290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3179520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lstm_mps_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3180610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/range.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3181660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3182740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_erf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3183880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3185020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_resize_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3186130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_linear_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3187200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3188260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conj_physical.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3189330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/square_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3190430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copysign_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3191540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amin_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3192730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3193950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3195070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/margin_ranking_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3196180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_psi_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3197290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_ndtri_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3198400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3199540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3200670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_erfc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3201740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/selu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3202800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cdist_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3203880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3204950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/range_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3206090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/aminmax_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3207230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_solve_triangular.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3208480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3209640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cov.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3210820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3212110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/relu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3213270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_dim_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3214520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3215650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/min.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3216700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/chain_matmul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3217940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tile_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3219040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3220190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_reciprocal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3221340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardshrink_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3222480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_dim_consecutive.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3223580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_nonzero_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3224710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_prelu_kernel_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3225880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_batch_norm_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3227040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kthvalue_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3228200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linspace_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3229410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3230600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3231730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_parallel_materialize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3232940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3234270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3235680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3236910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/int_repr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3237990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ne_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3243370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3244660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3245880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3247000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_mul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3248110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3249310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3250530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_int_mm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3251680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3252930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3254150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fill.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3255300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3256650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3258060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3259270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log1p_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3260400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triplet_margin_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3261460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lcm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3262540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argwhere_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3263730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3264880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_frac.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3265930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/orgqr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3267060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3268290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mps_convolution_transpose_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3269480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3270630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sgn_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3271750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nanmedian_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3272870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/crow_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3273950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ihfft_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3274990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/put_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3276100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3277250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/std_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3278440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3279760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3281000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lerp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3282030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_max.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3283070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_int_mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3284140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/var_mean_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3285390Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.3286620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arctan_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3287670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/div_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3288800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/round_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3290030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3291240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hypot_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3292340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3293420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_mkldnn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3294560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3295730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_permuted_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3296980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3298310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3299490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lt_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3300630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_householder_product_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3301780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_lstm_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3302920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_grid_sampler_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3304130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3305390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3306590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_scatter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3307710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_apply_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3308920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3310020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nnz.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3311080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3312290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3313620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3314940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_compressed_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3316140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3317300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hamming_window_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3318400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3319480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zeros_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3320670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3321980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_k0_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3323110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convolution.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3324190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_j1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3325280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3326400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3327690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3329010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3330150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/chunk_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3331370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3332710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3333940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_k1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3335080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sgn_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3336270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3337630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3338890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3339950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/topk_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3345180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3346380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_numel_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3347480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3348550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mish_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3349600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_values_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3350780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3352090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3353300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_or_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3354400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_numel_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3355700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3357060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3358140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3359330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3360530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_logcumsumexp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3361620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pow_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3362820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3363970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3365180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3366510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_solve_triangular_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3367670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conj_physical_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3368790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3369830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3370940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multinomial_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3372160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3373370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3374590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3375760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sspaddmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3376860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/maximum_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3378010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_impl_index.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3379150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3380290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eigh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3381450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3382630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_max_pool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3383780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3385010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3386230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cummax_helper_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3387350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i1_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3388590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3389810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_compressed_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3391000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3392280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3393560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3394700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Half.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3395870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3397310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3398660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3399850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3400930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3401960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3403040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addr_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3404180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3405280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/not_equal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3406360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/xlogy_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3407470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_exp2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3408830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3410180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_j0_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3411340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3412530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3413720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_complex_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3414910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3416070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_u.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3417240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3418420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_j1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3419540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_index_put.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3420640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/row_indices_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3421750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multiply_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3422980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3424160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_dim_arange_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3425330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3426500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_csc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3427660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3428870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3430090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3431320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3432480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/equal_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3433720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3434900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/xor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3435950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3437030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_reduce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3438100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slogdet_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3439370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3440620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/std_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3441800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3447010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log1p_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3448230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3449580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3451010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3452280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3453410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hspmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3454540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3455690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/take_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3456840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/segment_reduce_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3458100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3459430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3460640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/squeeze_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3461840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3463000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/less_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3464060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_shape_as_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3465090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3466230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3467490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_legendre_polynomial_p_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3468720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3469890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3471020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_min_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3472380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3473620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_max_pool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3474840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mps_convolution_transpose_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3475960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cat_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3477020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/swapdims_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3478150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rrelu_with_noise_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3479400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3480540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_csc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3481660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3482770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rnn_tanh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3483900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3485070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_multigammaln_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3486300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3487470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amax_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3488690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3489900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_dense_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3491030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3492150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nan_to_num_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3493240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cummin_helper_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3494410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3495750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3497080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3498200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log10_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3499310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_parallel_materialize_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3500660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3501920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_left_shift.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3503020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pad_circular_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3504230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3505570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3506730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frobenius_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3507850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/count_nonzero_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3508940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rsub_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3509980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_qr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3511080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_transpose2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3512210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_det_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3513290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3514370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_lgamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3515450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3516510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ne_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3517590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_slogdet_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3518680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multinomial_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3519770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_max_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3520830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tan_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3521920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multinomial_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3523070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_empty_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3524220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3525330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/all_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3526390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rms_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3527430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_dense_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3528580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3529720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flip_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3530790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/svd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3531790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3532870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_max_pool2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3534090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3535300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_polygamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3536420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rshift_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3537490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3538610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i1e_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3539810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3540990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/squeeze_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3542110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3543330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3549160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_leaf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3550240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/maximum_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3551360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asinh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3552470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/broadcast_to_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3553650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_lengths_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3554790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3555890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tril_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3557000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sqrt_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3558150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3559280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randint_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3560330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slogdet.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3561510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3562640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_erf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3563720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_functional_assert_scalar.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3564800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_lazy_clone.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3565910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mps_convolution_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3567120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3568310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/equal_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3569430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_quantized_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3570530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_digamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3571660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3572770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3573920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3575060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/all_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3576100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cross.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3577190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convolution_double_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3578420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3579680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3580930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3582130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3583310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmin_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3584370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log1p.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3585380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/less.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3586410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tensordot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3587610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3588810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sample_dirichlet_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3590040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3591200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3592340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3593520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cholesky_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3594650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/div_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3595890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3597190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3598340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3599410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_not_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3600470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3601620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3602830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3603960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_dilated2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3605090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_acos_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3606170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gradient_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3607260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_transpose1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3608300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/or_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3609390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smooth_l1_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3610560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3611720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3612840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/median_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3614020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3615320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3616520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atleast_3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3617590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_chunk_cat_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3618710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_functional_sym_constrain_range_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3619830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/im2col.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3620950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3622170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3623340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3624450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mps_convolution_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3625620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3626770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/retains_grad_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3628030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3629270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sign_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3630380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_like.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3630910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3631520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3632070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3632620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/output_nr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3633120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sqrt_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3633640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lstsq.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3634150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/count_nonzero.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3634740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/feature_alpha_dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3635390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3635930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3636470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trunc_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3637130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3637700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3638410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_scatter_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3639020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i0e_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3639570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/norm_except_dim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3640110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sort_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3640660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logit_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3641190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_stack_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3641690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_hfftn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3642280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3642880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3643440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3643970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3644500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_solve.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3645000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/divide.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3645560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_masked_index.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3646230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3646710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_neg.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3647290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3647820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_resize_output_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3648350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adamw_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3648870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_inverse_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3649420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardswish_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3649950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ihfft2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3650510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cufft_get_plan_cache_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3651060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/values_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3651590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/feature_dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3652110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3652680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3653170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gt_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3653810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3654340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_xlog1py_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3654880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_inv_ex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3655510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3656110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tril_indices_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3656660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3657200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_bsr_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3657720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3658300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tensor_split_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3658810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3659360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/std_mean_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3660050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3660770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3661470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3661980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expand_as.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3662530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3663050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/le_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3663680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3664300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3664880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardshrink_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3665410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmv_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3665920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_bsc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3666590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3667140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sobol_engine_scramble_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3667650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slogdet_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3668200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_dropout_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3668790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardswish_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3669310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/set_data_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3669950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3670480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tril_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3671110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3671720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3672310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3672980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3673510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinh_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3674040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sub_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3674560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3675040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3675560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3676110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_batch_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3676630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lcm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3677160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3677820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3678330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unique2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3678970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3679530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3680020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_full_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3680590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3685080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logspace.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3685770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3686350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3686900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_mkldnn_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3687450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eigvalsh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3688140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3688680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_inv_ex_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3689180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsqueeze.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3689730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isinf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3690230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_max.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3690730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3691240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/where_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3691920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3692550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_log_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3693180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_addmm_activation_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3693710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3694290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_h.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3694780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/set_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3695320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bucketize_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3695850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asinh_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3696490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3697110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3697700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3698270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conj_physical_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3698810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_sum_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3699410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3699900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/alias.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3701220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3702130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3703420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fft_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3704380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3705300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i1e_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3706910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3707620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/poisson.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3708560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_h_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3709710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3711010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3712280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3712930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nan_to_num_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3714080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3715000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logspace_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3716460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3717190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conj_physical_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3718620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/heaviside.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3719250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arccosh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3720480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mkldnn_reshape.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3721290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_slogdet_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3722780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3723540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcdiv_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3724820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3725840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3727910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3728650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/aminmax_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3729950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3730820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_det_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3732360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3733100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_coalesce_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3734550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_triton_scaled_dot_attention_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3735390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_backward_elemt_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3736410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3737700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_sigmoid_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3738590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3739610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i1_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3741020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3741670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/equal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3743200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unique2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3743900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3745530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acos_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3746380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/heaviside_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3747910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3748650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3750100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/heaviside_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3750780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_jagged_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3751930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3752970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fw_primal_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3754400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_from_mask.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3755090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_bsr_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3756590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3757440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sum_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3758320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/searchsorted.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3759970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3760650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_solve_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3762130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_solve_ex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3762750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_and.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3764320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/instance_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3764940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3766440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3767090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_slow_conv2d_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3768520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_dense_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3769510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/geqrf_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3770360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tile.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3771870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3772580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3773540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_clamp_min_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3774650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nanmean.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3776150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3776890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3778020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3779140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3780120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3781410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3782990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3783850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/topk_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3785540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3786410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/xlogy_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3787900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3789420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3790210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3791840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3793750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scalar_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3794420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_bag_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3795950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rnn_relu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3796550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i1e_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3797680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3798650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3799700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ones_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3801290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3802080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cholesky_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3802810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triu_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3804250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/count_nonzero_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3805040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eq_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3806010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_rfftn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3807450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3808050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hypot_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3809560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3810300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/feature_dropout_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3811760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3812570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3813550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_per_channel_zero_points.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3815240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3816110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3816890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isclose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3818110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_complex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3819540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lstm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3820180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_eigvals_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3821650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mps_convolution_transpose_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3822330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kthvalue.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3823820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_euclidean_dist_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3824610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3825620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sin_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3827200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsafe_chunk_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3827950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_minimum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3829360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3830950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3831560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3833100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3833860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_maximum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3835270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cholesky_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3836010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hamming_window.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3837420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flatten_dense_tensors_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3838290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3839820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3840690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3841660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3843050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3843920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3845420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3851770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_factor_ex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3852690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3853260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_consecutive_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3853900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3854500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3855030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_neg_view_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3855580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trapezoid_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3856150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_xor_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3856670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3857260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3857840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3858410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_not_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3859160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3860290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tril_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3861940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3862610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dsplit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3863670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_vulkan_available_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3864570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resolve_neg.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3866070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3867030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rad2deg.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3867750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mps_convolution_transpose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3869280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_segment_reduce_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3869960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_logit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3870950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cummin_helper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3872570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3873410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3874310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_addcmul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3875840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_with_sizes_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3876470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_nd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3877940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3878880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3879660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/type_as.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3880760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dot_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3882230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardswish_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3882990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3883940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3885190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3886150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3887230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3888100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sign_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3889910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_tensorsolve.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3890680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argwhere_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3892180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfinv_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3892860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resolve_neg_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3894300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3895040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_triton_multi_head_attention.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3896520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/alpha_dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3897770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3898470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3899390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/stride_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3900550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/soft_margin_loss_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3901510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lift.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3902630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3904080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3904840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_broadcast_to_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3906340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_floor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3906990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acos_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3908030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_dropout_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3909480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3910640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3911530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3912720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/stride.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3913510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3915050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3915750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_normal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3917150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/align_to_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3917720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3919360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3920410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3921860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sample_dirichlet.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3922650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_ndtr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3923960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_airy_ai_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3924860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3925860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clone_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3927550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3928380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3929270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3930490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_cpu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3931350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3932900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_jagged.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3933650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3934920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3935990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3937030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unique2_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3938010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3939380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3940070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trunc_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3941580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/retain_grad_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3942510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3943220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/histogramdd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3944630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3945420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3946930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nanquantile_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3947730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3948640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumsum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3950070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/instance_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3951450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3952390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mixed_dtypes_linear_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3953800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_select_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3955430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3956100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/refine_names_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3957540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_remove_batch_dim_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3958410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3959840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3961120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3961720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acos.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3962810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3964290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3964990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3966410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3967140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3968080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/chunk.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3969690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_functional_assert_async.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3971140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arange_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3972580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3973410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsqueeze_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3974800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triangular_solve.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3975640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_real_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3977170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_layer_norm_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3977920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3979280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/renorm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3980230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_local_scalar_dense.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3981310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/absolute.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3982540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_assert_async_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3983650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3985300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3985910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mT_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3987450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3988240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_amp_update_scale.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3989880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3990730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3991680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_copy_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3993150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_ambiguous_defaults_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3993870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mul_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3995320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_transpose3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3995990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rrelu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3997370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_or_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3998220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsqueeze_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.3999620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/huber_loss_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4000300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/renorm_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4001400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/record_stream_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4002850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/promote_types_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4004020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4004840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4005930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4006820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vecdot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4008420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sample_dirichlet_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4009040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rand_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4010650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4011440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4012580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4014060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_y1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4014840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_scatter_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4015800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_csc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4017250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4017940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cummin_helper_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4019090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4024040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4024730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/detach_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4025310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cauchy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4025990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4026530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/row_indices_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4027100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/add_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4027610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4028260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4029680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_svd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4030560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_sdp_choice.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4032370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4033010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log2_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4034000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/selu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4035470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4036260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4037190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_frac_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4038920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vander_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4039990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/segment_reduce_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4040830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conv_depthwise2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4041850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_diagonal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4043190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/set_data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4044090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/alpha_dropout_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4045480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/take_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4046260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4047940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4048580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adjoint_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4050110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4050760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4051950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4053470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4054470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multi_margin_loss_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4055290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4056720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_add_relu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4057540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_sinc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4059220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4060140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4060970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4062580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_maximum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4063500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_csr_prod_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4065100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_autocast_to_reduced_precision_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4065860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_gammaln_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4067240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_bag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4067940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4069440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/greater_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4070320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4071290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4072400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sort_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4073320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fill_diagonal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4074490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4075790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_csc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4076520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zeros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4078060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4078850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4080370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4081590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4082970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmod_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4083790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4084900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4086240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sobol_engine_draw_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4087200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4088250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tril_indices_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4089820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_left_shift_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4090640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arctanh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4091380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4092850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reciprocal_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4094020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4094700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nnz_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4095940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4096940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4098260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4099110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_lstm_mps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4100520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4101880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4103160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4104080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_set_to_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4105030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log10_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4106380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flip.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4107470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4108430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_linear_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4109540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/roll_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4111050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4111980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4113520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4114330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4115330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_factor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4116480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4118090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4118920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/round_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4120560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4121630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4123230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4124010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4124870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4126380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4127270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_standard_gamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4128180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/neg_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4129550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pinverse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4130480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4131450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_scatter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4133200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4133800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4134870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4136060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4136960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4138420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arccosh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4141240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4142200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4143260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4144420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4145390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fftfreq.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4146480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/im2col_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4148000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_mm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4148680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/narrow_copy_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4149880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/not_equal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4150670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/prod_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4151850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4153170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_select.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4153850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_ndtr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4155430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4156110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4157100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcmul_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4158170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_h_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4159540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convolution_mode_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4160370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4161940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4162750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mps_convolution_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4163960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4165130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4166040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erfcx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4167630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4168270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ge_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4169160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polar_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4170890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4171520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4173100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4173830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4174830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/data_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4176250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4176930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4178830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4179670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4180790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unbind_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4182220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4182830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eq_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4183960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/set_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4185090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_multi_head_attention_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4186690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_functorch_fallback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4187440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4188540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4189480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cufft_clear_plan_cache.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4190550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adagrad_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4192110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4192740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_linear_backward_input_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4194430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4195100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4195820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ger_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4197300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4198060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_values_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4203420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4203970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/set_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4204640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4205300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4205920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4206410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4206980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4207570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4208120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_det_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4208960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triangular_solve_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4210430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4211230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4212810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lshift_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4213340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_quantized.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4214310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_grid_sampler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4215980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4216720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4217710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4218860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4219860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_and_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4221350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/roll_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4222080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/remainder_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4223350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_flash_attention.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4224200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log10_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4225300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4226440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4227440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4228930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kl_div_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4229650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/roll_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4231320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4232040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4233490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4234410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multinomial_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4235640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_log_ndtr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4236680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4237960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4238910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmv_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4240000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_max_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4241320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_values_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4242210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clone.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4243730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4244620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4246170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4247010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_mm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4248570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reciprocal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4249400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4250470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_rnn_layer_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4251970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4252730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_or_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4254080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4254790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/values_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4256380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4257190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4257960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/swapdims.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4259710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4260470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4261300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cauchy_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4262600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4263720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4264860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4265750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/huber_loss_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4267390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/permute_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4268340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4269210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sub_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4270790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4271480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4272470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinh_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4273930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log2_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4274640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4275830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4277240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_solve_ex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4277880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logsumexp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4279210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/all.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4280010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foobar.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4281620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_grid_sampler_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4282470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4283350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_normal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4284770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_lstm_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4285520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mvlgamma_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4287040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4287850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4289400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mish_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4289950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_rowwise_prune_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4291530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_acos_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4292590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4293480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4294390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4295690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4296880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4297670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4299240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_lerp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4300190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4301620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4302400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4303440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4304890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4305610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4306580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/movedim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4307880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4308760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arccos.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4310380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4311000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4312470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bucketize_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4313520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asinh_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4314280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_dim_arange.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4315410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erfc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4316490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4317480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_nd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4318500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tan_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4319550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cdist_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4320990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardtanh_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4321740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4323220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4323870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_prelu_kernel_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4324810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gather.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4327470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_alias_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4328330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4329850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multi_margin_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4331190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4331900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_rfft_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4333460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4334060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4335640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4336200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acosh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4337290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4338720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcdiv_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4339440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4340340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_csr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4341540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4342600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4343780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4344800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4346280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4347120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4348210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4349260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_constrain_range_for_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4350620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4351270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matrix_power_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4352860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_transpose_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4353560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4355180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4355820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gather_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4356740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Long.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4358250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4359000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardshrink_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4359940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hstack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4361330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4362210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4363270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4364260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4365350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4367040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4367680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4368590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/div_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4370060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4370990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/deg2rad_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4376340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4378370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_group_norm_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4379000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4379520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rename_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4380230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4380870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4381620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4382180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4382800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4383330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tan_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4383850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4384730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4385740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4387360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_rowwise_prune.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4387980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rshift_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4390070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_depthwise_convolution_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4390870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4391820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arctan2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4394370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dequantize_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4395150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4397620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4398290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_local_scalar_dense_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4399830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4400810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4401650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4402610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4403970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_rfft2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4404660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gru.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4407280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sign_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4409350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atleast_1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4410260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_fill_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4411230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ifft2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4412560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isneginf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4413850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4414490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nanquantile.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4416130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4416850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4417840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zeros_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4419270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_select_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4420110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nested_to_padded_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4421290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardtanh_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4422140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4423630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4427190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_irfft2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4428640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4436020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4436880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4445520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_add_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4446350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4447930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4451660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4452640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_sparse_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4454120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_psi_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4459250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardswish_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4462960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4466040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/std_mean_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4469850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4476720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_expm1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4482230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4485640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4489730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_trunc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4491890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4495590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_not.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4499310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_mul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4501520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bartlett_window_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4507730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4513260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4514170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_sigmoid_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4517210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/minimum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4521710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ccol_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4523730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_add_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4526200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multilabel_margin_loss_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4528780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/std_mean_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4535670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reciprocal_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4536900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4545260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cdist_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4546050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_sampled_addmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4548530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_add_relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4554750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4555540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4557020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randperm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4563910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4565670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4567430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4570990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_sum_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4571960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/i0.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4576050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sinh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4579260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_dropout_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4582520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_functorch_fallback_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4584520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4589180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flipud_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4590860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_ctc_loss_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4596080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4599470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_int_mm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4605540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4607470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4608300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/igammac_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4612740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_qr_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4617870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_erf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4621920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4625140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Char_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4632760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4634390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diag_embed_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4636810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_spdiags_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4640620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4642550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cov_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4645650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_scale_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4649500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4652750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4656020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/var.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4871960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4873820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_not_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4874510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_put.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4875240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dequantize_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4876710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4877900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4879380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4879920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i0e.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4881300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_log1p_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4882230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4883350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arange_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4884780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4885580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4887190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4887900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_fill_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4888970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/remainder.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4890490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4891140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/repeat_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4892600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4893470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4894380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool3d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4895950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_lerp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4896640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4897930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4898650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4900070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_from_bin_cts.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4901220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4901960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_rnn_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4903350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amax_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4904190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4905700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_rank_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4906370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_scale_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4907740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_stack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4908380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/histc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4909900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4910790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4912320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4912930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_hfft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4914470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4915540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_padded_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4916210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4917780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4918580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/requires_grad_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4919950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gradient.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4920710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ihfft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4922440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4923180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4928560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4929330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_real_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4929870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copysign_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4930400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/values_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4930900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_prelu_kernel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4931490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4932060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4932590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_add_batch_dim_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4933290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4933930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mH_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4935340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lift_fresh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4936050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ne_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4937520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4938370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multinomial_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4939380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_k0.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4940560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan2_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4941410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4942950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4943820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4944890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsafe_chunk_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4945960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4947380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_channel_shuffle_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4948220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4949210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmv_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4950520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rshift_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4951940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erfinv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4952700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_sdp_choice_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4954380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_copy_from_and_resize_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4955030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_log_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4956410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_scatter_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4957350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4958370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4959350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/huber_loss_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4960750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/count_nonzero_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4961640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4962530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4963910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/true_divide_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4964700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4966120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4967660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ccol_indices_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4972390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcmul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4974540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adagrad_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4979590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4983250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_transpose3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4985920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resolve_conj.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4989120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_gru_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4991590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4994980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_erfc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.4999810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5003630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5006870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5008500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5011960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5016550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5018750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5024450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5025810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcmul_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5032450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5033870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5036520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5039800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5042970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmod.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5046620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5048820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/inverse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5052920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_round_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5055250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_dense_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5058740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5059440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/item.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5065810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5072780Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.5076120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hypot_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5078200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_zero.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5081320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zeros_like_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5085730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5091170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_select_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5092520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_bsr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5096250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5098500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5103920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5106430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5111220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eig_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5112490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sgn_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5116180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5121490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eigh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5126700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5127590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lu_unpack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5130260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmax_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5133890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vector_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5134610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_layer_norm_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5138570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5143060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5146320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5150260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_batch_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5152340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5157490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5160970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5161910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matrix_power.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5165680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sgn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5169370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ne_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5172670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5175750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_with_sizes_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5178500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5182690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conj_physical_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5185280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5189950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_power_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5194600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsafe_split_with_sizes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5196150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5198710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5202050Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.5204810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frac_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5211650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/less_equal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5213790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rrelu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5219380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5220130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rnn_tanh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5222860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5225800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5228340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mean_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5231530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pin_memory_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5236630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_empty_strided.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5239910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5244090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pow_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5246760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/channel_shuffle_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5250130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5255280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_consecutive_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5256180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5261370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/alpha_dropout_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5263400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_abs_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5267780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5269640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kaiser_window.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5272430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5278740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nansum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5284290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5290480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/soft_margin_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5291810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/det_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5295990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5300400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addr_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5302490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5306620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_with_sizes_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5310320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5314470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_sigmoid_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5316780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_div_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5322380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/prelu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5323310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/maximum_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5325930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5329930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cslt_compress_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5335210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5338570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_ceil_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5341510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5348580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmod_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5351410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5353290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5358680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_index_put_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5359610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_not_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5362220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/crow_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5363100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logspace_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5367120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5371330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5377000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5382060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lift_fresh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5382920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5383660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5386690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_stride_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5389480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isreal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5392250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unbind_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5397180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_spdiags_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5400270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pad_enum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5406010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/equal_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5407650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_autocast_to_reduced_precision.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5409530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mse_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5411850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_addmm_activation_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5415020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pin_memory_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5421060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_unpool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5422000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5430250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5431090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5437800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/einsum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5439240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_ctc_loss_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5440020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/xlogy_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5443700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5445030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_conj.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5447930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_relu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5454030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/permute_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5455290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multiply.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5459910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_stats_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5462980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5466240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5469130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5475430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5476990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trapezoid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5483910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/prelu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5484990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5486440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_strides_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5492970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_zero_point.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5494090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_resize_output_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5501440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isfinite_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5502400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_fill_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5503810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_resize_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5509570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5510560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5512000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcdiv_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5517780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5519150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_softmax_backward_data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5527770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_max_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5528780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5531070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5535770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5536450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_from_padded_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5540020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5542110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5545440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5548550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5552340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matmul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5555130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5560910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_y1_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5561830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reciprocal_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5568910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isposinf_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5569640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_max_seqlen_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5577180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gcd_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5582170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convolution_double_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5583000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5583890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5585740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_ctc_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5586680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_neg_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5591180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5594470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nested_to_padded_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5598070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_add_relu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5600810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/round_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5606750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resolve_conj_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5610910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5613120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5614060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ones_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5619690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_clamp_max.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5621610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_sigmoid_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5625490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_slow_conv2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5629590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/neg_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5633090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5636340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5638980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5643440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lerp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5647120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5647830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_set_to_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5652850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logsumexp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5660430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5662290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pad_packed_sequence.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5662920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/round.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5669860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5671380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/roll_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5673620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/i0_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5675150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/alias_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5681340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mish_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5682130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5687980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcmul_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5690070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/std_mean_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5694930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5695810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/prod_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5700010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pow_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5704880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize_as_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5707480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gcd_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5709870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5712280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5718360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log10.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5719020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5726730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5727530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5730130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5733410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5737940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scalar_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5738970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5743200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nonzero_static.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5745210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/im2col_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5750350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_spherical_bessel_j0_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5753240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cslt_sparse_mm_search_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5756650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5758620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5761900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copysign_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5766540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_from_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5770040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fw_primal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5773620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/qscheme_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5780710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5781470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_print.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5784600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5787600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/set_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5788530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5794670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_init_dropout_state.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5795460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5800570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5803110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polygamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5807680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5810830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5815600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5816730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5819700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/swapaxes_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5825370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5826380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5830130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5833270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5836860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantile.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5840770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5842460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5845060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5848690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_scatter_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5852350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nnpack_available.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5854570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5859090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_zeros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5861280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5866740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5869730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5873680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5876960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/uniform_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5881290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5881980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_backward_data_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5885650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5888220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mT_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5891120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nonzero_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5898160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pack_padded_sequence.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5899920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_neg.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5907800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_multi_dot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5908550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_weight_to_int4pack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5909100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5912940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arange_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5915420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5921450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ne.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5922260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5928130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rrelu_with_noise_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5928950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5931080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5935290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lu_unpack_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5940320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erfc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5943120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_sum_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5948630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_max_pool1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5950240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lstsq_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5952840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ormqr_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5955090Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.5958220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_nonzero.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5961110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5967170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5972220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_xor_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5973460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5976470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_cos.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5978990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randn_like_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5982910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_slow_conv2d_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5987050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/subtract_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5988020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_compressed_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5992880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_ceil_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5998270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/div_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.5999670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_choose_qparams_per_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6003440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_div_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6005820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_or_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6008750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6013180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mul_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6020050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6023210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/swapaxes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6025430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/divide_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6027160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6031020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sub.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6035980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6037730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6038680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6042590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rrelu_with_noise_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6045780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_r2c_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6048210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_entr_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6054450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6055960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_real_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6060900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_svd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6062220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_batch_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6063710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6065690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/constant_pad_nd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6070020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6071310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_lstm_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6075840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6081980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_factor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6085740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6087750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_leaf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6090830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binomial_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6098010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6099060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6102930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log2_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6106630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6108040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resolve_conj_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6111010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6115690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/row_indices_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6119520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_exp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6121490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/layer_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6126630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6128790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6133160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_mask_projection_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6136050Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.6139210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_zeta_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6142250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6147940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_log_ndtr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6148990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6153600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copy_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6156490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_solve_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6158830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6162940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eigvalsh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6165140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6170950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6171760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6178330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6180220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6182040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6184570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_zeta_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6188380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_complex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6194060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6196190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6199530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/add_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6200520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6205620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_check_errors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6208670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/angle_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6211450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6215670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_min_seqlen_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6219100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_values_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6222590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6225450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6228460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6231480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sort_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6236060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_lazy_clone_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6238920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6244360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6245370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/thnn_conv2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6250090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/baddbmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6251470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6254450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_renorm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6257830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6261360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multilabel_margin_loss_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6264340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reciprocal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6268160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/contiguous_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6273940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_channel_affine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6276480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_mask_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6282770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6284760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6287410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6290930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6291780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tril_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6295590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_not_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6301860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6306360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6309090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6310510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arcsin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6313650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/qr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6315750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_real_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6320220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6321890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frac_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6326670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6327480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_rnn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6333150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_multi_head_attention_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6339100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_segment_reduce_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6340380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_eigvals_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6342930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_string_default_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6346090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_csr_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6348000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6351270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6356210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pairwise_distance.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6357080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6364290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6368780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Long_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6370910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6371580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ifftshift_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6374910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6381240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6381890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cos_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6389730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6390560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mkldnn_transpose_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6398110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6398830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6400440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6403930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6406560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6408040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atleast_2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6410800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/choose_qparams_optimized.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6413780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_slogdet.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6419200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_slow_conv2d_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6421290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6425990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_y1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6434130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6436130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6436830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6438070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_spdiags.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6445270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matmul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6446150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6462380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_neg_view.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6462960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsafe_split.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6464310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sign_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6465150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6468730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp2_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6469440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6471140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/div_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6472640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trace_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6478320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6480040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_hfft_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6481960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6486880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linear_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6489220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6492030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_strides_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6494090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6497600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ifft_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6505190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/value_selecting_reduction_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6509460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triplet_margin_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6510920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6515760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6519190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6520910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6524690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/col2im_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6527970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_c2r_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6531610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arcsinh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6535240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/type_as_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6538670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eigvals_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6543650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6546390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6549630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_laguerre_polynomial_l_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6551080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_copy_from_and_resize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6555930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_solve_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6560710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logdet.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6563430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/align_as_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6565260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6567700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6571910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6574520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_impl_index_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6577960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6581250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_masked_index_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6584950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trunc_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6590150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cholesky_solve_helper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6592780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_laguerre_polynomial_l.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6595860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6599870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6601330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/min_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6604750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isnan_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6609220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unique2_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6613230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mkldnn_reshape_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6616750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6620720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pack_padded_sequence_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6622960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6626610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/normal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6629750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6632430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6634640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6638180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6642020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/less_equal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6646300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_ones_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6647820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nonzero_static_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6651000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinc_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6654820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binary_cross_entropy_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6658600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6660770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expand_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6666860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/complex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6670100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_interface_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6674390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6675190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6680970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isin_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6683940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pinverse_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6686850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_atan_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6689600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6693670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lstm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6696510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6699490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/xlogy_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6708680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expm1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6709500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dist_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6711070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6715570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/maximum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6718610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/remainder_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6722380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ones.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6725250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6728450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_maximum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6730670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv3d_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6734650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/aminmax_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6738680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_i1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6741460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6745730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mse_loss_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6750420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cummax_helper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6751130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6754530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cross_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6759880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_resize_output_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6761120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gru_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6767590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6769650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/std_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6775550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/round_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6776430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_cpu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6779650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6782690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_irfft2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6787080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/block_diag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6789140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_offsets.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6791270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6796320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atanh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6798910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6803560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_bsc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6805110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exponential_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6810800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_depthwise_convolution_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6814390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gather_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6818450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6824910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/geqrf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6826420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6827330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_xor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6832860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6833880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6836130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_aminmax_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6838450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_layer_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6844330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_constrain_range_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6845400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6856280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frexp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6860460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6861430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6862370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vander_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6863940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6867340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6868680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_with_sizes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6870650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6871480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6876400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sum_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6878810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vdot_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6883400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6884080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pinverse_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6888770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6890250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6894020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/add.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6897940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6901830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cummax_helper_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6907790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6909560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6915110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eq_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6915910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_impl_index_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6919680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6922570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6928870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6935620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sort_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6936890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6939280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6941960Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.6945810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6949410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6952100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6957160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool1d_with_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6963580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6964250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool3d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6965730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6969770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sin_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6970750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sum_to_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6974390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6979780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6981270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_he_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6988310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gradient_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6989050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cslt_compress.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6995990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.6997080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7002750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7004470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_optional_intlist_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7006800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_normal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7009800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hypot_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7011720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hypot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7016070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7017940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7021380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7024470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7028570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_qr_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7035440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7036230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7043580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7045450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7046250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7049960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7052040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7054920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cross_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7058130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_j0_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7063250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rsub_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7066120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sort_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7068580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_resize_and_clear_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7072270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/put_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7075250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eq_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7078460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7084810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7085530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_floor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7093430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/signbit_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7094710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfinv_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7099660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diag_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7100840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_functional_sym_constrain_range_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7102330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7108090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_logcumsumexp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7111250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7116480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_or.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7118670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7120040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7122370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pdist_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7124190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_permuted_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7129560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/topk_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7130940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7137620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7145110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bincount_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7146970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7153730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/i0_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7154710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7156050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asinh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7160230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7161190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7166900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logcumsumexp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7168100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ravel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7172110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7175960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_and_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7181270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7184260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_index_put_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7187190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isin_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7187990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7193620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Short.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7195910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_broadcast_to_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7201790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_scatter_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7202550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmod_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7207110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_scatter_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7208760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7212600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardtanh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7216270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7219530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_reduce_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7222960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_solve_ex_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7228070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7234730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/std_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7235360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vsplit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7237360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7240730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7243510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_solve_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7249010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_csr_sum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7252760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7258100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ccol_indices_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7261120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7264400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7266650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/constant_pad_nd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7269030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7270630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7279110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/choose_qparams_optimized_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7279730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7286970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7290220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7292370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_version_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7295310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7299300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7301780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/corrcoef_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7305790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7311990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7312630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sin_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7314050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Half_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7315620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7322240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7322930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7328120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardswish_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7329040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7334200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7335080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7341530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_flash_attention_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7342380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7345730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7351550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7355280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matmul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7359810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_bsr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7360570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7365970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pad_circular.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7369150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7372500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7375120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_div.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7378140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7382040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7385080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_bsr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7387690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bmm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7393160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7395030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcdiv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7399800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/add_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7400700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multi_margin_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7405380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_xor_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7407720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp2_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7413740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_from_padded.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7418640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_bsr_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7419540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/combinations_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7421990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmod_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7424740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/broadcast_to.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7427630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardswish_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7433600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7434550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7440370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_solve_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7443390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_or_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7447170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i0e_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7448530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7452600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vdot_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7455510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conj_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7457360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gt_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7461030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diag_embed.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7467990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sqrt_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7468770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nan_to_num_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7475030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7476300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_with_update.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7480260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7482420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7484000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardshrink_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7487880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/heaviside_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7491820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pdist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7500210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7502590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cholesky_solve_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7503500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_signed.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7506540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7508520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ne_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7511520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_reduce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7516530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7522050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_multi_dot_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7523050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7525940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eig_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7527870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i1e_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7531580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7534510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conj_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7538270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randperm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7542540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7545280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adamw_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7547770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rand_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7552490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7553090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_cosh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7563010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7565980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rename_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7569950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7573150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7574680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7579140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7582940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_is_zerotensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7590100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7590840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multilabel_margin_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7592140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_check_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7595990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_dense_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7599440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7601470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Float.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7606930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_neg_view_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7608420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acosh_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7615830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7616680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_assert_tensor_metadata_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7623450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7624830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7628340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_fill_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7629090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pad_sequence_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7632830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsafe_split_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7637780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7641920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mish_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7645900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7646890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7647770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7649900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7654030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convolution_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7658200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan2_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7660200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bucketize_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7664620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_layer_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7668050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tan.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7671050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7675890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7679110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ge_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7683710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7686230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lu_solve_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7689990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_tbc_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7690760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_backward_data_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7694540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7699930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sobol_engine_draw_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7702280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardtanh_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7706970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_and_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7708020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_select_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7712370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lerp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7719090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matrix_exp_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7722690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erfc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7723690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosh_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7727050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cross_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7732870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7734440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_multi_dot_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7735960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7741170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cslt_sparse_mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7742510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7750070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_add.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7750770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lt_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7758950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7760260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nonzero_static_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7761060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exponential_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7763800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7767690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7771800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7773320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7778140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cummin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7781800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_channel_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7785220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cauchy_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7787810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rsqrt_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7794670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linspace_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7795580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7808480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_i1_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7809110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frac_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7811070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7817010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7818530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7820460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_sum_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7821240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7822910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7826720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7844190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7845460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/inner_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7850410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_triton_scaled_dot_attention.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7851310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_coalesced.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7852750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_group_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7853520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7854930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fftfreq_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7855690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7857220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7857890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_standard_gamma_grad_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7861820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_inv_ex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7866050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7868570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_addmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7873130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7878580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hinge_embedding_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7880100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nanmedian_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7884410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dot_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7885430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7890950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/stack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7894780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_quantize_weight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7895730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smooth_l1_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7899460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sobol_engine_initialize_state_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7906210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7907680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7909820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7913420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7916470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7919140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_put_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7924800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7925610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7927850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7932330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sign_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7933680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_add_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7938590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_layer_norm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7943820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_padded_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7946700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_set_to_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7951670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7952450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7955760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/concatenate.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7958930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7961120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_backward_reduce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7965920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_eigvals.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7968060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/qscheme.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7969580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7975020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/movedim_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7982080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7989130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lu_unpack_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7989970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/thnn_conv2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7995450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.7997550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8000130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8003460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_sampled_addmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8007510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/igammac_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8010460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8012050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_max_pool1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8014790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_airy_ai_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8019680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcdiv_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8023220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8027900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_max_seqlen_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8029830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8039230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcdiv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8039810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rsqrt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8040440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8041190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_lgamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8042650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmax_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8048390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8049150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8053320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfc_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8060000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8066750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8068040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/svd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8070400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8073650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lift_fresh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8074550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_zero_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8080220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flatten_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8082100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_factor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8087430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_v.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8088080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/where_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8096690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8098410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8103400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pad_enum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8106730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8107970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8111520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/from_file.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8112610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/row_stack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8117840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8119150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8121810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/celu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8125730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matrix_exp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8128660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_logit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8132430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8134060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lstm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8141270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8142420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cummaxmin_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8147600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_functional_sym_constrain_range.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8150120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8152760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8155490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8159930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zero_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8161250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8165600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/row_stack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8169040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_transpose3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8174620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_add_relu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8178030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8179110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/real.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8181870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8183100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pairwise_distance_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8191760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8196530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8202180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_dual.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8204050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_dual_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8206110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8209850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/renorm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8212040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/relu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8215170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8219440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8224960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8227060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8228420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8231860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8234200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ceil.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8239160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8241750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8245120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sqrt_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8249340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8250860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/min_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8255270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8258660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8261900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nnpack_available_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8266190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_right_shift.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8270050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8273610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8279270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8280550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_autocast_to_full_precision.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8282760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8283970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_min_seqlen.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8290090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/remainder_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8295040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_det_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8298100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8299730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8302760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8306350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8308730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randint_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8312730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8315020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nested_to_padded_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8319210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8321300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8325710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8328250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isclose_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8333430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize_as_sparse_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8334590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8338380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8342410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8344990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triu_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8351070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_scaled_modified_bessel_k1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8353070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mish_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8357350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atleast_2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8359500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_lengths.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8361690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/renorm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8366380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_group_norm_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8369070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8371840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8377730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8378920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/take_along_dim_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8386690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_from_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8387830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hsplit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8392890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gather_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8394270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8395530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8399490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/t_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8405660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triu_indices_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8407960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8411930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/absolute_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8415030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isnan_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8418590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_hfft2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8429930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8431110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atanh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8432290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8437070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8439350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fill_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8440600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8442030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8446160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8448380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_mask_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8451850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8454570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8457630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rsub_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8463090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8466870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinc_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8469110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8472860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8474430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8479310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randint_like_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8481410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8486110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8493250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8494450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/abs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8496970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isin_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8499360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/huber_loss_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8501410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/retain_grad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8506240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_resize_and_clear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8509300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kron_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8512070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log1p_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8515230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8517770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_no_update_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8521550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bucketize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8525100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8527860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8531940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gather_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8536440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8537830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8543210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8545380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clip_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8555510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bernoulli_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8556690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_local_scalar_dense_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8558210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cslt_sparse_mm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8559520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8562090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8564580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8567720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8570960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8575710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8578770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8582330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8584460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pow_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8588410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Double.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8592880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frobenius_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8594820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8599620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8600680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_pow_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8607060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8609720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kthvalue_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8614580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_is_any_true.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8615650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reshape_as_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8619270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8621300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_y0_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8626430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/crow_indices_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8628950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_int8pack_mm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8632640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/uniform_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8635160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_dense_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8639850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_csc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8642990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reshape_as_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8647930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8649130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8651330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8654320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8658310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8661990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8665800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8668110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/set_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8674370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/numpy_T.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8675580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8681690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_batch_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8682900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8688120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8689270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/float_power.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8690520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/narrow_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8694270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8698270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_consecutive_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8703530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rot90.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8705580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/t.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8709500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8713540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/squeeze_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8715610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_min_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8718130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/greater.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8721550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/swapaxes_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8725020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8731560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8733190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8737770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sign.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8738990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8740790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_svd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8745980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/from_blob.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8749350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8752240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8756210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8759030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8762720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8764260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linspace_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8768300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8770940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_ndtri_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8775390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8778510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/put_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8782680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8784720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8788340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8791800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8795300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log1p_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8799700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8803310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tril_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8805590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8809450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8810750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_compute_linear_combination_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8815150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8821340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/put.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8826380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_airy_ai_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8829060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8830310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8831410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eq_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8832540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8834700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/im2col_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8838500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8840820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumprod_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8845610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fill_diagonal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8853220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lgamma_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8855250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/equal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8859640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eigvals_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8862020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_flash_attention_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8868100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8869310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8876080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8877610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8883270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8884520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/value_selecting_reduction_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8885710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unpack_dual.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8891500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_log_ndtr_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8892780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8894810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_csc_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8897720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log1p_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8903680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8920710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flatten_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8926690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_numel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8928810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_svdvals_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8929950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8931050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_select.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8932140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8933250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_airy_ai.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8934360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/min_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8935440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8936520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logit_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8937740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8945580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8946770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8952490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_rnn_layer_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8953770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8955030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_efficient_attention_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8959280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8962180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8964820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polar_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8967870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linspace.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8971350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_power_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8974280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8977670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8981260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arccos_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8986680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8987970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/digamma_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8991300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_is_acceptable_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8994920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.8997770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9001120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9004560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erfcx_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9008430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cdist_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9012380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mean_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9017470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9021140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_mul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9026350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9028000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/round_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9030050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/moveaxis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9032590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_efficient_attention_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9035690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9038780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9041990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9044860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9049300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acos_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9052270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nansum_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9055430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9059650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9064120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9065660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diag_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9067970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9072570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9077530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9078710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9085960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mean_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9090980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9093010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9094300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_ctc_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9095600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9100610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trunc_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9102110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_jagged_to_padded_dense_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9106570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/detach.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9109850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_he.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9113840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9115940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9118150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/random_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9123240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_aminmax_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9128190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9132020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_select_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9133130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/row_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9135080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expand.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9137430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asinh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9140770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atanh_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9144230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9148910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sub_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9151020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/affine_grid_generator_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9154080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rnn_tanh_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9157490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ger_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9161260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9166220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9168300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9172860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9176580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/result_type_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9183120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_prelu_kernel_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9184230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ormqr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9185360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9188220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9192960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_inverse_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9196980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9198460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9202310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9204960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9210280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9213680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9224230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_ndtri_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9225420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_addmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9226690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_xlogy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9227900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9230510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_floating_point_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9231700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9232910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_pow.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9235070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_irfftn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9237470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9246230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9248700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9255340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9256480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/median_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9262970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ifft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9264110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9269390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ceil_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9270510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9272260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/full_like.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9276430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9280040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9282010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rad2deg_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9285230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9289900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmax_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9294330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/refine_names.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9295530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cond_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9300000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9306170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9307380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9309540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tensordot_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9312330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_from_padded_and_nested_example.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9314370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9318630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sqrt_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9320880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9324280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_jvp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9328340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_elemt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9331780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9335260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9341020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erfcx_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9343010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nextafter_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9349500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9350790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9352970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9356470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_stats_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9358610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_tbc_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9363910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_linear_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9367380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_assert_tensor_metadata.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9369420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9375730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/add_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9376820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rnn_tanh_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9378260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9381820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9385700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expand_as_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9389640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9392340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9394880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_scatter_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9398060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9401400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9404900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_aminmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9407890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/istft_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9411220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9418310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9419610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_expit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9424180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_stack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9426270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fliplr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9428290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acos_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9431710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log10_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9434450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmax_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9437560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triu_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9441720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_dim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9446720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_and_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9448270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9452620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9454660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/prod.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9459040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mul_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9464570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_pinned.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9465670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_add_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9468800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9471520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9474870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9478440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9481420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rrelu_with_noise_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9486800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9488400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9493850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_householder_product.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9498590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9499810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/aminmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9501730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_real.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9505160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9508790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9512670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/huber_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9516170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_batch_norm_legit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9518870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9522030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9524290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9527520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9533800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9538040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagflat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9540060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amax_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9541450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9544850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i1e.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9547730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9551460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9554660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zero_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9557590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9561940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9564410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9567130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arange_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9573930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mish_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9576070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/chalf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9579880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_svdvals.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9582050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9584120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_spherical_bessel_j0.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9589710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_int4pack_mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9592890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expm1_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9595600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9600290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9602820Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:42:59.9608220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/std_mean.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9612170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9613290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_eigh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9622950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smooth_l1_loss_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9624100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/igamma_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9625400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9626550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/remainder_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9630720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9631980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_select_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9633090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_sum_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9638380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9645250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9650530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/baddbmm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9651760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/poisson_nll_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9652900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/baddbmm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9656260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ger.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9659020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conv_depthwise2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9662900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9667080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9670310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9674440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lift_fresh_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9676400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss2d_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9679660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/imag_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9683230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/full_like_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9686400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Float_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9689830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9695530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9696740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lt_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9700320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copysign.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9701460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_indices_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9706560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9707850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_fill_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9715720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_tbc_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9717920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9723280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_xor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9724470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logit_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9725700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9730490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9731710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9736110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ceil_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9739370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9743360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nanquantile_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9745380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_dep_token_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9751460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9753800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_backward_elemt_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9758330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_round_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9759420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_alias.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9765070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/le_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9768700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9771560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resolve_neg_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9772280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binomial_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9776000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mvlgamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9780400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lshift_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9783300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9784880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_efficient_attention_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9788430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9790600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_gammaincc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9795480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9798190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9803920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9804970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binary_cross_entropy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9814440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/concat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9815150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mul_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9821500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9822290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_multigammaln.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9823810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9829240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ifftn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9831510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9833000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nonzero_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9835230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nonzero.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9840420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fliplr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9845370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/negative_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9846760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fftn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9848620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_batch_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9851540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9855230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_empty_strided_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9858430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9864270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_add_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9865230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9872510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eye_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9873320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cartesian_prod_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9876480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9877970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9881530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_transpose2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9884420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9891060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/geometric_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9891680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosh_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9897520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copysign_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9898940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9904020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/output_nr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9904980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argsort_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9909810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_hfft_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9911290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinh_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9915330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9917440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unique_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9921910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9924620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/range_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9929330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_log_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9931460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9934480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9938020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9942600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/detach_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9945310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9949130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isnan.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9951810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_xlogy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9956060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9959000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/all_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9961200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9966850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9969140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9972420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumsum_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9975940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_scatter_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9979490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_reduce_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9982820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9985260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_det_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9987680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sin_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9992650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/random_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9996600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pdist_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:42:59.9998550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0000770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0009600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumprod.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0013410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_entr_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0014160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_lgamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0017150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/any_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0017790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_add_batch_dim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0019960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0022510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0026330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0032610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0036990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0040400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0042320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0044400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cholesky_ex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0051460Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:00.0056160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0060620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/geqrf_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0066590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_rfftn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0067370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0067960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv3d_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0068620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/qr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0071320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cholesky.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0077120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0079930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lerp_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0086650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0089940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_scatter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0091020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flip_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0093260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/topk_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0095910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_neg_view_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0100180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0102650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0106130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/col_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0111650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0112460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0115940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rand_like_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0119840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foobar_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0124090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/histogram_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0125580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/all_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0129840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_channel_shuffle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0134030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vdot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0136260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_dilated3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0138680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/any_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0144890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0152770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_log_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0154390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0155340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_dirichlet_grad_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0158920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_coalesced_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0159880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/baddbmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0162240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0164890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trace_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0169520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nextafter_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0170380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0175000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0179460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_dropout_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0185640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_multi_head_attention.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0188890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0189750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0191780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0195070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0197160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0202240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/renorm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0204680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0209850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/t_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0214240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsafe_split_with_sizes_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0216040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0218940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmin_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0221410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_sum_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0225260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_sinc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0227500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_nd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0232710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0237120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0240310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_batch_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0242640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0246070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gather_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0249800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0251280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/relu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0253860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/poisson_nll_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0258800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_not_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0262540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/item_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0264860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_batch_norm_legit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0270240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0273340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0277120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_legendre_polynomial_p.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0277850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_batch_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0282710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0285150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0289190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0292740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pixel_shuffle_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0294660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rshift.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0297970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0303380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_update_stats_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0307630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/squeeze_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0310960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i0e_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0312580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0316780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mish.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0317670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/subtract.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0323880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trunc_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0324820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0331920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0333120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0338610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0339450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0341660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_relu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0348270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0349220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_from_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0356950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0357660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/blackman_window_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0359060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_elemt_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0364570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0365260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sobol_engine_ff_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0369030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sort_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0371660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logit_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0374760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cat_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0378430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/le_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0382570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mean_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0384460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_inference.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0389600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ihfftn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0391940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mode_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0395600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/segment_reduce_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0400060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/detach_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0406470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_triton_multi_head_attention_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0407360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0408710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/corrcoef_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0412600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0417120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0417850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0419410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unflatten_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0422660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0425370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ldexp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0427930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_log1p.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0431830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0435280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0437610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/le_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0441600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0445800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0447340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/align_as.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0452530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linspace_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0454340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_ragged_idx_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0461470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0463350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_transpose2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0466740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/narrow.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0469580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0472290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hspmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0478680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_saturate_weight_to_fp16.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0479370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0481770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0486970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/var_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0487670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfinv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0493510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0496070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0501770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dot_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0502540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_dim_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0504680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0507590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0511530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0515010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0517830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0524030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_not_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0524750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0530630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_bsr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0533070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/digamma_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0535960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lstm_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0538140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/digamma_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0544140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argsort_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0545650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0549790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/col_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0553680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tile_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0557150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0559280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/movedim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0562530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bincount_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0565140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tril_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0570590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_xor_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0571920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_jagged_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0576410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matrix_H_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0578300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0586460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_not_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0587520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_indices_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0589280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addbmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0592700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_storage_offset_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0596250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ctc_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0599930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_max_pool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0602520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0604940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_broadcast_to_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0608550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eq_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0612640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/angle_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0615210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/take_along_dim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0619050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_dimI_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0623830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0626820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0631560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_sparse_matmul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0633720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_debug_has_internal_overlap.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0635570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_ndtri_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0638520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize_as_sparse_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0641320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_mkldnn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0648290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/le.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0649110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ihfftn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0654310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lstm_mps_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0655280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0658490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/transpose_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0663350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/meshgrid_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0665610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0669250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_rnn_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0670800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0674660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adam_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0678680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copy_sparse_to_sparse_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0680810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0688040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0692710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_gammainc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0696730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_sparse_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0697540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0699160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0702750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0705350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_hfft2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0710180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0712950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0717320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_permuted.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0721920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0722770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_expm1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0724940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0727570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_conj_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0730920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fftshift_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0735160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convolution_mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0740510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_scatter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0744640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_constrain_range_for_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0748250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unique_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0749080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cdist_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0751430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_tbc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0754000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triangular_solve_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0757930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0760410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_dim_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0765210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/searchsorted_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0770210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logspace_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0774650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/record_stream_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0775700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0778130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0781270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frac.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0786560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binomial_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0788940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ihfft_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0792720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amin_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0795620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hamming_window_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0800100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0800960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0805040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0808610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0812310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_and_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0815270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/searchsorted_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0819140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/histc_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0821340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_assert_tensor_metadata_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0825360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0828440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_pinned_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0833050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_quantized_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0836380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cholesky_inverse_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0839100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0843770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0845880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arctanh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0850900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/alias_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0852340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0857120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_pinv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0859370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/instance_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0862550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0865970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0871640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_add_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0872420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0877610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kron_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0878610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0882790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arctan2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0884580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eye.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0889290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log1p_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0891420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0896090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sqrt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0899120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0902890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0905280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0910150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0913940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rnn_relu_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0915420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_or_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0918310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bartlett_window.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0922450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0924380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0928570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0931230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0935710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0937570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0942460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_check_errors_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0944610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_batch_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0948370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_gather_sparse_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0950870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_strided_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0958110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0958760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_entr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0963300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0964570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_from_padded_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0968440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0973050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0974580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0978600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frac_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0981220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i1_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0984900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0989180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_tan_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0992200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tan_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0995190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frobenius_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.0997510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_exp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1001790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sgn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1008390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1009250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_trilinear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1016670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1017590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1019540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_add_relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1023200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1025200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1027810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_optional_floatlist_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1031790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1036340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1040410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1044900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_xlog1py.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1045640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1049420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/inner_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1051840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1054700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_round_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1061270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/equal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1063270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1067050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1068630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unbind_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1072720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1073540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1079320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pin_memory_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1081930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1084710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1087090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_det.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1092270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/chalf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1097570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sobol_engine_scramble_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1099540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1106160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1108080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_polygamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1114720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/values.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1115550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1118430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1120920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1122430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1125680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1130350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1132310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumsum_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1133950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bernoulli_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1138360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_assert_async_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1142940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isposinf_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1146770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1148720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1154980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1157660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i0_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1160720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cond_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1161690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1167210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_svd_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1171090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/angle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1174750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1175520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/allclose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1180980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1185500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1187470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kaiser_window_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1188770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unpack_dual_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1191170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_affine_grid_generator_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1195730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1199800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1202640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_min_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1204500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expand_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1208330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1211530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binary_cross_entropy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1216790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1219560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_debug_has_internal_overlap_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1223290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1224290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1228010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/soft_margin_loss_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1231240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1235790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1237430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_k1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1241040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rsqrt_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1244770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_dense.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1249490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1251660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1257190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1259520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scaled_dot_product_attention.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1264090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mode_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1266190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1269330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1273750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_select_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1276420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_ambiguous_defaults.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1280490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1281710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1284620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1288390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1291590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1298740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1299430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1304780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1307090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_csc_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1307990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gcd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1311950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_dimV.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1315910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1318230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1323930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1326530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_layer_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1330020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_ndtr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1331110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1335120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/retain_grad_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1341980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1345710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1348950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/column_stack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1351310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_int8pack_mm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1357250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1359900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_flash_attention_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1362520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1365180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1368440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1371310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logit_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1376240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_normal_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1380330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/qr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1383000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1385900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trunc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1390390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_rnn_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1392990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1397830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sub_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1398750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1402020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1406530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_min_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1409260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_leaf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1414200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1415680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1419490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ldexp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1424520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1425600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1429460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1430720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1435610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_inv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1439680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1442570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1444720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1449610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pack_padded_sequence_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1451940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randperm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1455610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_reduce_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1457840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lu_solve_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1461930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dense_dim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1468020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1468890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1476850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1477580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/margin_ranking_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1478730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_right_shift_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1486610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_csr_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1487500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1493230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sqrt_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1495020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1496500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_fill_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1500160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/maximum_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1502480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asinh_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1504590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_not_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1510370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/random_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1511180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1519780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_expm1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1521130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_spherical_bessel_j0_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1525150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_entr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1525870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argsort_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1528020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1531300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1534360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Char.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1539710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1544660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trace_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1546600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hinge_embedding_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1548550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bartlett_window_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1551870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1554850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/indices_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1559060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1561270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsafe_chunk.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1564960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1568170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_dirichlet_grad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1571890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1574650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_use_cudnn_ctc_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1579450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_backward_jvp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1582300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/igammac_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1592790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1595090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1601120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1602310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1603300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1604340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1605170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1607270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nnpack_available_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1609660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fft_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1611080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1614710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argsort_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1622960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/relu_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1626890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1630490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1632500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1634120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_shape_as_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1642840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_and.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1643480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1644400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diff.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1649350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/round_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1651950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1655100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1659940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bincount_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1663930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1665130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1667880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mkldnn_transpose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1673980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1674990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1679240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1684700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_digamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1686420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1688630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1691010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1695090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isposinf_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1697810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1701090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1706140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor_divide_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1709660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1713010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1715080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Char_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1718550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_renorm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1720620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/promote_types_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1725370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1729270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1733740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1736260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cov_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1739720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/greater_equal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1741600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gather_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1745360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scaled_dot_product_attention_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1747860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_is_all_true_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1751370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nonzero_numpy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1759810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_scatter_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1760810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1766210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1767920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/msort.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1769590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1772670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1775220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hstack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1780950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unique2_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1783990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/divide_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1786930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1788280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/var_mean.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1794000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1795310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1800980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1801660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_svd_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1806700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1808450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_per_channel_axis.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1812680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1816500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adamw_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1820740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/complex_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1824300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fix_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1826040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1827960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1832750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cat_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1835330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_empty_affine_quantized.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1839200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1843220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1846460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1848350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_div_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1851170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1854170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1860310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/segment_reduce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1863620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cos_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1867640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_tensorinv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1869610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ifft2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1872000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1877350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1878440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1884060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1886420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1889520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_stride.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1890720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_h_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1895230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tan_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1898400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1903340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1906190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1909020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1911120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1917710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardshrink_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1920220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1924780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1926030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randn_like.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1928610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/histogram_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1931720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dstack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1934330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_csc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1940050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binary_cross_entropy_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1945930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_int_mm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1947450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_lu_with_info_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1948380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1955940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1956730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1961190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trace.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1962010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matrix_exp_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1964570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/indices_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1971860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1974320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gru_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1978050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1981080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1984520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1986630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_warn_in_autograd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.1999410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arcsin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2000160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2001120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2002530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2006010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2006640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atleast_3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2008230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kthvalue_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2009950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2013050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smooth_l1_loss_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2019990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2024270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2025750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_max_pool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2028520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trapz.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2034550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_trilinear_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2035280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_batch_norm_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2045540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linear_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2049390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_ctc_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2052460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2053230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2054200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randperm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2056340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2060250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/less_equal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2062090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mse_loss_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2067660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2069140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/qscheme_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2076660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumprod_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2077940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2080310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2082490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/blackman_window.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2085220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2090450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2093770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triu_indices_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2097590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_transpose3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2099610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2102610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2105040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2109320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2112950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_select_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2115140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dropout_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2119270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lstm_mps_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2123540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cartesian_prod.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2127140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2132250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_indices_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2133550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2135950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ormqr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2137550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardshrink_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2143700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2145380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2149460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2152160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2157910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2158800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2168290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/channel_shuffle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2169080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2170450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/indices_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2172480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2176490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ge_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2181210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2182440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/minimum_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2185220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_dimI_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2188100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize_as.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2191980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2196640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2201190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/or.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2202290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_same_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2204200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumsum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2209390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2211080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/set_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2214950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exponential_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2220310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2222080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2226240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2228440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copysign_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2233630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asin_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2236670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2240950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2241980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2246140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2248100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2253340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2255910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sigmoid_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2259140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/alias_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2262680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ormqr_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2264890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hsplit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2270760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/heaviside_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2271440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kaiser_window_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2277120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fftfreq_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2278580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/greater_equal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2284300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2285240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2290400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2292340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2296520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2298790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2303260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2306990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_k0_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2308880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vsplit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2311610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_eigh_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2314510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_i1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2318630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2324300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2325150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2330290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2331140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/channel_shuffle_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2334750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_jvp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2339680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_storage_offsets.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2342270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_convolution_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2346480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_is_all_true.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2352260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/le_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2355320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2356790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polygamma_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2359130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2360650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2366080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2368200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_he_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2371610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_values_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2376910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2379080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2394560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2395550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2396650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2397600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2401880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2402600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_bag_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2403790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flatten_dense_tensors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2404650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_hfftn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2406080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mvlgamma_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2409680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_rnn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2419300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isreal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2419950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumprod_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2424630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_xor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2425540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2430090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_index_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2433050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cos_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2435060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fftn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2438630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2441200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2445030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2447930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rnn_tanh_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2451310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2455680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2459000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eq.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2461370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_efficient_attention_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2466290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2468810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumprod_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2474860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmod_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2475730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2483220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_c2c.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2484140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2486990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_bsc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2490630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pad_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2493470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_i0.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2494970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2500040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arcsinh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2505050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2508430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2510790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_relu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2513420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2515250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2517700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2520980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lu_unpack_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2527940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_coalesced_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2530180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erfcx_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2537800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/var_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2539340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_max_pool3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2540090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2544560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2545480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_triton_multi_head_attention_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2548120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2554770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/var_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2555830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2561630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2563630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2567680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lgamma_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2568520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_mm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2571330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2576570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_mkldnn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2580170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2583130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2584710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binary_cross_entropy_with_logits.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2590570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2592840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad3d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2597940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bmm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2600030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_dense.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2602150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2605140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2608480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/igamma_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2612560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2616470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_full.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2618080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2620910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2625860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_slogdet.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2628590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_rfft2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2631110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_atan_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2636670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clip.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2640600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reshape.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2642260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2644740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2648360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2651720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2654940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cslt_sparse_mm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2657980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2660960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2666140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_complex_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2668290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mvlgamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2671940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/permute_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2674590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sign_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2681620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2687400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2688270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_minimum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2696770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/int_repr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2697320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/heaviside_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2697820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/column_stack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2703420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2704360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/minimum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2711630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_bsc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2712790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2723050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/from_file_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2723860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_transpose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2725330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2728940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2729740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2731710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/real_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2735050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2738640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2741400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/align_tensors_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2745800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acos_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2749280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/minimum_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2751970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_y0.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2757620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sspaddmm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2759660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2764520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logdet_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2765780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cauchy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2769860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2771530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_vulkan_available_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2775200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2777820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gt_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2787850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ccol_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2788570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/normal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2792000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2794720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2796400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2797090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_bsc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2798850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eigh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2803670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2805220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2811770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rnn_relu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2819090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2820440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2826750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2827470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2828910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2834070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_constrain_range_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2835130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2838430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2843990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2848250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2849650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_factor_ex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2852680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2855250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/heaviside_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2859380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2861860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/histc_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2866670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pad_packed_sequence_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2868030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_per_channel_zero_points_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2874410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_dense_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2875160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/square.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2881450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_empty_per_channel_affine_quantized.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2882290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagflat_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2885510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2889240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2895660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/prod_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2899380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cdist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2901490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2905970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_expm1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2908970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atleast_1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2911410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2915870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2918430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2922000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_transpose1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2926980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_assert_async_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2931500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_rfftfreq.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2932370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2935410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cummax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2937890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2940650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/normal_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2944840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2947680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2952620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumsum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2956650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2960720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2962570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/histogram_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2965600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_acos.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2969750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2971710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2976410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amin_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2981330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2984380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2985280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_jagged_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2987330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_power.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2992510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2995890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.2997790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_no_update_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3001000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3007830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3008720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/norm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3013470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trunc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3014400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_qr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3017770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3020980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3025070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3027040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3033560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3034270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3039370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lt_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3041450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3045990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/crow_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3048760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_dense_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3051880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/minimum_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3054280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pixel_shuffle_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3060000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3062870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_complex_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3065340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_clamp_min_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3070390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3071110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3078460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_expit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3079360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3084210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3084990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lstm_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3090930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binary_cross_entropy_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3093870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3098940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3101400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rename.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3104510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addbmm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3109080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3111700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3115610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/xor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3119770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3122540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3126100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log2_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3127920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sub_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3130730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_real_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3136800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3143330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3144610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/norm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3145760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_transformer_encoder_layer_fwd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3149600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3152090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_like_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3156050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3158260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3161200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3165680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_is_zerotensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3168200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3172450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/col_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3176580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_scatter_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3185350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_select_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3186640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gt_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3187720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vander.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3194070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3195330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3196610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_masked_index_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3197760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3199950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3201620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/signbit_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3206080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_add_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3209790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/add_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3215420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_addmm_activation_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3220210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/maximum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3222390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3227050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3231770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_max_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3233160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3235390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tril_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3239210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_j0_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3242260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3245910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_optional_floatlist_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3250330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_lazy_clone_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3252780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3258050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_slow_conv2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3259300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3261440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/result_type_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3265760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lcm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3268430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3276650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_per_channel_zero_points_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3278560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3284350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_dep_token_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3286510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/poisson_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3287670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3290850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pad_packed_sequence_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3292860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_irfft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3294970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3299670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sum_to_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3300770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/transpose_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3304810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trace_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3312660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_rfft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3316360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3318150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3322990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/one_hot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3326350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3330680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3334190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atleast_2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3337470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmin_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3338740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randint.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3342760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3346830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3349800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3351960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smooth_l1_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3356580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/broadcast_tensors_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3360790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_max_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3364960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_constrain_range.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3368590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3369860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fftshift_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3371700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3377410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3379920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3384910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mse_loss_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3386040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gather_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3388430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3392960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/median.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3396940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rnn_relu_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3398850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cummin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3403700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3413490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cummax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3415640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_layer_norm_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3416830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_complex_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3423210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/igammac_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3425240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3426440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_qr_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3427470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/celu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3429600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_functional_assert_scalar_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3430690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3436740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/where.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3439210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_strided_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3443250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3444860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3449900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3452510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3458070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3460240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3462450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3467090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3469050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fill_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3471510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/relu6.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3476740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_coalesce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3480530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_right_shift_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3481700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nextafter_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3484850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3487660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nonzero_static_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3493110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sobol_engine_initialize_state.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3495580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/range_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3498690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3501710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3505250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3507260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3513170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3520520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_add_relu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3521980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3525240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/negative.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3528000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lstsq_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3531360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3535600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmax_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3537690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_cpu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3541970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_group_norm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3545290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3550560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arcsinh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3551640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_per_channel_scales.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3556550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3558490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_optional_intlist_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3563730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_tensor_affine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3568340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3578870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pdist_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3580180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_string_default.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3581390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3582540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/narrow_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3584480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_tile.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3592580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3593720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_sdp_choice_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3594770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_signed_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3596090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3605240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_optional_intlist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3607490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3610720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3613440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3615730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_interface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3619840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atanh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3623190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3626790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/var_mean_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3628930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polar_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3631610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/square_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3635640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argsort.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3638040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3640200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erf_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3644360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3647920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cholesky_ex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3651140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_log_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3655010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3659830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/norm_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3662940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3668700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mean.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3669910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_assert_tensor_metadata_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3672330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_addmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3676230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cufft_clear_plan_cache_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3678260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_strided_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3682580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3684730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3688170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/chalf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3693080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3697660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3699790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3701110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3910190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3911410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_amp_update_scale_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3912540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardswish_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3913670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pow_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3914710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frexp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3915760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cholesky_solve.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3916900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_dim_arange_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3918060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/median_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3919140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3920310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3921620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3922800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bernoulli_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3923930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_values_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3925100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_select_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3926400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3927610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sigmoid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3928700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_and_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3929930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3931190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_is_acceptable_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3932410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3933630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3934690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lcm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3935800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rrelu_with_noise_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3937050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3938320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_i0_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3939480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_strided_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3940570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_dep_token.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3941640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/complex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3942690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3943820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/count_nonzero_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3944950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3946190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3947560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3948810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3950010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3951250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_i1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3952430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nansum_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3953550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cholesky_inverse_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3954710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3955900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3957190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3958500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3959760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3961010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3962220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_reduce_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3963350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor_divide_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3964620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_efficientzerotensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3965760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3972520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3974000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3975260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polygamma_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3976390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lgamma_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3977530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_scaled_modified_bessel_k0.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3978800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3980030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cholesky_inverse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3981110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3982170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rsqrt_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3983360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3984630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/row_stack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3985770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_per_channel_quantized_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3986960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/segment_reduce_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3988220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3989430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_strided.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3990520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3991720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3992880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/abs_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3993970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/moveaxis_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3995110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3996400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3997780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.3998980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conj_physical.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4000030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_asin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4001150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4002400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4003540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/deg2rad_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4004630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/median_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4005770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4006960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4008100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polygamma_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4009220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_solve_ex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4010430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4011590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_stats.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4012650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/baddbmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4013760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4014960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4016080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_solve_ex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4017530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4021110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4027390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4028520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_complex_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4029710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4036300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/huber_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4037410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_ctc_loss_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4038490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pin_memory.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4042970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp2_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4046260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/stft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4047710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4052160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4061370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4071810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4073510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4074850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_slogdet_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4076090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4077780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4079040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_ndtri_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4080230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4081560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logit_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4086720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4088740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nanmean_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4092900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4096200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4098880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4103340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4104850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polygamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4111330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/normal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4112490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4117850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4119150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4125680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/add_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4127850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4131250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_gammainc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4132380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_gather_stats.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4138000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4140200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sspaddmm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4144270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/stack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4146120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4148560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multi_margin_loss_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4152490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4155260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/svd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4158120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_bsc_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4164900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hspmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4165990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conj_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4168020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4170790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4175250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4178160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clone_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4181250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4185170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4190050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4193850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4197820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4199220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eigvals.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4202700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vander_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4205670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4207800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4212280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_tbc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4215270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isposinf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4218280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_grid_sampler_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4222380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4227100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_w.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4230050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4232960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4234900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_add.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4237950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4245460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_batch_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4246600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fill_diagonal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4253610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_digamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4254970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4256260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_serialization_subcmul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4257460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4264420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_values.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4274590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4276040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/neg_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4281340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_tensorinv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4288640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4289830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_dim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4295760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4297270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4301690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_exp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4302970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_copy_from_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4306900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4308180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4311820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vector_norm_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4316410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4320170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4324110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4325390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dequantize_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4329590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfinv_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4332910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4336980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sign_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4338600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4342900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_dimV_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4348490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4411620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4412910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4414170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4415480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4416810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4418160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4419330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_prelu_kernel_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4420470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4421610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/relu6_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4422680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_k1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4423890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4425010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expm1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4425990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kron.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4428040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4430070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cat_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4432610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_check_errors_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4435430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triplet_margin_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4438320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tril.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4442070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4445220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_rfft_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4448320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4451290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4456540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_remove_batch_dim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4464280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cholesky_ex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4465460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_rnn_relu_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4466620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4470970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4473170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4474410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4479870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_semi_structured_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4482010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4485660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_stride_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4492810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_dual_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4494820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardswish_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4498320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4502640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_batch_norm_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4506610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4509270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/abs_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4511750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_transpose1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4514770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isneginf_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4517460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4521410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/poisson_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4526930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_renorm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4529170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4532140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4534700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/minimum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4540600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_sigmoid_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4543540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sobol_engine_ff.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4548880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_batch_norm_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4550000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/block_diag_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4553300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4555500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4558950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4562400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4564470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4568630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acosh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4573420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/roll_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4576990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_copy_from_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4580130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4582140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4585790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linear_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4588250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4592250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4598560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_transform_bias_rescale_qkv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4604720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_batch_norm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4607540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/digamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4609500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4611700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4614750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_dropout_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4620900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conj_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4621960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_dropout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4627980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_index.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4644700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4660620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_jagged_dummy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4673390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/record_stream_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4685300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_transpose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4695900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unique2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4702040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i1e_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4703180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4704360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_dropout_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4705580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4706870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4708060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_dense_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4709140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4710290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_parallel_materialize_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4711390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bernoulli.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4712470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pad_circular_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4713560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4714690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_select_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4716000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4717470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4718690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4719790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4720960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad3d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4722090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_psi.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4723240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4724330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcmul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4725410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4726520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4727770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_multigammaln_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4728920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp2_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4730060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_addcmul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4731170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmv_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4732340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4733460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/type_as_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4734560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_tensorsolve_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4735650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/range_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4736780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4737940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_backward_jvp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4739060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4740230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4741450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4746930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4747990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bincount.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4749330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4754240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hann_window_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4759860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4763330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4765420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4767440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4769580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cummaxmin_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4771920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4775800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/affine_grid_generator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4778350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_and_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4779860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4789250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4796150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_channel_shuffle_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4797350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/greater_equal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4798500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/imag.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4802300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmin_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4805760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i0e_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4810970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_unpool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4812910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4819560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4820900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4823360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matrix_H.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4826970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/transpose_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4828140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4832650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fill_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4838210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4839520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copysign_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4842930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amin_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4844990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rms_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4850290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asin_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4851540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4854990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fliplr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4863030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4868730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4870880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4872970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4881690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4883150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4884150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_sampled_addmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4888630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log10.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4890970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/aminmax_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4892810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_max_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4895530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_scatter_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4899890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4904090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4906090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4909030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_add_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4911490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_alias_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4914710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4920270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lcm_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4923420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4928260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4929780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4932090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4935980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_padded_dense_to_jagged_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4940090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardshrink_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4941530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4944940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conj_physical_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4948030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4953920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfinv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4956260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4959640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_gather_sparse_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4960590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addbmm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4967030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4970000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4975810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4976600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matmul_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4980330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/coalesce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4983990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log10_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4986520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_lu_with_info_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4989130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4989840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expm1_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.4998220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5002950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5004680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_interface_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5009990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5012900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ne_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5016100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcmul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5018660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_logsumexp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5021970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5025100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_csr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5029430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_round.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5030910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor_divide_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5036250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5038080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/margin_ranking_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5044690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5045810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5051760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triangular_solve_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5053740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5055110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dstack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5061410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_sigmoid_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5062100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5067000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_xlog1py_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5073530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/maximum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5077620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5079820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nnpack_spatial_convolution_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5080630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/contiguous.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5084850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5090170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5091530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/group_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5095300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_dropout_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5102570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sgn_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5103390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5109970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multiply_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5110890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5112580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5116990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_affine_grid_generator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5119230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_signed_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5121600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_ndtri.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5124460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5127690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lt_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5132020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/requires_grad_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5135300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hypot_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5138320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5142060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5148270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5150230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/round_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5157450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5158420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5159870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_prelu_kernel_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5171350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nonzero_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5172240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5172850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_backward_reduce_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5173360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmin_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5176100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_copy_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5178410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rand.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5184050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/searchsorted_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5185360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/prod_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5191020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5192630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_per_channel_scales_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5198510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5200290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfc_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5201860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/i0_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5205950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5213800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5215890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5218630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_values_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5225530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_he_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5435900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5437000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5437960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cslt_sparse_mm_search.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5439150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5440390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_csr_prod_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5441340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5442380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5443350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool3d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5444820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5445710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5446580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pin_memory_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5447970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nuclear_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5448700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5450080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ceil_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5450820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_empty_affine_quantized_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5451780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zero_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5453220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5453910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5455320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isnan_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5456110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frac_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5457200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5458200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5459700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5460550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5461530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_max_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5462950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5463620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5464880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5465780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erf_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5467150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eye_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5467770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argsort_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5469240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/column_stack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5470020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5471530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/uniform_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5472280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fw_primal_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5473670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sum_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5474830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asin_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5476250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cross_entropy_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5477110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_irfft_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5478570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5479440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5480990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/permute_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5481680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cdist_forward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5483150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5483850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5484930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/row_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5486630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5487190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matrix_exp_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5488200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_channel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5489720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5490450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_dilated2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5491390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/histogram.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5492780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conv_depthwise2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5493590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5495010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5495690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5497250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_xlog1py_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5497930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_functional_assert_async_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5498720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amax_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5500300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/retains_grad_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5501030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mean_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5502520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5503290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smooth_l1_loss_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5504790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5505670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5506660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5507710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5509070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5509870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5511360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5511990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/numpy_T_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5512970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_rfftfreq_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5514660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cauchy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5515300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5516160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5517600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unflatten_dense_tensors_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5518250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atanh_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5519530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_add_relu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5520450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5521620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5522540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_softmax_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5523950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor_divide_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5524750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_expm1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5525710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fftshift.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5527280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5530400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5532410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5540620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5541690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5547220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5547920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Short_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5549350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linspace_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5552360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5555090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/remainder_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5561120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bilinear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5561920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5567830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5569320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_asin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5574050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5577110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5578810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5583530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/any_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5585090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5590130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5595690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5597690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5606100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ccol_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5610570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5612040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_r2c.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5615240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/outer_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5619230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5622370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hypot_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5627690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5629770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adjoint.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5631830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5637970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flip_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5640190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flipud.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5645500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmin_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5647060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_exp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5648110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5651240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addbmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5655350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_fill_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5658850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5663600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_ctc_loss_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5666480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flipud_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5672530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5681250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5682210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5687610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_dimV_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5688450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5691580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mvlgamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5696830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5700530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5705190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_with_update_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5710000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_normal_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5710800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_sum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5712180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_aminmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5716630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5717650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_transpose_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5727710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_rnn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5728550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/normal_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5729040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5733120Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:00.5735680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5738360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5742320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/angle_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5745300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5749720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5753250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5755200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_dual_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5758480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_rowwise_prune_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5763030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erfcx_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5769420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5776060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosine_embedding_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5776930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5778420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5782770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5786410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_view.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5787240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conj_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5790940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5792560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_log_ndtr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5795840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asinh_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5801580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5805750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumulative_trapezoid_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5807670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5810880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5816010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_sgd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5818030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adam_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5823270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mish_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5827090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/can_cast_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5829020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ge_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5832690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_consecutive.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5834960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5839000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5844300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5845990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_euclidean_dist_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5850810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5852730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_and_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5855680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5864060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5868090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5869070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5870070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_constrain_range_for_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5871550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/soft_margin_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5872520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isinf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5876130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5878050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_max_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5882980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_max_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5889040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linear_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5891580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5896060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5900810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5902700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5907030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5909660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5912870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5914760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5917300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_transpose_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5921150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zeros_like_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5925410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triangular_solve_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5927440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5934320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5936020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5939850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sinh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5944890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5945860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_semi_structured.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5948590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5952730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logspace_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5956220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5960170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5962090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cholesky.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5966620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_scale_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5968040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ihfftn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5973940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/or_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5975000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_coo_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5981110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5981950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5989170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5990050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5993090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5996390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_min.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5999200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.5999910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/repeat_interleave.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6011170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6012430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/item_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6017130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_relu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6019300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nextafter_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6021820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6027550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fft2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6029360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6033210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6036510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_convolution.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6044040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6045050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_r2c_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6046990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6048950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_optional_filled_intlist_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6050930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cat_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6055350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6061070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_warn_in_autograd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6061870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_coalesced_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6067520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_relu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6068380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6073240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_gammaln.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6074120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_ctc_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6079290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fill_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6081000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6086760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6090410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6119020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6119830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_bsc_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6120710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gcd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6126780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_add_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6128320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logit_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6129920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6130570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_hfftn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6131620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_flash_attention_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6133100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6134000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6134870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_trunc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6135960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arccos_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6137080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_weight_to_int4pack_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6138040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6139420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_tbc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6141740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_frac_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6145620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_empty_strided_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6147650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6153050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_mask.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6156970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6161490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atanh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6163840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multilabel_margin_loss_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6165100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exponential_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6171130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_apply.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6171790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lift_fresh_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6178580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6179430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sign_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6188380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adjoint_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6189250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcdiv_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6190760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6193860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6194750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6198700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mish_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6201940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/full.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6204400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6207540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_real_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6363710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6366440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6367230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linear_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6368330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6369710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reshape_as.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6370580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6371970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/prod_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6372600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/abs_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6373990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lift_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6374850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.6376420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9385430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erfc_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9393810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9403040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9410820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_slogdet_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9418280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9426050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pad_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9433950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/signbit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9442610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9450600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution_backward_overrideable_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9459940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9467440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_max_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9476150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sort_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9482060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triu_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9491120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9499820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9507280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9513080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i0.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9518860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atleast_3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9524500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_select_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9530760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9536400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_airy_ai_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9542650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9548770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_compressed_sparse_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9554820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_gammaincc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9560630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mish_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9565310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/min_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9569370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acosh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9573690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pad_enum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9578250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/inverse_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9582900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mm_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9588200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/broadcast_tensors_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9592850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9597680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zero_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9601900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_tanh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9607640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9611150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9614660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9618750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9622670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9626230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/renorm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9629830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9633650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9637430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9641730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_depthwise3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9646480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pack_padded_sequence_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9650940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_reciprocal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9653970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9655570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9663090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9664340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rsub_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9665490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9666740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9667930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isneginf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9669300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9670450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9671550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_gru_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9672690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_rnn_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9673800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rand_like_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9674980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9676240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trapezoid_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9677330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/relu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9678470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9679710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_jagged_dummy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9680860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_max_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9681950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unpack_dual_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9683220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9684470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9685590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/var_mean_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9686710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polar_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9687790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/narrow_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9688830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vstack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9689950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution_overrideable_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9691190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9692380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/transpose_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9693540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9694690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9696030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bucketize_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9697380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9698740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9701260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9702760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cdist_forward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9703880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9705050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9706250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_sigmoid_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9707350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_ctc_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9708500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9709650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9710920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9712180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9713370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eye_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9714380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9715520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9716690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expm1_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9717880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9719180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9720430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9721600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rsqrt_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9722710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triu_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9723980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution_overrideable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9725100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diag_embed_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9726300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9727550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9728710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lift_fresh_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9729860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atanh_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9730970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reciprocal_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9732060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/im2col_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9733210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9734410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_buffer_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9735500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9736570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ifft_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9737680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/combinations.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9738790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_csr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9739860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_r2c_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9741830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardtanh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9743910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/promote_types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9744970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cross_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9746050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nansum_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9747260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9910740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log1p_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9911910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sub.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9913220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9914580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Int_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9915850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9917160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lshift_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9918560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9919980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/negative_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9921260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Byte.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9922600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9924000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp2_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9925270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mish_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9926520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9927880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9934010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cross_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9935410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9936810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_complex_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9938070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cos.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9939310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bernoulli_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9940570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rrelu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9941950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9943460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9944990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9946410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_sparse_csr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9947690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/median_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9949160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9950620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9952070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/uniform_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9953440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9954800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_diagonal_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9956100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_reduce_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9957370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foobar_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9958890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9960390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9961620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_or_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9963040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9964370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/neg.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9965800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/igamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9967510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9968970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:00.9970280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0054070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trace_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0055310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_sigmoid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0056910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_factor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0058190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/eq_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0059850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/put_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0061570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hinge_embedding_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0063350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0064900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0066410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_dropout_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0067840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmin_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0069200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vstack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0070600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0072270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0073790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/can_cast_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0075280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0076820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0078240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/topk_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0079610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_tan_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0080980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expm1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0082350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_values_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0083740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0085080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_lerp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0086430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matmul_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0087850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_zeta_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0089290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/huber_loss_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0090750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0092150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_transpose2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0093540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0095130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0096910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0098440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/signbit_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0099850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0101480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0103060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logsumexp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0104450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_neg_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0105860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_forward_only_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0107260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0108560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/neg_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0109850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/take_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0111240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0112640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/i0_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0114110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0115570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_gammainc_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0116920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/squeeze_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0118260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_broadcast_to.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0119660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardtanh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0121210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0122980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0124640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0126200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0127660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0129150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_reduce_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0130570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0135520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dsplit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0136890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gather_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0143600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0145330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0146960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0148480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_debug_has_internal_overlap_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0149910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_assert_scalar_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0151540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0153100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unique.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0154660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0156390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0157880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0159260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0160710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/range_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0162150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool1d_with_indices.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0163560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0164910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/int_repr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0166260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0167680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0169110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0170620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_lstm_mps_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0171940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0173720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0175540Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:01.0177040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cos_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0178530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0180000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp2_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0181560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0183160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0184570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/coalesce_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0186100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0187800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0189390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0191060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0192610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/add_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0194020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0195620Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:01.0197150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bmm_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0198530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_mkldnn_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0199960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0201380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_y0_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0202890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0204250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/real_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0205540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0207130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0208530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0209810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_alias_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0212810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/col_indices_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0216210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logcumsumexp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0218720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0225610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmod_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0227860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_clamp_max_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0232440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0234720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0236040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_max_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0239360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0243820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0245700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0249730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0253690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0256690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0258730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0262020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0265440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0268990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0274280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_solve_triangular_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0275490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_unpool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0280440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_xor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0281770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/feature_alpha_dropout_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0286290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_empty_affine_quantized_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0289670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0292000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_standard_gamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0296350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0300140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_has_compatible_shallow_copy_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0303260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_update_stats_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0304890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i1e_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0310220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/baddbmm_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0311540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cummax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0315100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0319680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0322860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/norm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0325840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0330600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/concat_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0332530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/uniform_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0336910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gcd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0342450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0343600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_zeros_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0345450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0348150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0351010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Int_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0355550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_index_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0357110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lerp_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0361560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_add.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0368000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0373520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool1d_with_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0374790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0379750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_fill.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0381110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_backward_data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0385270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0387970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0391050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unflatten_dense_tensors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0394270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_ones_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0398650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcdiv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0403360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0406350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_bsr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0411350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0413260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ravel_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0416120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_addcdiv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0446960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0451680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_pinv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0466640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0471190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0484930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0490750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/msort_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0493590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_per_channel_scales_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0496710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0497890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/random_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0498980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0500320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0501550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cross_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0502790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0503940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_linear.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0505030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0506210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0507490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0508690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lerp_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0509910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0511240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0512490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0513830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0515000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_add_relu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0516050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ihfft2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0517280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0518430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sin_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0519550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0520700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmin_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0521760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardshrink_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0522810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hsplit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0523900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0525050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/signbit_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0526210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0527370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardtanh_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0528550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_i0_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0529720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mps_convolution_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0530830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/repeat_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0531890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0533070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0534420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0535630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/less_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0536670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/one_hot_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0537740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gcd_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0538830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_c2c_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0542030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0547310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0548470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log1p.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0551060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cauchy_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0560020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rsqrt_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0562990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_trunc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0565320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0571040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expand_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0573000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mps_convolution_transpose_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0578530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0579800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_linear_backward_weights.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0582190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0583560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mul_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0589000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_batch_norm_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0591130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0598750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0599940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0602570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_svd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0607980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_and_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0610160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0612410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0615140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fft2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0619340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/var_mean_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0621590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/normal_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0626520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0628650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0633640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0638320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ifft2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0640140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmax_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0642430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0646380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0649340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0653950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amax_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0656120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0659380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0664010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0666600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_view_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0668680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0671160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0675190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_compute_linear_combination_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0683360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0690020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_fill_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0691240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polygamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0692320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/l1_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0693500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trace_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0697760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0700040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0703010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sort.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0705170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0707380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mish_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0710680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_set_to.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0714260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unflatten_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0718350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adam_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0721120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_dirichlet_grad_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0724580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/einsum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0731070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nan_to_num.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0732220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_zero_point_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0738040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0739130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/t_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0743760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_and_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0744900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0748430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0750540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_addmm_activation_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0754850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lerp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0757900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nansum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0761720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0762940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_c2r_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0768990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0775120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0782790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosine_similarity_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0785660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fix_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0791500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_alias_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0792620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flatten_dense_tensors_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0796790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0798140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0804510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/igamma_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0805580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/poisson_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0811030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/full_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0814640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution_backward_overrideable_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0818430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conj_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0820440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0822400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eig_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0825540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0828620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0833380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0835630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0839320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expm1_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0841880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0845350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0849860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinh_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0851940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0856080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/baddbmm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0858050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0861740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/group_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0867080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0868610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_autocast_to_full_precision_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0874710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0876800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0881040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0882680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0885240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0889910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0894360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0899570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0900890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0903080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_max_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0904400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0909150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0912750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arange.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0916310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_tensor_dynamic.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0918350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardshrink.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0924010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0925690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_round_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0929510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0932600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0934970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_fill.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0938760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ceil_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0941600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0946330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0948380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_diagonal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0954660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nonzero_numpy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0955780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_index_put_impl_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0961370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/istft.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0962440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_erfc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0966090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logit_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0969300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/chain_matmul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0973330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conj_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0975400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0981840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_addcmul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0983040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0989080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_compute_linear_combination.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0991790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0995910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nnz_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.0998780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cummaxmin_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1007440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_rfft2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1246790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_stack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1248360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1249530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cartesian_prod_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1250180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_optional_filled_intlist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1251080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/huber_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1252680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_select_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1253250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1254400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_real_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1255920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1256570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_add_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1257980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1258630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_unpool3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1260130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1260860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_batch_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1262460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1263130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fw_primal_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1264080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isnan_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1265450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/full_like_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1266200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1267590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmax_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1268230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randint_like.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1270730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_neg_view_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1271710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lshift_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1273230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1274270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1275240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/istft_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1276310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unique_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1277810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmin_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1278630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1279800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1280690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rsqrt_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1281810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/searchsorted_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1282900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ones_like_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1284400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1285090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1286980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_backward_data.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1287530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1288270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1289660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1290470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1292020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1292750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsafe_split_with_sizes_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1294310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/geometric_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1295170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1296110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/erf_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1297060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/align_as_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1298530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zero.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1299190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/xlogy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1300650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1301270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mT.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1302680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/uniform_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1303500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_dense_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1304890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/orgqr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1305790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1307150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumprod_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1307900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/range_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1309490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1310140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1311690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1312330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_solve.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1313960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1314950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1316330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1317120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/random_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1318590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1319670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1320540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1321590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1323140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor_divide_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1323760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1325150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_det_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1326210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sin_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1326980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/can_cast.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1328530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumsum_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1329550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atanh_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1330240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1331600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kl_div_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1332470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1333740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1334490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1335890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vector_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1336630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1338120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/igamma_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1338790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_bsc_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1340200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_i0e_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1340890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_floating_point.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1342270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fft2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1342950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/xlogy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1344710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1345380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ceil_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1346280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1347790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_scatter_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1348330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ge_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1349730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_check_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1350520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1351810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/squeeze.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1352570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1354070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1355100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1355790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/permute_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1357270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_distributed_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1357890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_bin_edges.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1359400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1360090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/relu6_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1361460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1365180Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:01.1370120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1372970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_hfft2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1375170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rad2deg_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1379160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1383180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1385200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1390510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1391530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1396790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_solve.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1399860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_zeta_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1403840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_rnn_tanh_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1407760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1410350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1413520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sigmoid_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1415740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lshift.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1419360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/outer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1422110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bilinear_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1424910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rms_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1431010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1431980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1438080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1440390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1450130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1450990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1452080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1456030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/stft_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1457940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1459940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1460650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1462750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1466130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_det.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1468170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cholesky_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1473270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asin_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1481360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/from_file_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1482710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_softmax_backward_data_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1496170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_serialization_subcmul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1496950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1497470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_assert_async_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1498090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nansum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1498750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1502670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1507630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1510650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1512460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1517760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/norm_except_dim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1519310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_irfft2_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1521840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_dual_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1525200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1534090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_solve_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1537030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1543190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log1p_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1545120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_complex_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1546980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/repeat_interleave_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1548480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_complex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1551580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1554100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1556370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_int4pack_mm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1558540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_version.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1563610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1567530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1572860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1573810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1575230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_add_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1583510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tril_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1592650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1593420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clip_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1594280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matmul_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1598230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_solve_ex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1599300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1602090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_mkldnn_transpose_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1605960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_ndtri_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1608530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tensor_split_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1612550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/align_to_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1617080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1619910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution_backward_overrideable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1623030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1627320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/geometric.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1629160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1633610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1635430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/i0_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1639310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardshrink_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1641510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/requires_grad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1648220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1651060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1656780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_entr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1658250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1659300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1663760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_xor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1664460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_xlogy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1671280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acos_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1676370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumprod_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1679610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1680370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lgamma_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1682620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_amp_update_scale_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1686180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expm1_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1690510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1694690Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:01.1696280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1698530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_index_put_impl_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1701890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1707020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1711120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_fp16_weight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1714910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addbmm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1717350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matrix_power_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1720670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1723830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matmul_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1727780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool3d_with_indices_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1741480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_lstm_mps_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1745260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_backward_data_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1746520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1747620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mps_convolution_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1748620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1750050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_coalesce_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1750800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_exp2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1754580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erfcx_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1755290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/min_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1758810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1762110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logit_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1770730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scalar_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1772150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1777360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cholesky_solve_helper_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1778570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1782570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1784790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_legendre_polynomial_p_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1786780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1787380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1796090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1798030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_reciprocal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1801320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1806960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_inference_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1811050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/any_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1815870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/digamma_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1816580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/abs_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1818190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1825970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1826690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mH_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1832760Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:01.1840860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cross.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1841570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/inner.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1842710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nanmedian_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1844350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool2d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1844910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kthvalue_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1847860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conj.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1850930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_group_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1853450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_linear_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1856890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1858980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_log_softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1863400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reshape_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1865900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcmul_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1869100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1873880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_serialization_subcmul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1874650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1880070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1881710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/neg_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1887990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_int4pack_mm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1894200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1895230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardshrink_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1897320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softmax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1900330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1902760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copy_sparse_to_sparse_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1905960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mse_loss_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1908850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1911910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/vander_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1917180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1920950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumprod_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1923610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1926730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1930150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matrix_H_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1932060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_resize_output.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1936910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1939330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1943020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cond.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1945380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_polygamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1951600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1952430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad2d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1962670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1963390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1969060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1969640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/smm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1971540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1973790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_addmm_activation.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1981610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ormqr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1984640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1990010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1990780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1992520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_spdiags_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1999060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/float_power_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.1999750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/imag_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2002200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2006340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_pow_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2011230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2015100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2019750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2020640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/crow_indices_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2022710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ifftn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2025710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2027920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sum_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2033710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp2_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2035710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2040340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_assert_scalar_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2045080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2049640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_as_complex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2051480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2054900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2056940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2062140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2062940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2066220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2069760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_neg_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2072930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2076590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2080020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/prelu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2083530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/take_along_dim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2084840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2091020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_backward_jvp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2094030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2097410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unsafe_index_put_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2099020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2103490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2104980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_rnn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2109410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2111780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_from_bin_tensors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2120460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_det_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2124520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2125310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cdist_forward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2129120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2131550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2136050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2138370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2142470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cdist_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2146560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multi_margin_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2149420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_add_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2150740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/group_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2157460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erfcx_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2158110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_minimum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2164070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2165680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2170890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2173630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_coalesced.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2181220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2185360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_ragged_idx.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2186770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2187790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2189300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_logsumexp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2191820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eigvalsh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2195770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2198480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2201850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dsplit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2207720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2210770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2215480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/igammac.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2216760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_efficientzerotensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2218190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arange_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2222680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2227920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_min_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2232130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2232910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2233760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/celu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2236730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2238250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2242460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2245830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_addcdiv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2248120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2253560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_chunk_cat_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2255820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2261130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2262110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2264410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ifftshift_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2269860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2277440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2278420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2283740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2285450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_fill_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2289720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_max_pool3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2292780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2300540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arange_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2301510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nnpack_spatial_convolution.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2302950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_not_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2306840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_depthwise3d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2310220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2313310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2315440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2316140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2326520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_impl_index_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2332840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2333580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2337990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sub_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2338870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sub_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2341390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_semi_structured_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2345250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unbind_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2349650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2353030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/signbit_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2356220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2358400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_neg_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2361850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/numpy_T_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2367010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2368060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2374380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2377690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2385060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_floating_point_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2386220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2387950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2392600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_strides.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2394660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2395850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2398780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/all_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2403020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2405470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2409550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2412460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_select_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2416610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_flash_attention_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2419590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logit_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2423320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2427230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/chunk_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2428080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foobar_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2432640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan2_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2437360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nextafter_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2438670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amin.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2445580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2448170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_init_dropout_state_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2453250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_csr_prod.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2456060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cholesky_solve_helper_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2457070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frexp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2462080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/alias_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2464080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2466940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gru_cell.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2468690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isclose_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2475110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_gather_stats_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2476140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gather_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2485760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_linear_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2486510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2487990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2492590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sspaddmm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2494680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2496370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_string_default_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2498920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_logcumsumexp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2503390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2506130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2511090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_unique_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2514290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sobol_engine_draw.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2515670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2522940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/feature_dropout_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2525280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagflat_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2526200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_values.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2527970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2537610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_add_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2539900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2542640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2548390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/combinations_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2550560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2558910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2559640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2562820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/swapdims_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2564830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2566300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2570930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2573600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isreal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2574510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addcmul_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2579720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2582840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumulative_trapezoid_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2586210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arctan.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2591980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2595610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_sum.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2596640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2600350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad1d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2604270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arctanh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2607380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/col2im.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2609620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2614230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2617180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2622120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_t.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2625400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2626350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_rnn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2627810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_mm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2631330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2632200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/histc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2636420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_dim_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2640010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2642080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2647050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2648870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2656970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2657610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/geometric_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2667000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logit_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2667910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2669340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mH.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2674130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/count_nonzero_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2674850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmax_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2676190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_buffer_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2684830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2685600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2696690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trace_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2697510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_interface_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2707510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addbmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2708360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_strided_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2709440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2710870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2716800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tensor_split.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2718960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2720450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/var_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2723570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2725580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/feature_alpha_dropout_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2729120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softshrink.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2743520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lgamma.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2744500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2747810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2758380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polar_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2759290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2760770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mean_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2762240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2771150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2774100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pow.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2776650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_zero_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2778140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2791860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_cosh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2801860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2804080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/repeat_interleave_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2804980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2816250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2818240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2818940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_not.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2820490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2821440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2823670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool1d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2825440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_max_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2826510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cross_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2827290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2828580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2829490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unbind_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2830930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frac_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2832080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2832980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2834080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2834970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_inverse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2836550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2841260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ravel_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2844850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_select_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2849840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2850500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2854910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2857330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2861350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2865240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/renorm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2867690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2872390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_mm_reduce_impl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2874370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bernoulli_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2876290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumsum_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2881600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/from_file_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2886020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/layer_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2887470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2890970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2895440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2898120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2902440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2903410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2907510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/allclose_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2909360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_j0.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2912630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tensordot_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2917310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_tanh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2918810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_factor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2923930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/thnn_conv2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2929010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_alias_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2931430Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:01.2932230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_forward_only_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2935740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_lu_with_info.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2940190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bincount_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2941010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2950090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2952670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mm_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2957160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/digamma_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2960900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/positive_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2962950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log10_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2968650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/remainder_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2970170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_not_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2973810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_euclidean_dist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2975910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2982270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_autograd_multiple_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2983170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2985160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_xor_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2995240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.2999010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3001760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resize_as_sparse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3002720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/col2im_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3004140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/clamp_max_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3005010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/einsum_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3006410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/align_tensors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3009330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3012080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mode_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3016690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3019450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rnn_tanh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3026050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3027770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_set_to_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3030640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_householder_product_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3035680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3037690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3042160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_rnn_relu_cell_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3045790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3046660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3050510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3054420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Byte_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3055290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dstack_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3059140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3062490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sign.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3065860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3074470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_distributed.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3075170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3084400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unflatten.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3088770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_segment_reduce_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3090410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3091320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3092780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3096760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3098720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3102050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3111150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3113470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_offsets_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3117680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3119650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gru_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3122950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log2_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3124320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adam_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3131290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/one_hot_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3135830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3140630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/as_strided_scatter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3141600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3143380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3147220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3147930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_zeros_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3156890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3165230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3165990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_saturate_weight_to_fp16_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3167880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tan_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3170420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lu_solve.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3173270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantized_batch_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3175890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sgn_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3179610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3181090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_functorch_fallback_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3188240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fw_primal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3191030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3194640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_reduce_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3195890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_irfftn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3199570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addmm_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3201600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3204890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/blackman_window_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3210570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3212350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3216760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3218870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/transpose.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3224770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_sgd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3227150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amin_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3232600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acosh_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3234730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sum_to_size_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3236150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/var_mean_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3240980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/histc_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3243770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/align_tensors_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3246130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3249870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_size_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3253400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3257430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3258410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantile_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3262150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3269030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ge_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3269830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/triangular_solve_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3277020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3277980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3278810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/amax_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3284400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3288460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3293670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ifftn_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3294410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3298850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pow_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3302380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_bin_edges_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3303680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_scale.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3306240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3349610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3350390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rot90_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3351730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_eig.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3358800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3359750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3360700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3361810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3362740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/stride_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3364370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_is_acceptable.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3364940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_zeta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3366310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3367080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/renorm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3368530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3369260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_coalesced_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3370330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/affine_grid_generator_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3371600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_view_from_buffer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3372450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/true_divide_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3373400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_solve_ex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3374940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3375600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/histogram_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3378650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3379450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3382240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/poisson_nll_loss_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3394330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_dim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3395800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rshift_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3402400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3403040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsafe_split_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3405360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3406080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dense_dim_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3407600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_right_shift_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3408270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_fill_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3412990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_fill_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3416310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3420650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3421930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Byte_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3427660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3430410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/any.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3435250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3436560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3439200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3443300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3449630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3450770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_alias_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3452240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact2d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3457410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_forward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3458660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3465030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vector_norm_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3466350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3471950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/contiguous_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3474050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/le_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3479100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution_overrideable_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3480270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardtanh_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3485180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3487260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3491280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3497320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/angle_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3498490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cross_entropy_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3500550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_gammaincc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3507160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/subtract_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3508460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3511100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/poisson_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3519990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/floor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3522010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/retains_grad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3523960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sspaddmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3530580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3532670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_reduce_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3533960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3535130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scatter_add_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3538580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_copy_from.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3539710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/narrow_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3543100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/flip_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3547470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3551200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_not_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3553860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3555870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mse_loss_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3564830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool3d_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3570400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_linear_backward_input.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3571930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_logsumexp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3575350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_avg_pool1d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3577430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3580330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3581700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_or_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3587980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/l1_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3590140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/geqrf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3594830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log2_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3598280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isposinf_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3601400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_masked_scale_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3605830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3610960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reciprocal_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3613170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lcm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3617060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/frexp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3620650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3622790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3625920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3629520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_xlog1py_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3632590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp2_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3636040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mean_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3639520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3644330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/le_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3648380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3649510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/stack_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3654930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3656540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erfinv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3659560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/var_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3664680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rsqrt_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3667600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convolution_double_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3668800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polar.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3674340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_backward_data_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3675550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_make_dual_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3680700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trunc_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3683800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/meshgrid_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3688220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_transpose2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3690770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3693630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3696300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3701170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3703080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_logit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3706380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/affine_grid_generator_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3708490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/full_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3713370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lgamma_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3717230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isneginf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3721680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3725150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_inv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3726300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3732050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_put_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3735520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/data_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3738440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3743440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3744780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3747790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/div_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3750480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3752910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/permute_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3758330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dense_dim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3761330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/xor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3763450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_unpool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3768470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_inv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3769600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_sparse_matmul.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3774630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3776690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3779360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ge.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3781410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_clamp_min.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3783320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3786530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tanh_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3789090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cos_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3795930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3799730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3804690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/div.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3806820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/msort_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3808960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/refine_names_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3810040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/t_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3816020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isneginf_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3821520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3823780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3827440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3829920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_mask_projection_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3835540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/complex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3837930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3840230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copy_sparse_to_sparse.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3843340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bmm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3845790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_log_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3850100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3855430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logaddexp2_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3860350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3863240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/softplus_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3866950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3869640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trapz_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3872650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3876160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3881430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3882590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arcsin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3887120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_update_stats.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3889090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3897750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosine_embedding_loss.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3900890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_sparse_matmul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3902520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool2d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3907530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3909080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/col_indices_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3912700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lgamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3916720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3917920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pin_memory_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3921380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_addcdiv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3923350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_factor_ex_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3927710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_j1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3930030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/div_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3932470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_copy_from_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3936010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_neg_view_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3940450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/concat_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3943730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3955130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/histogramdd_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3964810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_batch_norm_legit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3965990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3969690Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:01.3971280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/igamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3972750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_offsets_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3977160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3978570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_standard_gamma_grad.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3979870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/zero_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3984900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3986570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3987820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3990820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_clamp_max_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.3998480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pixel_unshuffle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4000510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4005260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4008300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logcumsumexp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4017840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4019160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4020420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_mkldnn_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4021560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4022880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4024130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4025460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4028980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_is_any_true_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4033740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_tensorinv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4034800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/random.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4037190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4043210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exponential.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4045940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gt_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4049260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_det_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4051950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_select_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4053090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/xlogy_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4055620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4057080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cudnn_convolution_transpose_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4065050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4072900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4075050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_sqrt_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4079070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atleast_1d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4081230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isin_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4085570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4087520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_csr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4091170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sinc_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4095820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dist_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4098790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4100050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardtanh_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4105050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4106580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copysign_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4110560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4113880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4117230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4120670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_reshape_alias_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4125930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4128140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/histogramdd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4129240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/aminmax_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4134980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_reduce_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4137510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_get_ragged_idx_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4143020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/leaky_relu_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4144930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lshift_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4147950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_irfft_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4150750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/digamma_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4156980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4158320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4161170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_addmm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4165400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gather_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4170100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_has_same_storage_numel_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4173740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_dimI.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4177150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exponential_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4180840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4185170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lu_unpack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4188990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4190270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_ceil.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4195080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_weight_to_int4pack.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4196420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4201840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/matmul_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4204710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_print_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4206980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_dense_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4210780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4214290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nanmedian_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4216440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantize_per_channel_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4219890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4221540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad3d_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4228330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ctc_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4230180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argwhere.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4235330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_tan.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4237360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/asin_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4239290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_add_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4244190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4248750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_or.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4250860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4256100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4257280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diff_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4260360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fix.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4262400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_standard_gamma_grad_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4266050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_expit_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4273830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rsub.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4276820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4278190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4286610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4287770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/std.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4292730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_is_all_true_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4294870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4296180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4297640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/polygamma_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4301230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4302460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4309460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_optional_floatlist.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4310800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4312990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_forward_only.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4319760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4321800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/aminmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4322930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_log_softmax_backward_data_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4329510Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:01.4330700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tril_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4334780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4337560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4342230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmod_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4343400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randint_like_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4346050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_norm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4349510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4351890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4355190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4362950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_expm1.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4364090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_erfinv_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4369450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_solve_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4372920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_qr_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4376530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pad_sequence.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4379960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardswish.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4386690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/geqrf_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4390570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4392150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4395410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logit_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4403210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ones_like.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4408730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_optional_filled_intlist_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4410420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/split_with_sizes_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4411610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_warn_in_autograd_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4413000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/neg_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4414140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isfinite.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4416490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4422410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_per_channel_axis_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4424490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4427660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_batch_norm_no_update.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4429050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4432450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4436100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4439810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4446620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4450320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_coo_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4452500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_is_zerotensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4455380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/xlogy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4457800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_conj_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4461430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log10_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4469060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_standard_gamma_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4471160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv2d_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4475780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/dequantize_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4477930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4479600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4487500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pin_memory.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4489870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4491110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gcd_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4498290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convolution_mode_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4499420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/convolution_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4500630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosine_similarity_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4506000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_shape_as_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4507240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4510150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isposinf_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4512730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/conv_transpose3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4517270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_from_mask_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4524600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4528280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unflatten_dense_tensors_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4530720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_version_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4532850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pdist_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4534070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4537590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/empty_like_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4539640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/uniform.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4544040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/grid_sampler_3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4548870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/masked_scatter_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4549970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rshift_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4551050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumprod_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4557380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4558560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mse_loss_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4560410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4565480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_from_tensor_list.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4567600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/avg_pool2d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4572020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4573530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_coo_tensor_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4576020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4580340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bmm_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4583910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/detach_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4586010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/set.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4589480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4593470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4596760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4599540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/silu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4603250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4607200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4609920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_add_relu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4613100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4615440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad2d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4622470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randperm_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4625020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4630380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/det.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4631540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4635390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/exp_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4637520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_k0_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4638970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_c2r_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4643610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_add_batch_dim.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4648860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4650230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4654040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_tanh_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4656610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_vander.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4659440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sigmoid_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4663860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mish_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4667330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4669510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_has_same_storage_numel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4674320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4675720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4682480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Double_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4683640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4691510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4692540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4694040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_full_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4699840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isposinf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4701950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/new_empty_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4704440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4708790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4709930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_round.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4712070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4715910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_has_same_storage_numel_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4720310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/quantile_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4726090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4727370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/index_select_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4728600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pad_sequence_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4733390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4736230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_batch_norm_legit_no_training.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4753180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/elu_backward_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4754300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4755540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4764090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4765250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fw_primal_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4766480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sym_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4767590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_dot_product_attention_math.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4773160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4775140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/hardsigmoid_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4776820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4778020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4780220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/row_indices_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4787530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_pinned_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4790120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_backward_elemt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4791300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4798200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4799410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_bessel_j1_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4800560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/t_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4808270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/det_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4810160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_bsr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4811290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/randperm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4816040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expand_copy_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4817360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fft_c2r.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4819440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sqrt_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4823220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosine_similarity.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4826800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_add_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4829750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nonzero_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4834290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4836310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_csc_tensor_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4844020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4845470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4846780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_per_channel_axis_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4853190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logdet_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4859570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/take_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.4862000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_rnn_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5065090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/minimum_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5066370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5067660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/greater_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5068830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5070130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_resize_and_clear_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5071240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/prod_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5072280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tril_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5073440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/miopen_depthwise_convolution.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5074610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_functional_assert_async_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5075850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5077020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_is_any_true_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5078150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5079300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_fused_adam_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5080350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_unpool3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5081460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_pinv_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5082530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cast_Half_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5083750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5085010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/native_batch_norm_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5086200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/unique_dim_consecutive_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5087440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5088610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/col2im_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5089740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/replication_pad2d_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5091040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5092260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/crow_indices_copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5093410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/argsort_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5094500Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cosh_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5095660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5096940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/threshold_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5098120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_semi_structured_tile_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5099490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5100770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_exp_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5102010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5103270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binary_cross_entropy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5104410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_softmax_backward_data_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5105510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/log_softmax_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5106660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_modified_bessel_i0_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5107930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5109130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_sparse_csr_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5110350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5111580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lu_unpack_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5112790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5114040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5115180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_pinned_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5116410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5117870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5119200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cslt_compress_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5120330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/slow_conv_dilated3d_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5121420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_abs.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5122730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5124200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5125450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/histc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5126530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/upsample_trilinear3d.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5127630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_sum_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5128750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5129870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/relu_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5131050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5132250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_matrix_exp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5133400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_index_put_impl_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5134680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5135910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_scaled_mm_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5137050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_weight_norm_interface_backward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5138180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/trapz_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5139250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/block_diag_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5140370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/logical_or_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5141430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/copy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5142650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5144000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5145190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cumsum_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5146300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_entr_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5147410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fft_ifftshift.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5148560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/batch_norm_elemt_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5149640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_assert_async.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5150700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/q_zero_point_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5151860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_zeta_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5152960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_values_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5154000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/is_same_size.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5155030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/atan2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5155670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5160170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/diagonal_scatter_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5160790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5161300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/isnan_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5161860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scaled_dot_product_attention_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5162380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/bitwise_left_shift_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5162870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/l1_loss_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5163480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5164130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5164690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cholesky_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5165210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nuclear_norm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5165720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/lift_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5166330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5166980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5169610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5172650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/and_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5178400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/select.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5180750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5187120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/true_divide.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5191120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5192060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5195400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5197300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nonzero_numpy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5200110Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_sinc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5201800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5205770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_foreach_cos_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5208600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5217430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5218130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_pdist_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5225370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cos_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5226230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5228830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/tan_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5232310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ones_like_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5233870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_conj_physical_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5235600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/nll_loss2d_forward_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5240070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5243400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_to_copy_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5247420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cos_cpu_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5248310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5251420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/mkldnn_convolution_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5256630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_linalg_eigh.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5259860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_print_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5266420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5267970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5270970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/cat_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5274740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/ne_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5276690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/expand_as_native.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5279560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5284650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/complex_mps_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5285310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/linalg_ldl_solve_meta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5289510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/ops 2024-06-26T05:43:01.5293600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ParallelOpenMP.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5300410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/jit_macros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5304870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CPUApplyUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5307570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ThreadLocalState.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5309120Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/ScalarOps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5312010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/NativeFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5318890Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/DynamicLibrary.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5322570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/TensorGeometry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5326090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/TensorIterator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5328560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/NamedTensorUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5333430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Dimname.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5335100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5339920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/autocast_mode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5343950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Parallel.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5350810Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/DimVector.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5352180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/MetaFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5353750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/InferSize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5357290Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/LegacyVmapTransforms.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5358250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/SmallVector.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5363370Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Tensor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5365790Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2024-06-26T05:43:01.5366460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch/BatchedFallback.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2024-06-26T05:43:01.5370860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch/FunctionalizeInterpreter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2024-06-26T05:43:01.5372340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch/ADInterpreters.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2024-06-26T05:43:01.5378330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch/Interpreter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2024-06-26T05:43:01.5383730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch/TensorWrapper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2024-06-26T05:43:01.5384650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch/BatchRulesHelper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2024-06-26T05:43:01.5387660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch/PlumbingHelper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2024-06-26T05:43:01.5391260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch/VmapInterpreter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2024-06-26T05:43:01.5392060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch/Macros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2024-06-26T05:43:01.5396720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch/BatchingMetaprogramming.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2024-06-26T05:43:01.5399730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch/BatchedTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2024-06-26T05:43:01.5403700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch/LegacyVmapTransforms.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2024-06-26T05:43:01.5406170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/functorch/DynamicLayer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/functorch 2024-06-26T05:43:01.5409790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/Generator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5413940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/AccumulateType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5415910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/TensorAccessor.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5419200Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cudnn 2024-06-26T05:43:01.5419720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cudnn/Handles.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cudnn 2024-06-26T05:43:01.5425150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cudnn/Utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cudnn 2024-06-26T05:43:01.5426670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cudnn/Types.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cudnn 2024-06-26T05:43:01.5433660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cudnn/Descriptors.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cudnn 2024-06-26T05:43:01.5435420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cudnn/Exceptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cudnn 2024-06-26T05:43:01.5436060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cudnn/Handle.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cudnn 2024-06-26T05:43:01.5438030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/cudnn/cudnn-wrapper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen/cudnn 2024-06-26T05:43:01.5442460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/ATen/CachedTensorUtils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/ATen 2024-06-26T05:43:01.5444260Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10 2024-06-26T05:43:01.5445450Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5446130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/RefcountedDeleter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5447610Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5448280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/InlineStreamGuard.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5449720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/SizesAndStrides.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5451680Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/InlineDeviceGuard.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5458330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/GPUTrace.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5459490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/COWDeleter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5466450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/LocalDispatchKeySet.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5467360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/alloc_cpu.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5469390Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/VirtualGuardImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5474060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/HermeticPyObjectTLS.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5477420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/PyObjectSlot.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5480160Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/TorchDispatchModeTLS.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5482470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/PyInterpreter.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5487450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/PythonDispatcherTLS.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5488350Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/COW.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5494780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/InlineEvent.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5495770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/DeviceGuardImplInterface.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5502030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/impl/FakeGuardImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core/impl 2024-06-26T05:43:01.5503880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/QEngine.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5506780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/TensorOptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5508970Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/SymFloat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5513310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/GradMode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5514220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/Device.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5518010Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/CPUAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5521790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/DefaultDtype.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5528060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/DefaultTensorOptions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5529320Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/alignment.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5534230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/Event.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5535080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/Backend.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5538770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/CompileTimeFunctionPointer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5541870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/DeviceArray.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5545660Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/PyHandleCache.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5549070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/ConstantSymNodeImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5552330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/WrapDimMinimal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5561860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/QScheme.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5568000Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/SafePyObject.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5579850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/Stream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5580780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/UndefinedTensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5582210Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/Scalar.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5583850Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/AutogradState.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5586880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/SymIntArrayRef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5587730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/thread_pool.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5588580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/CopyBytes.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5589980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/SymNodeImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5590780Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/StreamGuard.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5592310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/DynamicCast.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5592940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/Layout.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5594360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/GeneratorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5597490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/DispatchKeySet.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5600060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/Allocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5601420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/TensorImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5607880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/Contiguity.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5608730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/ScalarType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5616060Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/Storage.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5616900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/DeviceType.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5618190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/DeviceGuard.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5625910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/StorageImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5627410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/SymbolicShapeMeta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5634990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/MemoryFormat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5635980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/SymBool.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5638610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/DispatchKey.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5642590Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/ScalarTypeToTypeMeta.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5643310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/InferenceMode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5647580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/SymInt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5650550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/core/OptionalRef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/core 2024-06-26T05:43:01.5652360Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5652860Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5656400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/order_preserving_flat_hash_map.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5660170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Float8_e4m3fn-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5662800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/quint4x2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5668950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/FbcodeMaps.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5669740Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/signal_handler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5674440Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/safe_numerics.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5675690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Half.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5677940Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/flat_hash_map.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5682470Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/env.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5684960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/llvmMathExtras.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5688200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Synchronized.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5694610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Bitset.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5696690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/typeid.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5701620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Float8_e4m3fnuz-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5703050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/TypeSafeSignMath.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5705700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/intrusive_ptr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5712930Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/string_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5718220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/win32-headers.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5720080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/AlignOf.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5722240Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/static_tracepoint.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5722900Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/ssize.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5725200Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/numa.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5729920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/qint32.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5735690Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/CallOnce.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5737950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Float8_e5m2fnuz.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5740130Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/MaybeOwned.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5742090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Half-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5747140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/TypeTraits.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5773180Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/DeadlockDetection.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5773910Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/FunctionRef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5774420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Backtrace.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5776560Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/ExclusivelyOwned.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5777620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Load.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5779070Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/BFloat16-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5780050Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/static_tracepoint_elfx86.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5781300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/ConstexprCrc.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5782360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/ThreadLocal.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5783750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/IdWrapper.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5786230Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Flags.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5789530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/overloaded.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5794570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Float8_e4m3fnuz.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5800800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/quint8.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5801510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Float8_e5m2-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5804790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/StringUtil.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5807400Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Logging.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5808960Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/MathConstants.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5814270Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Registry.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5815790Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Optional.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5822020Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Float8_e5m2.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5822800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/tempfile.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5826950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/copysign.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5831700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/ArrayRef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5838640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/thread_name.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5840250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/strides.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5840750Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Unicode.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5845550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/TypeCast.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5847530Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/sparse_bitset.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5849150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/OptionalArrayRef.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5851830Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/BFloat16.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5856620Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/TypeList.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5860410Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/TypeIndex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5862760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Array.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5864770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/logging_is_google_glog.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5869030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Metaprogramming.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5872490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/quint2x4.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5877190Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/floating_point_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5879100Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/ParallelGuard.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5882720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/BFloat16-math.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5884880Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/int128.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5888250Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Lazy.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5891300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Deprecated.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5895650Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/irange.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5896420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/SmallBuffer.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5906990Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/ScopeExit.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5909090Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Unroll.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5916550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/LeftRight.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5918300Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/bit_cast.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5919140Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/qint8.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5920550Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/complex_math.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5922080Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/logging_is_not_google_glog.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5925340Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Exception.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5926820Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/UniqueVoidPtr.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5928360Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/ThreadLocalDebugInfo.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5931510Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Float8_e4m3fn.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5933840Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/AbortHandler.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5934720Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/DimVector.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5935760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/accumulate.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5936730Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/C++17.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5939260Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/strong_type.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5940570Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/ApproximateClock.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5941540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/SmallVector.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5945150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Float8_e5m2fnuz-inl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5949480Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/hash.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5953280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/python_stub.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5956760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/complex.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5957980Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/bits.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5961700Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/string_view.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5968030Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/Float8_fnuz_cvt.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5968760Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/complex_utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5974600Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/ExclusivelyOwnedTensorTraits.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5975450Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/util/generic_math.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/util 2024-06-26T05:43:01.5978680Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2024-06-26T05:43:01.5979400Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda/impl 2024-06-26T05:43:01.5980150Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/impl/CUDATest.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda/impl 2024-06-26T05:43:01.5984430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/impl/CUDAGuardImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda/impl 2024-06-26T05:43:01.5985380Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/CUDADeviceAssertion.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2024-06-26T05:43:01.5990670Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/driver_api.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2024-06-26T05:43:01.5992460Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/CUDAMathCompat.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2024-06-26T05:43:01.5999330Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/CUDAAlgorithm.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2024-06-26T05:43:01.6000280Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/CUDAStream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2024-06-26T05:43:01.6002640Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/CUDAGuard.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2024-06-26T05:43:01.6006170Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/CUDAMiscFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2024-06-26T05:43:01.6009430Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/CUDAGraphsC10Utils.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2024-06-26T05:43:01.6012800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/CUDAMacros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2024-06-26T05:43:01.6016220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/CUDAAllocatorConfig.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2024-06-26T05:43:01.6020040Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/CUDAFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2024-06-26T05:43:01.6023870Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/CUDAException.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2024-06-26T05:43:01.6026490Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/CUDACachingAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2024-06-26T05:43:01.6028520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/cuda/CUDADeviceAssertionHost.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/cuda 2024-06-26T05:43:01.6033070Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu 2024-06-26T05:43:01.6033740Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu/impl 2024-06-26T05:43:01.6034540Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/xpu/impl/XPUGuardImpl.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu/impl 2024-06-26T05:43:01.6203420Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/xpu/XPUStream.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu 2024-06-26T05:43:01.6204310Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/xpu/XPUDeviceProp.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu 2024-06-26T05:43:01.6205800Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/xpu/XPUCachingAllocator.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu 2024-06-26T05:43:01.6206520Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/xpu/XPUMacros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu 2024-06-26T05:43:01.6207920Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/xpu/XPUException.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu 2024-06-26T05:43:01.6208630Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/xpu/XPUFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/xpu 2024-06-26T05:43:01.6210050Z creating build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/macros 2024-06-26T05:43:01.6210610Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/macros/cmake_macros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/macros 2024-06-26T05:43:01.6211950Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/macros/Export.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/macros 2024-06-26T05:43:01.6212710Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/c10/macros/Macros.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include/c10/macros 2024-06-26T05:43:01.6214220Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/psimd.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2024-06-26T05:43:01.6215580Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/experiments-config.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2024-06-26T05:43:01.6216770Z copying build/lib.macosx-11.1-arm64-3.9/torch/include/fxdiv.h -> build/bdist.macosx-11.1-arm64/wheel/torch/include 2024-06-26T05:43:01.6218710Z copying build/lib.macosx-11.1-arm64-3.9/torch/torch_version.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.6220090Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends 2024-06-26T05:43:01.6220730Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/opt_einsum 2024-06-26T05:43:01.6221470Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/opt_einsum/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/opt_einsum 2024-06-26T05:43:01.6223010Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/mha 2024-06-26T05:43:01.6223540Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/mha/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/mha 2024-06-26T05:43:01.6224690Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/nnpack 2024-06-26T05:43:01.6225250Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/nnpack/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/nnpack 2024-06-26T05:43:01.6226350Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/mps 2024-06-26T05:43:01.6227040Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/mps/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/mps 2024-06-26T05:43:01.6228490Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/cpu 2024-06-26T05:43:01.6229000Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/cpu/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/cpu 2024-06-26T05:43:01.6230330Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/_coreml 2024-06-26T05:43:01.6230840Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/_coreml/preprocess.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/_coreml 2024-06-26T05:43:01.6232230Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/_coreml/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/_coreml 2024-06-26T05:43:01.6233000Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/cuda 2024-06-26T05:43:01.6233560Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/cuda/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/cuda 2024-06-26T05:43:01.6235620Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/quantized 2024-06-26T05:43:01.6236120Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/quantized/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/quantized 2024-06-26T05:43:01.6236900Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends 2024-06-26T05:43:01.6238870Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/mkl 2024-06-26T05:43:01.6239380Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/mkl/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/mkl 2024-06-26T05:43:01.6240720Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/xnnpack 2024-06-26T05:43:01.6241410Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/xnnpack/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/xnnpack 2024-06-26T05:43:01.6242860Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/mkldnn 2024-06-26T05:43:01.6243360Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/mkldnn/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/mkldnn 2024-06-26T05:43:01.6244760Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/xeon 2024-06-26T05:43:01.6245240Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/xeon/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/xeon 2024-06-26T05:43:01.6246320Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/xeon/run_cpu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/xeon 2024-06-26T05:43:01.6247740Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/_nnapi 2024-06-26T05:43:01.6248350Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/_nnapi/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/_nnapi 2024-06-26T05:43:01.6249220Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/_nnapi/serializer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/_nnapi 2024-06-26T05:43:01.6251000Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/_nnapi/prepare.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/_nnapi 2024-06-26T05:43:01.6252140Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/openmp 2024-06-26T05:43:01.6252710Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/openmp/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/openmp 2024-06-26T05:43:01.6254290Z creating build/bdist.macosx-11.1-arm64/wheel/torch/backends/cudnn 2024-06-26T05:43:01.6254760Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/cudnn/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/cudnn 2024-06-26T05:43:01.6256220Z copying build/lib.macosx-11.1-arm64-3.9/torch/backends/cudnn/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/backends/cudnn 2024-06-26T05:43:01.6257210Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_decomp 2024-06-26T05:43:01.6257770Z copying build/lib.macosx-11.1-arm64-3.9/torch/_decomp/decompositions_for_jvp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_decomp 2024-06-26T05:43:01.6259280Z copying build/lib.macosx-11.1-arm64-3.9/torch/_decomp/decompositions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_decomp 2024-06-26T05:43:01.6261660Z copying build/lib.macosx-11.1-arm64-3.9/torch/_decomp/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_decomp 2024-06-26T05:43:01.6263160Z copying build/lib.macosx-11.1-arm64-3.9/torch/_decomp/decompositions_for_rng.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_decomp 2024-06-26T05:43:01.6264000Z copying build/lib.macosx-11.1-arm64-3.9/torch/_VF.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.6265500Z creating build/bdist.macosx-11.1-arm64/wheel/torch/xpu 2024-06-26T05:43:01.6265960Z copying build/lib.macosx-11.1-arm64-3.9/torch/xpu/streams.py -> build/bdist.macosx-11.1-arm64/wheel/torch/xpu 2024-06-26T05:43:01.6267410Z copying build/lib.macosx-11.1-arm64-3.9/torch/xpu/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/xpu 2024-06-26T05:43:01.6268890Z copying build/lib.macosx-11.1-arm64-3.9/torch/xpu/_gpu_trace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/xpu 2024-06-26T05:43:01.6269660Z copying build/lib.macosx-11.1-arm64-3.9/torch/xpu/random.py -> build/bdist.macosx-11.1-arm64/wheel/torch/xpu 2024-06-26T05:43:01.6270990Z copying build/lib.macosx-11.1-arm64-3.9/torch/xpu/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/xpu 2024-06-26T05:43:01.6271790Z copying build/lib.macosx-11.1-arm64-3.9/torch/_streambase.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.6273310Z creating build/bdist.macosx-11.1-arm64/wheel/torch/masked 2024-06-26T05:43:01.6279310Z copying build/lib.macosx-11.1-arm64-3.9/torch/masked/_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked 2024-06-26T05:43:01.6279920Z copying build/lib.macosx-11.1-arm64-3.9/torch/masked/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked 2024-06-26T05:43:01.6280330Z copying build/lib.macosx-11.1-arm64-3.9/torch/masked/_docs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked 2024-06-26T05:43:01.6280560Z creating build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2024-06-26T05:43:01.6281100Z copying build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor/binary.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2024-06-26T05:43:01.6281640Z copying build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor/creation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2024-06-26T05:43:01.6282160Z copying build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor/_ops_refs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2024-06-26T05:43:01.6282830Z copying build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2024-06-26T05:43:01.6284060Z copying build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor/core.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2024-06-26T05:43:01.6285670Z copying build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor/unary.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2024-06-26T05:43:01.6286570Z copying build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor/reductions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2024-06-26T05:43:01.6287740Z copying build/lib.macosx-11.1-arm64-3.9/torch/masked/maskedtensor/passthrough.py -> build/bdist.macosx-11.1-arm64/wheel/torch/masked/maskedtensor 2024-06-26T05:43:01.6288940Z copying build/lib.macosx-11.1-arm64-3.9/torch/_tensor_docs.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.6290920Z creating build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6291510Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/lr_scheduler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6293100Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/rmsprop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6294410Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/sparse_adam.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6295250Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/rprop.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6296590Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/sgd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6297840Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6298530Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/adamax.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6299980Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/adagrad.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6301550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/optim/_multi_tensor 2024-06-26T05:43:01.6302050Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/_multi_tensor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim/_multi_tensor 2024-06-26T05:43:01.6303300Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/adamw.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6304180Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/swa_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6305710Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/lbfgs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6306960Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/radam.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6308210Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/adam.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6309650Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/optimizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6310340Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/nadam.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6311640Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/asgd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6313350Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/_functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6314690Z copying build/lib.macosx-11.1-arm64-3.9/torch/optim/adadelta.py -> build/bdist.macosx-11.1-arm64/wheel/torch/optim 2024-06-26T05:43:01.6316060Z copying build/lib.macosx-11.1-arm64-3.9/torch/_weights_only_unpickler.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.6317480Z copying build/lib.macosx-11.1-arm64-3.9/torch/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.6319430Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6319960Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/cudagraph_trees.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6321840Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/select_algorithm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6323130Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/ops_handler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6324330Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/metrics.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6326000Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codecache.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6327670Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/optimize_indexing.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6328510Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6329840Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/cpp_builder.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6331140Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6332040Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/comms.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6333870Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/mkldnn_lowerings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6335180Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/async_compile.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6336530Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/pattern_matcher.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6338170Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/quantized_lowerings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6338910Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6340620Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/lowering.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6343950Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2024-06-26T05:43:01.6344630Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/runtime/triton_heuristics.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2024-06-26T05:43:01.6346120Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/runtime/runtime_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2024-06-26T05:43:01.6347640Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/runtime/coordinate_descent_tuner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2024-06-26T05:43:01.6351220Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/runtime/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2024-06-26T05:43:01.6351850Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/runtime/compile_tasks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2024-06-26T05:43:01.6353460Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/runtime/triton_helpers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2024-06-26T05:43:01.6357210Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/runtime/hints.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/runtime 2024-06-26T05:43:01.6361260Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/jagged_lowerings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6363590Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/test_operators.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6366560Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6370270Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/compile_fx.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6374610Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/cudagraph_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6376110Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/sizevars.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6380270Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/ir.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6385300Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/index_propagation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6390130Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/constant_folding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6392140Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6392640Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/wrapper.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6396060Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/triton_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6399750Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/triton.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6401370Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/aoti_hipify_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6402230Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/simd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6404200Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2024-06-26T05:43:01.6404760Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda/cutlass_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2024-06-26T05:43:01.6408370Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2024-06-26T05:43:01.6410480Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda/cuda_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2024-06-26T05:43:01.6411250Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda/gemm_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2024-06-26T05:43:01.6412830Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2024-06-26T05:43:01.6414060Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2024-06-26T05:43:01.6414870Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:01.6417000Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2024-06-26T05:43:01.6418450Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda/cutlass_epilogue_gen.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2024-06-26T05:43:01.6421100Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda/device_op_overrides.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2024-06-26T05:43:01.6421960Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda/cuda_env.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2024-06-26T05:43:01.6423400Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda/cuda_kernel.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/cuda 2024-06-26T05:43:01.6425260Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/xpu 2024-06-26T05:43:01.6425830Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/xpu/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/xpu 2024-06-26T05:43:01.6426780Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/xpu/device_op_overrides.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/xpu 2024-06-26T05:43:01.6428150Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/memory_planning.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6429080Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6429890Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cpp_micro_gemm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6431430Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cpp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6433300Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cpp_wrapper_cpu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6437020Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/aoti_runtime 2024-06-26T05:43:01.6437640Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/aoti_runtime/implementation.cpp -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/aoti_runtime 2024-06-26T05:43:01.6438690Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/aoti_runtime/interface.cpp -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen/aoti_runtime 2024-06-26T05:43:01.6442640Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6445430Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cpp_template_kernel.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6451480Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cpp_gemm_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6453290Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cpp_prefix.h -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6459300Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/triton_split_scan.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6461560Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cpp_template.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6464190Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/codegen_device_driver.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6468430Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cuda_combined_scheduling.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6471660Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/multi_kernel.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6473140Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/triton_foreach.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6474060Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cpp_wrapper_cuda.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6475490Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/codegen/cpp_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/codegen 2024-06-26T05:43:01.6477050Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/inductor_prims.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6477820Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/virtualized.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6479450Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/test_case.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6480040Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/autotune_process.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6481730Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/compile_worker 2024-06-26T05:43:01.6482350Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/compile_worker/watchdog.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/compile_worker 2024-06-26T05:43:01.6483290Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/compile_worker/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/compile_worker 2024-06-26T05:43:01.6484410Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/compile_worker/subproc_pool.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/compile_worker 2024-06-26T05:43:01.6485310Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/compile_worker/__main__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/compile_worker 2024-06-26T05:43:01.6486550Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/exc.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6489530Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6492180Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/debug.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6493680Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/decomposition.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6495850Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6496360Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/post_grad.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6497940Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/replace_random.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6499840Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/ddp_fusion.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6501320Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/numeric_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6504420Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/decompose_mem_bound_mm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6505290Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/reinplace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6506780Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/quantization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6508280Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/split_cat.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6514280Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/dedupe_symint_uses.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6518340Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/efficient_conv_bn_eval.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6520040Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6520570Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/group_batch_fusion.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6522120Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/pre_grad.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6523090Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/binary_folding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6524560Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/fuse_attention.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6526060Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/micro_pipeline_tp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6527570Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6528280Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6529970Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6531510Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6533050Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6533930Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6535510Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6536320Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6538340Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6539150Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6541020Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6541720Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6543440Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6546080Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6549610Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6558270Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6559240Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6559950Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6561780Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6565800Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6568530Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6572730Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6576720Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6580870Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2024-06-26T05:43:01.6582330Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/joint_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6592610Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/mkldnn_fusion.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6593910Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/pad_mm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6595500Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/freezing_patterns.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6596450Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_passes/misc_patterns.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/fx_passes 2024-06-26T05:43:01.6597770Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/fx_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6599760Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/scheduler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6601410Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/mkldnn_ir.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6602770Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/wrapper_benchmark.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6606990Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/remote_cache.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6610570Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/comm_analysis.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6627080Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/bounds.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6629860Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/freezing.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6630650Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/dependencies.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6632550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2024-06-26T05:43:01.6633130Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel/unpack_mixed_mm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2024-06-26T05:43:01.6634320Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel/mm_common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2024-06-26T05:43:01.6635780Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2024-06-26T05:43:01.6636900Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel/mm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2024-06-26T05:43:01.6638500Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel/bmm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2024-06-26T05:43:01.6639260Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2024-06-26T05:43:01.6640960Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel/mm_plus_mm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2024-06-26T05:43:01.6642310Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/kernel/flex_attention.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor/kernel 2024-06-26T05:43:01.6643640Z copying build/lib.macosx-11.1-arm64-3.9/torch/_inductor/subgraph_lowering.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_inductor 2024-06-26T05:43:01.6645560Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6645980Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_pytree.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6647920Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark 2024-06-26T05:43:01.6648400Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark 2024-06-26T05:43:01.6651690Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/op_fuzzers 2024-06-26T05:43:01.6652290Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/op_fuzzers/binary.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/op_fuzzers 2024-06-26T05:43:01.6654000Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/op_fuzzers/sparse_binary.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/op_fuzzers 2024-06-26T05:43:01.6659560Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/op_fuzzers/sparse_unary.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/op_fuzzers 2024-06-26T05:43:01.6661870Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/op_fuzzers/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/op_fuzzers 2024-06-26T05:43:01.6662470Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/op_fuzzers/spectral.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/op_fuzzers 2024-06-26T05:43:01.6663890Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/op_fuzzers/unary.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/op_fuzzers 2024-06-26T05:43:01.6665000Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2024-06-26T05:43:01.6665540Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/timer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2024-06-26T05:43:01.6670730Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2024-06-26T05:43:01.6671420Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/sparse_fuzzer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2024-06-26T05:43:01.6672890Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2024-06-26T05:43:01.6674200Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/compile.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2024-06-26T05:43:01.6675690Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/fuzzer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2024-06-26T05:43:01.6676580Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/timeit_template.cpp -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2024-06-26T05:43:01.6678470Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2024-06-26T05:43:01.6679250Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2024-06-26T05:43:01.6680310Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2024-06-26T05:43:01.6684060Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2024-06-26T05:43:01.6684850Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/valgrind_wrapper/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2024-06-26T05:43:01.6685680Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2024-06-26T05:43:01.6688980Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2024-06-26T05:43:01.6693880Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/cpp_jit.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2024-06-26T05:43:01.6696500Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/compare.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2024-06-26T05:43:01.6702620Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/utils/_stubs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/utils 2024-06-26T05:43:01.6703930Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/examples 2024-06-26T05:43:01.6704600Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/examples/op_benchmark.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/examples 2024-06-26T05:43:01.6705950Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/examples/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/examples 2024-06-26T05:43:01.6706780Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/examples/simple_timeit.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/examples 2024-06-26T05:43:01.6712250Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/examples/fuzzer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/examples 2024-06-26T05:43:01.6715900Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/examples/blas_compare_setup.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/examples 2024-06-26T05:43:01.6716810Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/examples/spectral_ops_fuzz_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/examples 2024-06-26T05:43:01.6717760Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/benchmark/examples/compare.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/benchmark/examples 2024-06-26T05:43:01.6719030Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_foreach_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6721720Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6723740Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_traceback.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6732340Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_cpp_extension_versioner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6733390Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_mode_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6734760Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/checkpoint.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6736290Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/show_pickle.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6739640Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/deterministic.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6741730Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/file_baton.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6743860Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_freeze.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6745150Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/backend_registration.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6746500Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/module_tracker.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6750020Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/model_zoo.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6754450Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_zip.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6756760Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/collect_env.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6763100Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/throughput_benchmark.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6764850Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/dlpack.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6767600Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2024-06-26T05:43:01.6768150Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy/functions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2024-06-26T05:43:01.6774140Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2024-06-26T05:43:01.6774810Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy/symbol.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2024-06-26T05:43:01.6776810Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy/numbers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2024-06-26T05:43:01.6780160Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy/reference.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2024-06-26T05:43:01.6782430Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy/singleton_int.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2024-06-26T05:43:01.6785350Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy/value_ranges.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2024-06-26T05:43:01.6791160Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy/solve.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2024-06-26T05:43:01.6930700Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_sympy/interp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_sympy 2024-06-26T05:43:01.6932140Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/backcompat 2024-06-26T05:43:01.6932630Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/backcompat/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/backcompat 2024-06-26T05:43:01.6933880Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_cxx_pytree.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6935180Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6936540Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_import_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6937660Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/hipify 2024-06-26T05:43:01.6938180Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/hipify/version.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/hipify 2024-06-26T05:43:01.6939210Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/hipify/cuda_to_hip_mappings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/hipify 2024-06-26T05:43:01.6942130Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/hipify/constants.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/hipify 2024-06-26T05:43:01.6942930Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/hipify/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/hipify 2024-06-26T05:43:01.6944360Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/hipify/hipify_python.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/hipify 2024-06-26T05:43:01.6945650Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/bundled_inputs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6947260Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/bottleneck 2024-06-26T05:43:01.6947800Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/bottleneck/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/bottleneck 2024-06-26T05:43:01.6949160Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/bottleneck/__main__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/bottleneck 2024-06-26T05:43:01.6949840Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/mkldnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6951480Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/viz 2024-06-26T05:43:01.6951960Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/viz/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/viz 2024-06-26T05:43:01.6953240Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/viz/_cycles.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/viz 2024-06-26T05:43:01.6954600Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/cpp_backtrace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6955410Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_contextlib.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6956970Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/jit 2024-06-26T05:43:01.6957400Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/jit/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/jit 2024-06-26T05:43:01.6958210Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/jit/log_extract.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/jit 2024-06-26T05:43:01.6959510Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_python_dispatch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6960990Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2024-06-26T05:43:01.6961570Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard/_pytorch_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2024-06-26T05:43:01.6963480Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard/_proto_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2024-06-26T05:43:01.6964230Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2024-06-26T05:43:01.6965470Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard/_embedding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2024-06-26T05:43:01.6966330Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard/_onnx_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2024-06-26T05:43:01.6967420Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard/summary.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2024-06-26T05:43:01.6969030Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard/_convert_np.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2024-06-26T05:43:01.6969790Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard/writer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2024-06-26T05:43:01.6971400Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/tensorboard/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/tensorboard 2024-06-26T05:43:01.6972070Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_exposed_in.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6973400Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_config_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6974870Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_device.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6975650Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/flop_counter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6977280Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_typing_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6977940Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_stats.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6979520Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/model_dump 2024-06-26T05:43:01.6980000Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/model_dump/code.js -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/model_dump 2024-06-26T05:43:01.6981320Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/model_dump/preact.mjs -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/model_dump 2024-06-26T05:43:01.6982670Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/model_dump/skeleton.html -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/model_dump 2024-06-26T05:43:01.6983570Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/model_dump/htm.mjs -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/model_dump 2024-06-26T05:43:01.6984530Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/model_dump/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/model_dump 2024-06-26T05:43:01.6985960Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/model_dump/__main__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/model_dump 2024-06-26T05:43:01.6986570Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/cpp_extension.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6988540Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_get_clean_triton.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6989370Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_triton.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6990650Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_content_store.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.6992080Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2024-06-26T05:43:01.6992770Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/_utils 2024-06-26T05:43:01.6993510Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/_utils/fetch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/_utils 2024-06-26T05:43:01.6994980Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/_utils/worker.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/_utils 2024-06-26T05:43:01.6996450Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/_utils/collate.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/_utils 2024-06-26T05:43:01.6998000Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/_utils/pin_memory.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/_utils 2024-06-26T05:43:01.6998870Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/_utils/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/_utils 2024-06-26T05:43:01.7000070Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/_utils/signal_handling.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/_utils 2024-06-26T05:43:01.7001290Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/graph_settings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2024-06-26T05:43:01.7002320Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2024-06-26T05:43:01.7007990Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2024-06-26T05:43:01.7008620Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/dataset.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2024-06-26T05:43:01.7009130Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/distributed.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2024-06-26T05:43:01.7009640Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/backward_compatibility.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2024-06-26T05:43:01.7010090Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/dataloader.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2024-06-26T05:43:01.7010510Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/sampler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data 2024-06-26T05:43:01.7011650Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes 2024-06-26T05:43:01.7012230Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/_decorator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes 2024-06-26T05:43:01.7013830Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/dataframe 2024-06-26T05:43:01.7014460Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/dataframe/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/dataframe 2024-06-26T05:43:01.7015610Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/dataframe/datapipes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/dataframe 2024-06-26T05:43:01.7016680Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/dataframe/dataframe_wrapper.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/dataframe 2024-06-26T05:43:01.7017730Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/dataframe/structures.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/dataframe 2024-06-26T05:43:01.7018810Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/dataframe/dataframes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/dataframe 2024-06-26T05:43:01.7020740Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2024-06-26T05:43:01.7021360Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter/fileopener.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2024-06-26T05:43:01.7022260Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter/callable.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2024-06-26T05:43:01.7023740Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter/sharding.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2024-06-26T05:43:01.7024530Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter/grouping.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2024-06-26T05:43:01.7025960Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2024-06-26T05:43:01.7026740Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter/selecting.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2024-06-26T05:43:01.7027800Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter/combining.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2024-06-26T05:43:01.7029460Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter/filelister.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2024-06-26T05:43:01.7030260Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2024-06-26T05:43:01.7031310Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter/combinatorics.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2024-06-26T05:43:01.7032800Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter/streamreader.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2024-06-26T05:43:01.7033530Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/iter/routeddecoder.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/iter 2024-06-26T05:43:01.7034500Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/_typing.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes 2024-06-26T05:43:01.7042030Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/_hook_iterator.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes 2024-06-26T05:43:01.7047700Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/datapipe.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes 2024-06-26T05:43:01.7052360Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes 2024-06-26T05:43:01.7055550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/utils 2024-06-26T05:43:01.7056200Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/utils/decoder.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/utils 2024-06-26T05:43:01.7057670Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/utils/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/utils 2024-06-26T05:43:01.7058400Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/utils/common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/utils 2024-06-26T05:43:01.7060180Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/utils/snapshot.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/utils 2024-06-26T05:43:01.7060880Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/datapipe.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes 2024-06-26T05:43:01.7062540Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/map 2024-06-26T05:43:01.7063130Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/map/callable.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/map 2024-06-26T05:43:01.7064170Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/map/grouping.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/map 2024-06-26T05:43:01.7065350Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/map/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/map 2024-06-26T05:43:01.7066310Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/map/combining.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/map 2024-06-26T05:43:01.7067730Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/map/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/map 2024-06-26T05:43:01.7068380Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/map/combinatorics.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes/map 2024-06-26T05:43:01.7069800Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/data/datapipes/gen_pyi.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/data/datapipes 2024-06-26T05:43:01.7071060Z creating build/bdist.macosx-11.1-arm64/wheel/torch/utils/_strobelight 2024-06-26T05:43:01.7071650Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_strobelight/cli_function_profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_strobelight 2024-06-26T05:43:01.7073050Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/_strobelight/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils/_strobelight 2024-06-26T05:43:01.7073490Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/weak.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.7075020Z copying build/lib.macosx-11.1-arm64-3.9/torch/utils/mobile_optimizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/utils 2024-06-26T05:43:01.7079340Z copying build/lib.macosx-11.1-arm64-3.9/torch/overrides.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.7081050Z copying build/lib.macosx-11.1-arm64-3.9/torch/_namedtensor_internals.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.7088560Z copying build/lib.macosx-11.1-arm64-3.9/torch/return_types.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.7092210Z copying build/lib.macosx-11.1-arm64-3.9/torch/types.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.7096750Z copying build/lib.macosx-11.1-arm64-3.9/torch/_linalg_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.7098270Z copying build/lib.macosx-11.1-arm64-3.9/torch/__config__.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.7100010Z copying build/lib.macosx-11.1-arm64-3.9/torch/_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.7104010Z creating build/bdist.macosx-11.1-arm64/wheel/torch/contrib 2024-06-26T05:43:01.7104510Z copying build/lib.macosx-11.1-arm64-3.9/torch/contrib/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/contrib 2024-06-26T05:43:01.7105750Z copying build/lib.macosx-11.1-arm64-3.9/torch/contrib/_tensorboard_vis.py -> build/bdist.macosx-11.1-arm64/wheel/torch/contrib 2024-06-26T05:43:01.7106500Z copying build/lib.macosx-11.1-arm64-3.9/torch/random.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.7108450Z copying build/lib.macosx-11.1-arm64-3.9/torch/hub.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.7112080Z creating build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7112550Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/observer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7115320Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/fuse_modules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7117710Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/quantization_mappings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7121610Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/quantize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7125510Z creating build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2024-06-26T05:43:01.7126020Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx/graph_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2024-06-26T05:43:01.7129590Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx/fusion_patterns.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2024-06-26T05:43:01.7134130Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx/_equalize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2024-06-26T05:43:01.7135730Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx/quantization_types.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2024-06-26T05:43:01.7139450Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx/convert.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2024-06-26T05:43:01.7143710Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2024-06-26T05:43:01.7147750Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2024-06-26T05:43:01.7151920Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx/pattern_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2024-06-26T05:43:01.7155080Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx/fuse.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2024-06-26T05:43:01.7159090Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx/match_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2024-06-26T05:43:01.7161920Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx/prepare.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2024-06-26T05:43:01.7165640Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/fx/quantization_patterns.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization/fx 2024-06-26T05:43:01.7169030Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/_numeric_suite.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7175290Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/fake_quantize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7177220Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/qconfig.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7178040Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7180270Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/_quantized_conversions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7181750Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/stubs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7184790Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7186350Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/fuser_method_mappings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7193740Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/quantize_jit.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7195610Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/quant_type.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7196310Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/quantize_fx.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7197750Z copying build/lib.macosx-11.1-arm64-3.9/torch/quantization/_numeric_suite_fx.py -> build/bdist.macosx-11.1-arm64/wheel/torch/quantization 2024-06-26T05:43:01.7202610Z copying build/lib.macosx-11.1-arm64-3.9/torch/_tensor_str.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.7207330Z copying build/lib.macosx-11.1-arm64-3.9/torch/_sources.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.7208550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/special 2024-06-26T05:43:01.7209030Z copying build/lib.macosx-11.1-arm64-3.9/torch/special/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/special 2024-06-26T05:43:01.7210700Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7211160Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_profiler.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7212520Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_onnx.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7213670Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_distributed_c10d.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7216350Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_autograd.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7218810Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_monitor.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7223220Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_itt.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7226660Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_lazy.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7229810Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/__init__.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7234820Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_nvtx.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7239880Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_cpu.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7241330Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_nn.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7246690Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_lazy_ts_backend.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7249740Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_functorch.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7253730Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_VariableFunctions.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7269430Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_distributed_rpc.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7271670Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_verbose.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7277850Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_aoti.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7281960Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_functions.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7286700Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_distributed_rpc_testing.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7287250Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_cudnn.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7289210Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C/_distributed_autograd.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch/_C 2024-06-26T05:43:01.7292950Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing 2024-06-26T05:43:01.7294150Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7294740Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/generated 2024-06-26T05:43:01.7295520Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/generated/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/generated 2024-06-26T05:43:01.7296530Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/generated/annotated_fn_args.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/generated 2024-06-26T05:43:01.7302420Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo 2024-06-26T05:43:01.7302970Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo 2024-06-26T05:43:01.7304700Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/core.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo 2024-06-26T05:43:01.7310280Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo 2024-06-26T05:43:01.7314560Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/refs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo 2024-06-26T05:43:01.7317280Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2024-06-26T05:43:01.7317930Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/definitions/signal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2024-06-26T05:43:01.7322650Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/definitions/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2024-06-26T05:43:01.7325210Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/definitions/_masked.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2024-06-26T05:43:01.7330090Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/definitions/linalg.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2024-06-26T05:43:01.7332220Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/definitions/sparse.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2024-06-26T05:43:01.7338910Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/definitions/fft.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2024-06-26T05:43:01.7339860Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/opinfo/definitions/special.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/opinfo/definitions 2024-06-26T05:43:01.7347310Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_dtype.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7348690Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_pruning.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7350290Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/test_module 2024-06-26T05:43:01.7351010Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/test_module/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/test_module 2024-06-26T05:43:01.7351810Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/test_module/future_div.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/test_module 2024-06-26T05:43:01.7353270Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/test_module/no_future_div.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/test_module 2024-06-26T05:43:01.7355980Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/hop_db.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7359180Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/triton_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7362750Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/static_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7365160Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_nn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7370180Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/custom_op_db.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7373740Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/autocast_test_lists.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7378470Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_fsdp.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7380760Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/two_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7381590Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/torchbind_impls.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7384050Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2024-06-26T05:43:01.7384730Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_tensor 2024-06-26T05:43:01.7385560Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/_tensor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_tensor 2024-06-26T05:43:01.7386580Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/_tensor/common_dtensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_tensor 2024-06-26T05:43:01.7388120Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2024-06-26T05:43:01.7391070Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/nn 2024-06-26T05:43:01.7391740Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/nn/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/nn 2024-06-26T05:43:01.7392870Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/nn/api 2024-06-26T05:43:01.7397730Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/nn/api/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/nn/api 2024-06-26T05:43:01.7398560Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/nn/api/remote_module_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/nn/api 2024-06-26T05:43:01.7399150Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/fake_pg.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2024-06-26T05:43:01.7399850Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2024-06-26T05:43:01.7401250Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_shard 2024-06-26T05:43:01.7401910Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/_shard/test_common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_shard 2024-06-26T05:43:01.7403180Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2024-06-26T05:43:01.7403920Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2024-06-26T05:43:01.7404810Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:01.7410650Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:01.7411740Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/_shard/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/_shard 2024-06-26T05:43:01.7412590Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/checkpoint_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2024-06-26T05:43:01.7414210Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/distributed_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2024-06-26T05:43:01.7415550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2024-06-26T05:43:01.7416300Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2024-06-26T05:43:01.7417340Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2024-06-26T05:43:01.7419060Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2024-06-26T05:43:01.7419740Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/dist_autograd_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2024-06-26T05:43:01.7421570Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2024-06-26T05:43:01.7422570Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2024-06-26T05:43:01.7426040Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2024-06-26T05:43:01.7426700Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/jit/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2024-06-26T05:43:01.7427520Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2024-06-26T05:43:01.7429970Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/jit/rpc_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2024-06-26T05:43:01.7432150Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2024-06-26T05:43:01.7435110Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2024-06-26T05:43:01.7435810Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/examples/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2024-06-26T05:43:01.7436720Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2024-06-26T05:43:01.7438810Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2024-06-26T05:43:01.7443980Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/rpc_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2024-06-26T05:43:01.7446390Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc/dist_optimizer_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed/rpc 2024-06-26T05:43:01.7454150Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/distributed_test.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2024-06-26T05:43:01.7459610Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/multi_threaded_pg.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2024-06-26T05:43:01.7461920Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/common_state_dict.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2024-06-26T05:43:01.7462960Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/distributed/rpc_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/distributed 2024-06-26T05:43:01.7466360Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_optimizers.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7470540Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_device_type.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7475070Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/autograd_function_db.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7482690Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_mkldnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7483710Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/inductor_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7489980Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_distributed.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7491350Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7492560Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/optests 2024-06-26T05:43:01.7493110Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/optests/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/optests 2024-06-26T05:43:01.7494100Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/optests/fake_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/optests 2024-06-26T05:43:01.7497970Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/optests/aot_autograd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/optests 2024-06-26T05:43:01.7502180Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/optests/make_fx.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/optests 2024-06-26T05:43:01.7504160Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/optests/generate_tests.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/optests 2024-06-26T05:43:01.7522680Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/optests/autograd_registration.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/optests 2024-06-26T05:43:01.7525850Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_methods_invocations.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7567240Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/codegen 2024-06-26T05:43:01.7567800Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/codegen/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/codegen 2024-06-26T05:43:01.7578260Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/logging_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7579670Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/hypothesis_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7585330Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_cuda.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7587170Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_quantization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7588850Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_modules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7590880Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_jit.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7592530Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/jit_metaprogramming_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7593760Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/dynamo_test_failures.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7595250Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/check_kernel_launches.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7595990Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7598390Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/quantization_torch_package_models.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7599540Z creating build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/data 2024-06-26T05:43:01.7600150Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/data/network1.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/data 2024-06-26T05:43:01.7601560Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/data/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/data 2024-06-26T05:43:01.7602240Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/data/network2.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal/data 2024-06-26T05:43:01.7603330Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_quantized.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7604980Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_dist_composable.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7605540Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/common_subclass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7606960Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/composite_compliance.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7607840Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/logging_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7609040Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/dist_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7610410Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_internal/jit_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing/_internal 2024-06-26T05:43:01.7611270Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_creation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing 2024-06-26T05:43:01.7612770Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing 2024-06-26T05:43:01.7613530Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_comparison.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing 2024-06-26T05:43:01.7615230Z copying build/lib.macosx-11.1-arm64-3.9/torch/testing/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/testing 2024-06-26T05:43:01.7616060Z copying build/lib.macosx-11.1-arm64-3.9/torch/_vmap_internals.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.7618010Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_library 2024-06-26T05:43:01.7618510Z copying build/lib.macosx-11.1-arm64-3.9/torch/_library/infer_schema.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2024-06-26T05:43:01.7620270Z copying build/lib.macosx-11.1-arm64-3.9/torch/_library/simple_registry.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2024-06-26T05:43:01.7621100Z copying build/lib.macosx-11.1-arm64-3.9/torch/_library/custom_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2024-06-26T05:43:01.7622860Z copying build/lib.macosx-11.1-arm64-3.9/torch/_library/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2024-06-26T05:43:01.7624140Z copying build/lib.macosx-11.1-arm64-3.9/torch/_library/fake_impl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2024-06-26T05:43:01.7625410Z copying build/lib.macosx-11.1-arm64-3.9/torch/_library/autograd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2024-06-26T05:43:01.7627000Z copying build/lib.macosx-11.1-arm64-3.9/torch/_library/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2024-06-26T05:43:01.7628300Z copying build/lib.macosx-11.1-arm64-3.9/torch/_library/fake_class_registry.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_library 2024-06-26T05:43:01.7629530Z copying build/lib.macosx-11.1-arm64-3.9/torch/functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.7631400Z copying build/lib.macosx-11.1-arm64-3.9/torch/_lowrank.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.7632700Z copying build/lib.macosx-11.1-arm64-3.9/torch/_appdirs.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.7633900Z creating build/bdist.macosx-11.1-arm64/wheel/torch/amp 2024-06-26T05:43:01.7634490Z copying build/lib.macosx-11.1-arm64-3.9/torch/amp/autocast_mode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/amp 2024-06-26T05:43:01.7635980Z copying build/lib.macosx-11.1-arm64-3.9/torch/amp/grad_scaler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/amp 2024-06-26T05:43:01.7637210Z copying build/lib.macosx-11.1-arm64-3.9/torch/amp/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/amp 2024-06-26T05:43:01.7638480Z creating build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7638960Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_ir_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7640220Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_monkeytype_config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7641010Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_decompositions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7642420Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_recursive.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7643670Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_logging.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7644400Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_serialization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7645890Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/quantized.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7646510Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_script.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7648260Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_shape_functions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7649540Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_decomposition_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7651290Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_freeze.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7653000Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_pickle.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7654660Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_check.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7655640Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/unsupported_tensor_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7656900Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/frontend.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7658530Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/supported_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7659300Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7660480Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_fuser.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7661840Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_builtins.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7662600Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_dataclass_impls.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7664020Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_trace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7665530Z creating build/bdist.macosx-11.1-arm64/wheel/torch/jit/_passes 2024-06-26T05:43:01.7666090Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_passes/_property_propagation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit/_passes 2024-06-26T05:43:01.7667410Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_passes/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit/_passes 2024-06-26T05:43:01.7667860Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/generate_bytecode.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7669180Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_state.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7670810Z creating build/bdist.macosx-11.1-arm64/wheel/torch/jit/mobile 2024-06-26T05:43:01.7671270Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/mobile/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit/mobile 2024-06-26T05:43:01.7672720Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_async.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7673540Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/annotations.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7674960Z copying build/lib.macosx-11.1-arm64-3.9/torch/jit/_await.py -> build/bdist.macosx-11.1-arm64/wheel/torch/jit 2024-06-26T05:43:01.7676450Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7676990Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/cache_size.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7678270Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/callback.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7680630Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/comptime.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7682150Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/logging.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7687750Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/_trace_wrapped_higher_order_op.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7703710Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/hooks.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7716960Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7720990Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/guards.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7730210Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/test_minifier_common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7731400Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/create_parameter_op.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7732490Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/device_interface.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7734970Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2024-06-26T05:43:01.7735470Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends/registry.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2024-06-26T05:43:01.7736970Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2024-06-26T05:43:01.7737540Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends/debugging.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2024-06-26T05:43:01.7739550Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends/distributed.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2024-06-26T05:43:01.7741810Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends/common.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2024-06-26T05:43:01.7749660Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends/inductor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2024-06-26T05:43:01.7750280Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends/onnxrt.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2024-06-26T05:43:01.7751780Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends/tvm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2024-06-26T05:43:01.7753690Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends/cudagraphs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2024-06-26T05:43:01.7754610Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends/tensorrt.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2024-06-26T05:43:01.7755930Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/backends/torchxla.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/backends 2024-06-26T05:43:01.7756960Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7757730Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/mutation_guard.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7759060Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/types.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7759900Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/bytecode_analysis.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7761360Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/tensor_version_op.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7762310Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/external_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7763750Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/test_case.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7764410Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/resume_execution.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7770080Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/output_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7770700Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/compiled_autograd.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7771100Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/exc.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7771500Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7771800Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7772360Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/functions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7774100Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/iter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7775270Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/misc.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7778810Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/lists.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7780260Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/script_object.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7781260Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/torch_function.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7784280Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7790480Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/user_defined.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7792440Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/nn_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7798050Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/builder.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7799750Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7801220Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/higher_order_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7805710Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/sdpa.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7810660Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/distributed.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7813230Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/optimizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7817960Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/builtin.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7819600Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/constant.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7822090Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/lazy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7829560Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/torch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7831990Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/ctx_manager.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7832860Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/dicts.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7839370Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/variables/base.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/variables 2024-06-26T05:43:01.7841550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/repro 2024-06-26T05:43:01.7842080Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/repro/after_dynamo.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/repro 2024-06-26T05:43:01.7843640Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/repro/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/repro 2024-06-26T05:43:01.7844350Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/repro/after_aot.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo/repro 2024-06-26T05:43:01.7846740Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/replay_record.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7847410Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/side_effects.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7850120Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/trace_rules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7851640Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/bytecode_transformation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7853290Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/convert_frame.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7854580Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/funcname_cache.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7855420Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/polyfill.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7856690Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/testing.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.7857700Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.8007560Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/symbolic_convert.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.8009270Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/codegen.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.8010320Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/source.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.8028650Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/eval_frame.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.8030130Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/code_context.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.8031060Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/current_scope_id.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.8032370Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/debug_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.8033310Z copying build/lib.macosx-11.1-arm64-3.9/torch/_dynamo/decorators.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_dynamo 2024-06-26T05:43:01.8035330Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2024-06-26T05:43:01.8035720Z copying build/lib.macosx-11.1-arm64-3.9/torch/_lazy/metrics.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2024-06-26T05:43:01.8037190Z copying build/lib.macosx-11.1-arm64-3.9/torch/_lazy/config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2024-06-26T05:43:01.8037970Z copying build/lib.macosx-11.1-arm64-3.9/torch/_lazy/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2024-06-26T05:43:01.8039410Z copying build/lib.macosx-11.1-arm64-3.9/torch/_lazy/tensor_factory_functions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2024-06-26T05:43:01.8040010Z copying build/lib.macosx-11.1-arm64-3.9/torch/_lazy/debug.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2024-06-26T05:43:01.8041670Z copying build/lib.macosx-11.1-arm64-3.9/torch/_lazy/extract_compiled_graph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2024-06-26T05:43:01.8042280Z copying build/lib.macosx-11.1-arm64-3.9/torch/_lazy/ir_cache.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2024-06-26T05:43:01.8043700Z copying build/lib.macosx-11.1-arm64-3.9/torch/_lazy/ts_backend.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2024-06-26T05:43:01.8044350Z copying build/lib.macosx-11.1-arm64-3.9/torch/_lazy/computation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2024-06-26T05:43:01.8045780Z copying build/lib.macosx-11.1-arm64-3.9/torch/_lazy/closure.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2024-06-26T05:43:01.8046560Z copying build/lib.macosx-11.1-arm64-3.9/torch/_lazy/device_context.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_lazy 2024-06-26T05:43:01.8047820Z copying build/lib.macosx-11.1-arm64-3.9/torch/storage.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:01.8049420Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao 2024-06-26T05:43:01.8050290Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn 2024-06-26T05:43:01.8051160Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat 2024-06-26T05:43:01.8051810Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/dynamic 2024-06-26T05:43:01.8052540Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/dynamic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/dynamic 2024-06-26T05:43:01.8054160Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2024-06-26T05:43:01.8054760Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/dynamic/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2024-06-26T05:43:01.8055700Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/dynamic/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2024-06-26T05:43:01.8056630Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat 2024-06-26T05:43:01.8058140Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/modules 2024-06-26T05:43:01.8058660Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/modules 2024-06-26T05:43:01.8060020Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/modules 2024-06-26T05:43:01.8060650Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/modules 2024-06-26T05:43:01.8062090Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/qat/modules/embedding_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/qat/modules 2024-06-26T05:43:01.8063270Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized 2024-06-26T05:43:01.8063940Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/dynamic 2024-06-26T05:43:01.8064810Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/dynamic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/dynamic 2024-06-26T05:43:01.8066240Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2024-06-26T05:43:01.8066900Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/dynamic/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2024-06-26T05:43:01.8067920Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2024-06-26T05:43:01.8068960Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/dynamic/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2024-06-26T05:43:01.8070460Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/dynamic/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2024-06-26T05:43:01.8071390Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized 2024-06-26T05:43:01.8072780Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/functional.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized 2024-06-26T05:43:01.8074140Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2024-06-26T05:43:01.8074730Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules/batchnorm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2024-06-26T05:43:01.8076180Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules/functional_modules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2024-06-26T05:43:01.8077010Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2024-06-26T05:43:01.8078820Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2024-06-26T05:43:01.8079640Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules/activation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2024-06-26T05:43:01.8080950Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2024-06-26T05:43:01.8082000Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules/dropout.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2024-06-26T05:43:01.8083440Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2024-06-26T05:43:01.8084370Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules/normalization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2024-06-26T05:43:01.8085800Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2024-06-26T05:43:01.8086630Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/modules/embedding_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/modules 2024-06-26T05:43:01.8088500Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference 2024-06-26T05:43:01.8089120Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/reference/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference 2024-06-26T05:43:01.8090430Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference/modules 2024-06-26T05:43:01.8091090Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/reference/modules/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference/modules 2024-06-26T05:43:01.8092000Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/reference/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference/modules 2024-06-26T05:43:01.8093090Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/reference/modules/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference/modules 2024-06-26T05:43:01.8095130Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/reference/modules/sparse.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference/modules 2024-06-26T05:43:01.8095900Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/reference/modules/conv.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference/modules 2024-06-26T05:43:01.8097580Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantized/reference/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantized/reference/modules 2024-06-26T05:43:01.8098360Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn 2024-06-26T05:43:01.8099830Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantizable 2024-06-26T05:43:01.8100340Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantizable/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantizable 2024-06-26T05:43:01.8101780Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantizable/modules 2024-06-26T05:43:01.8102350Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantizable/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantizable/modules 2024-06-26T05:43:01.8103790Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantizable/modules/activation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantizable/modules 2024-06-26T05:43:01.8104730Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/quantizable/modules/rnn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/quantizable/modules 2024-06-26T05:43:01.8106260Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic 2024-06-26T05:43:01.8106820Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/qat 2024-06-26T05:43:01.8107590Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/qat/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/qat 2024-06-26T05:43:01.8109030Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2024-06-26T05:43:01.8109740Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/qat/modules/conv_fused.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2024-06-26T05:43:01.8111160Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/qat/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2024-06-26T05:43:01.8111890Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/qat/modules/linear_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2024-06-26T05:43:01.8113420Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/qat/modules/linear_fused.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2024-06-26T05:43:01.8114410Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized 2024-06-26T05:43:01.8115530Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic 2024-06-26T05:43:01.8116200Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/dynamic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic 2024-06-26T05:43:01.8117570Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2024-06-26T05:43:01.8118310Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2024-06-26T05:43:01.8119190Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2024-06-26T05:43:01.8119970Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized 2024-06-26T05:43:01.8121340Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2024-06-26T05:43:01.8122000Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/modules/bn_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2024-06-26T05:43:01.8123040Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2024-06-26T05:43:01.8124120Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/modules/conv_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2024-06-26T05:43:01.8125510Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/modules/linear_relu.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2024-06-26T05:43:01.8126320Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/quantized/modules/conv_add.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2024-06-26T05:43:01.8127210Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic 2024-06-26T05:43:01.8128790Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/modules 2024-06-26T05:43:01.8129410Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/modules/fused.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/modules 2024-06-26T05:43:01.8130460Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/intrinsic/modules/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/intrinsic/modules 2024-06-26T05:43:01.8131870Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse 2024-06-26T05:43:01.8132500Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse/quantized 2024-06-26T05:43:01.8133670Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2024-06-26T05:43:01.8134320Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/sparse/quantized/dynamic/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2024-06-26T05:43:01.8135900Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/sparse/quantized/dynamic/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2024-06-26T05:43:01.8136580Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/sparse/quantized/linear.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse/quantized 2024-06-26T05:43:01.8138050Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/sparse/quantized/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse/quantized 2024-06-26T05:43:01.8138720Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/sparse/quantized/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse/quantized 2024-06-26T05:43:01.8140060Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/nn/sparse/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/nn/sparse 2024-06-26T05:43:01.8141080Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns 2024-06-26T05:43:01.8141750Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2024-06-26T05:43:01.8142380Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx/graph_passes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2024-06-26T05:43:01.8143960Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx/weight_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2024-06-26T05:43:01.8145370Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx/graph_matcher.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2024-06-26T05:43:01.8146090Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2024-06-26T05:43:01.8146930Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2024-06-26T05:43:01.8148500Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx/pattern_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2024-06-26T05:43:01.8149280Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx/ns_types.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2024-06-26T05:43:01.8150610Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx/n_shadows_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2024-06-26T05:43:01.8151970Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx/mappings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2024-06-26T05:43:01.8153020Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/fx/qconfig_multi_mapping.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns/fx 2024-06-26T05:43:01.8158720Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/_numeric_suite.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns 2024-06-26T05:43:01.8159310Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns 2024-06-26T05:43:01.8159740Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/ns/_numeric_suite_fx.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/ns 2024-06-26T05:43:01.8160110Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao 2024-06-26T05:43:01.8160320Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8160820Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/observer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8161330Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fuse_modules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8162110Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/_learnable_fake_quantize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8163650Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2024-06-26T05:43:01.8164330Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config/_common_operator_config_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2024-06-26T05:43:01.8165860Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config/qnnpack.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2024-06-26T05:43:01.8166630Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config/fbgemm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2024-06-26T05:43:01.8168120Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2024-06-26T05:43:01.8169020Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config/native.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2024-06-26T05:43:01.8170110Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config/observation_type.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2024-06-26T05:43:01.8170860Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config/onednn.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2024-06-26T05:43:01.8172430Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2024-06-26T05:43:01.8173920Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config/_qnnpack_pt2e.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2024-06-26T05:43:01.8174850Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config/executorch.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2024-06-26T05:43:01.8176330Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config/backend_config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2024-06-26T05:43:01.8177200Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config/x86.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2024-06-26T05:43:01.8179730Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/backend_config/tensorrt.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/backend_config 2024-06-26T05:43:01.8183040Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantization_mappings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8185440Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/_correct_bias.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8190960Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2024-06-26T05:43:01.8191540Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e/port_metadata_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2024-06-26T05:43:01.8196710Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e/export_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2024-06-26T05:43:01.8198000Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e/qat_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2024-06-26T05:43:01.8199620Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e/duplicate_dq_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2024-06-26T05:43:01.8201780Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e/graph_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2024-06-26T05:43:01.8202600Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2024-06-26T05:43:01.8203910Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e/representation 2024-06-26T05:43:01.8204650Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e/representation/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e/representation 2024-06-26T05:43:01.8206730Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e/representation/rewrite.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e/representation 2024-06-26T05:43:01.8207730Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2024-06-26T05:43:01.8209700Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e/generate_numeric_debug_handle.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2024-06-26T05:43:01.8212000Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/pt2e/prepare.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/pt2e 2024-06-26T05:43:01.8213920Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8217880Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8218440Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/graph_module.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8220700Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/lower_to_fbgemm.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8224910Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/_equalize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8227180Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/lower_to_qnnpack.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8228100Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/convert.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8229490Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8232930Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx/_model_report 2024-06-26T05:43:01.8233560Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/_model_report/detector.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx/_model_report 2024-06-26T05:43:01.8235410Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/_model_report/model_report_visualizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx/_model_report 2024-06-26T05:43:01.8237890Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/_model_report/model_report_observer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx/_model_report 2024-06-26T05:43:01.8245000Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/_model_report/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx/_model_report 2024-06-26T05:43:01.8245750Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/_model_report/model_report.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx/_model_report 2024-06-26T05:43:01.8246700Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/quantize_handler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8252060Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8253080Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/pattern_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8254400Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/_lower_to_native_backend.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8261470Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/custom_config.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8262760Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/fuse.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8265910Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/qconfig_mapping_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8270770Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/match_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8277270Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/prepare.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8279840Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/tracer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8283690Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/_decomposed.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8288600Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/fuse_handler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8290860Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fx/lstm_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/fx 2024-06-26T05:43:01.8293220Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/_equalize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8296790Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fake_quantize.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8298970Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/qconfig.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8303290Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8305110Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/qconfig_mapping.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8310000Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/stubs.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8310890Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8315790Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/fuser_method_mappings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8320380Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantize_jit.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8322030Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantize_pt2e.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8326790Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2024-06-26T05:43:01.8327420Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer/embedding_quantizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2024-06-26T05:43:01.8328940Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer/x86_inductor_quantizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2024-06-26T05:43:01.8332620Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer/xnnpack_quantizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2024-06-26T05:43:01.8335050Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer/composable_quantizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2024-06-26T05:43:01.8341360Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2024-06-26T05:43:01.8342330Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer/quantizer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2024-06-26T05:43:01.8348180Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2024-06-26T05:43:01.8351970Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization/quantizer 2024-06-26T05:43:01.8353500Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quant_type.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8354570Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/quantization/quantize_fx.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/quantization 2024-06-26T05:43:01.8356650Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning 2024-06-26T05:43:01.8357560Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/sparsifier 2024-06-26T05:43:01.8358210Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/sparsifier/weight_norm_sparsifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/sparsifier 2024-06-26T05:43:01.8359800Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/sparsifier/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/sparsifier 2024-06-26T05:43:01.8360380Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/sparsifier/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/sparsifier 2024-06-26T05:43:01.8363780Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/sparsifier 2024-06-26T05:43:01.8364550Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/sparsifier/base_sparsifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/sparsifier 2024-06-26T05:43:01.8367400Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental 2024-06-26T05:43:01.8368090Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2024-06-26T05:43:01.8369150Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning 2024-06-26T05:43:01.8369960Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2024-06-26T05:43:01.8370850Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:01.8372150Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:01.8373380Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:01.8374300Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning 2024-06-26T05:43:01.8375220Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2024-06-26T05:43:01.8376840Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_sparsifier/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2024-06-26T05:43:01.8377760Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2024-06-26T05:43:01.8378760Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2024-06-26T05:43:01.8380860Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2024-06-26T05:43:01.8381500Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner/FPGM_pruner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2024-06-26T05:43:01.8385510Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner/saliency_pruner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2024-06-26T05:43:01.8386290Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2024-06-26T05:43:01.8389300Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2024-06-26T05:43:01.8394170Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner/prune_functions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2024-06-26T05:43:01.8395750Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2024-06-26T05:43:01.8397690Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner/parametrization.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2024-06-26T05:43:01.8398420Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/pruner/match_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/pruner 2024-06-26T05:43:01.8399990Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental 2024-06-26T05:43:01.8401250Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2024-06-26T05:43:01.8402020Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2024-06-26T05:43:01.8403050Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/activation_sparsifier/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2024-06-26T05:43:01.8404220Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2024-06-26T05:43:01.8404880Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_scheduler/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2024-06-26T05:43:01.8405930Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2024-06-26T05:43:01.8407320Z creating build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/scheduler 2024-06-26T05:43:01.8407940Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/scheduler/base_scheduler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/scheduler 2024-06-26T05:43:01.8408960Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/scheduler/cubic_scheduler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/scheduler 2024-06-26T05:43:01.8409930Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/scheduler/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/scheduler 2024-06-26T05:43:01.8410870Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/scheduler/lambda_scheduler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning/scheduler 2024-06-26T05:43:01.8413200Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning 2024-06-26T05:43:01.8413990Z copying build/lib.macosx-11.1-arm64-3.9/torch/ao/pruning/_mappings.py -> build/bdist.macosx-11.1-arm64/wheel/torch/ao/pruning 2024-06-26T05:43:01.8415450Z creating build/bdist.macosx-11.1-arm64/wheel/torch/mtia 2024-06-26T05:43:01.8415910Z copying build/lib.macosx-11.1-arm64-3.9/torch/mtia/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/mtia 2024-06-26T05:43:01.8421890Z copying build/lib.macosx-11.1-arm64-3.9/torch/mtia/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/mtia 2024-06-26T05:43:01.8423140Z creating build/bdist.macosx-11.1-arm64/wheel/torch/lib 2024-06-26T05:43:01.8423600Z copying build/lib.macosx-11.1-arm64-3.9/torch/lib/libtorch_python.dylib -> build/bdist.macosx-11.1-arm64/wheel/torch/lib 2024-06-26T05:43:01.9356730Z copying build/lib.macosx-11.1-arm64-3.9/torch/lib/libtorch.dylib -> build/bdist.macosx-11.1-arm64/wheel/torch/lib 2024-06-26T05:43:01.9357850Z copying build/lib.macosx-11.1-arm64-3.9/torch/lib/libtorch_global_deps.dylib -> build/bdist.macosx-11.1-arm64/wheel/torch/lib 2024-06-26T05:43:01.9359090Z copying build/lib.macosx-11.1-arm64-3.9/torch/lib/libomp.dylib -> build/bdist.macosx-11.1-arm64/wheel/torch/lib 2024-06-26T05:43:01.9364520Z copying build/lib.macosx-11.1-arm64-3.9/torch/lib/libtorch_cpu.dylib -> build/bdist.macosx-11.1-arm64/wheel/torch/lib 2024-06-26T05:43:03.7153630Z copying build/lib.macosx-11.1-arm64-3.9/torch/lib/libc10.dylib -> build/bdist.macosx-11.1-arm64/wheel/torch/lib 2024-06-26T05:43:03.7159120Z copying build/lib.macosx-11.1-arm64-3.9/torch/lib/libshm.dylib -> build/bdist.macosx-11.1-arm64/wheel/torch/lib 2024-06-26T05:43:03.7160810Z copying build/lib.macosx-11.1-arm64-3.9/torch/_VF.pyi -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:03.7167740Z copying build/lib.macosx-11.1-arm64-3.9/torch/_compile.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:03.7168930Z copying build/lib.macosx-11.1-arm64-3.9/torch/py.typed -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:03.7169690Z copying build/lib.macosx-11.1-arm64-3.9/torch/_lobpcg.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:03.7171690Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_refs 2024-06-26T05:43:03.7172400Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_refs/linalg 2024-06-26T05:43:03.7173200Z copying build/lib.macosx-11.1-arm64-3.9/torch/_refs/linalg/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_refs/linalg 2024-06-26T05:43:03.7174880Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_refs/nn 2024-06-26T05:43:03.7175570Z copying build/lib.macosx-11.1-arm64-3.9/torch/_refs/nn/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_refs/nn 2024-06-26T05:43:03.7176680Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_refs/nn/functional 2024-06-26T05:43:03.7177490Z copying build/lib.macosx-11.1-arm64-3.9/torch/_refs/nn/functional/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_refs/nn/functional 2024-06-26T05:43:03.7178640Z copying build/lib.macosx-11.1-arm64-3.9/torch/_refs/_conversions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_refs 2024-06-26T05:43:03.7179720Z copying build/lib.macosx-11.1-arm64-3.9/torch/_refs/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_refs 2024-06-26T05:43:03.7182550Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_refs/special 2024-06-26T05:43:03.7183290Z copying build/lib.macosx-11.1-arm64-3.9/torch/_refs/special/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_refs/special 2024-06-26T05:43:03.7184290Z copying build/lib.macosx-11.1-arm64-3.9/torch/_refs/fft.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_refs 2024-06-26T05:43:03.7185960Z creating build/bdist.macosx-11.1-arm64/wheel/torch/fft 2024-06-26T05:43:03.7186750Z copying build/lib.macosx-11.1-arm64-3.9/torch/fft/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/fft 2024-06-26T05:43:03.7187780Z copying build/lib.macosx-11.1-arm64-3.9/torch/__future__.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:03.7189340Z creating build/bdist.macosx-11.1-arm64/wheel/torch/profiler 2024-06-26T05:43:03.7190140Z copying build/lib.macosx-11.1-arm64-3.9/torch/profiler/_memory_profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/profiler 2024-06-26T05:43:03.7191190Z copying build/lib.macosx-11.1-arm64-3.9/torch/profiler/itt.py -> build/bdist.macosx-11.1-arm64/wheel/torch/profiler 2024-06-26T05:43:03.7192310Z copying build/lib.macosx-11.1-arm64-3.9/torch/profiler/_pattern_matcher.py -> build/bdist.macosx-11.1-arm64/wheel/torch/profiler 2024-06-26T05:43:03.7193490Z copying build/lib.macosx-11.1-arm64-3.9/torch/profiler/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/profiler 2024-06-26T05:43:03.7194550Z copying build/lib.macosx-11.1-arm64-3.9/torch/profiler/profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/profiler 2024-06-26T05:43:03.7195830Z copying build/lib.macosx-11.1-arm64-3.9/torch/profiler/python_tracer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/profiler 2024-06-26T05:43:03.7196940Z copying build/lib.macosx-11.1-arm64-3.9/torch/profiler/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/profiler 2024-06-26T05:43:03.7199030Z creating build/bdist.macosx-11.1-arm64/wheel/torch/sparse 2024-06-26T05:43:03.7199740Z copying build/lib.macosx-11.1-arm64-3.9/torch/sparse/_semi_structured_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/sparse 2024-06-26T05:43:03.7200860Z copying build/lib.macosx-11.1-arm64-3.9/torch/sparse/_semi_structured_conversions.py -> build/bdist.macosx-11.1-arm64/wheel/torch/sparse 2024-06-26T05:43:03.7202110Z copying build/lib.macosx-11.1-arm64-3.9/torch/sparse/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/sparse 2024-06-26T05:43:03.7203530Z copying build/lib.macosx-11.1-arm64-3.9/torch/sparse/semi_structured.py -> build/bdist.macosx-11.1-arm64/wheel/torch/sparse 2024-06-26T05:43:03.7204800Z copying build/lib.macosx-11.1-arm64-3.9/torch/sparse/_triton_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/sparse 2024-06-26T05:43:03.7211260Z copying build/lib.macosx-11.1-arm64-3.9/torch/sparse/_triton_ops_meta.py -> build/bdist.macosx-11.1-arm64/wheel/torch/sparse 2024-06-26T05:43:03.7211940Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_awaits 2024-06-26T05:43:03.7212610Z copying build/lib.macosx-11.1-arm64-3.9/torch/_awaits/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_awaits 2024-06-26T05:43:03.7213420Z copying build/lib.macosx-11.1-arm64-3.9/torch/_guards.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:03.7214180Z copying build/lib.macosx-11.1-arm64-3.9/torch/_deploy.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:03.7214970Z copying build/lib.macosx-11.1-arm64-3.9/torch/_python_dispatcher.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:03.7215590Z creating build/bdist.macosx-11.1-arm64/wheel/torch/export 2024-06-26T05:43:03.7216250Z copying build/lib.macosx-11.1-arm64-3.9/torch/export/_safeguard.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2024-06-26T05:43:03.7216950Z creating build/bdist.macosx-11.1-arm64/wheel/torch/export/experimental 2024-06-26T05:43:03.7217780Z copying build/lib.macosx-11.1-arm64-3.9/torch/export/experimental/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export/experimental 2024-06-26T05:43:03.7218890Z copying build/lib.macosx-11.1-arm64-3.9/torch/export/exported_program.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2024-06-26T05:43:03.7220120Z copying build/lib.macosx-11.1-arm64-3.9/torch/export/unflatten.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2024-06-26T05:43:03.7221200Z copying build/lib.macosx-11.1-arm64-3.9/torch/export/custom_obj.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2024-06-26T05:43:03.7222380Z copying build/lib.macosx-11.1-arm64-3.9/torch/export/_remove_effect_tokens_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2024-06-26T05:43:03.7223750Z copying build/lib.macosx-11.1-arm64-3.9/torch/export/_remove_auto_functionalized_pass.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2024-06-26T05:43:03.7224840Z copying build/lib.macosx-11.1-arm64-3.9/torch/export/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2024-06-26T05:43:03.7225880Z copying build/lib.macosx-11.1-arm64-3.9/torch/export/_unlift.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2024-06-26T05:43:03.7227000Z copying build/lib.macosx-11.1-arm64-3.9/torch/export/_trace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2024-06-26T05:43:03.7228790Z copying build/lib.macosx-11.1-arm64-3.9/torch/export/graph_signature.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2024-06-26T05:43:03.7229820Z copying build/lib.macosx-11.1-arm64-3.9/torch/export/dynamic_shapes.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2024-06-26T05:43:03.7231030Z copying build/lib.macosx-11.1-arm64-3.9/torch/export/_tree_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/export 2024-06-26T05:43:03.7232510Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nested 2024-06-26T05:43:03.7233160Z creating build/bdist.macosx-11.1-arm64/wheel/torch/nested/_internal 2024-06-26T05:43:03.7234040Z copying build/lib.macosx-11.1-arm64-3.9/torch/nested/_internal/nested_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nested/_internal 2024-06-26T05:43:03.7235190Z copying build/lib.macosx-11.1-arm64-3.9/torch/nested/_internal/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nested/_internal 2024-06-26T05:43:03.7236260Z copying build/lib.macosx-11.1-arm64-3.9/torch/nested/_internal/ops.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nested/_internal 2024-06-26T05:43:03.7238080Z copying build/lib.macosx-11.1-arm64-3.9/torch/nested/_internal/sdpa.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nested/_internal 2024-06-26T05:43:03.7239110Z copying build/lib.macosx-11.1-arm64-3.9/torch/nested/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/nested 2024-06-26T05:43:03.7240200Z copying build/lib.macosx-11.1-arm64-3.9/torch/_classes.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:03.7241810Z creating build/bdist.macosx-11.1-arm64/wheel/torch/_strobelight 2024-06-26T05:43:03.7242570Z copying build/lib.macosx-11.1-arm64-3.9/torch/_strobelight/cli_function_profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_strobelight 2024-06-26T05:43:03.7243690Z copying build/lib.macosx-11.1-arm64-3.9/torch/_strobelight/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_strobelight 2024-06-26T05:43:03.7244680Z copying build/lib.macosx-11.1-arm64-3.9/torch/_strobelight/compile_time_profiler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/_strobelight 2024-06-26T05:43:03.7245840Z creating build/bdist.macosx-11.1-arm64/wheel/torch/compiler 2024-06-26T05:43:03.7246520Z copying build/lib.macosx-11.1-arm64-3.9/torch/compiler/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/compiler 2024-06-26T05:43:03.7247530Z creating build/bdist.macosx-11.1-arm64/wheel/torch/signal 2024-06-26T05:43:03.7248210Z copying build/lib.macosx-11.1-arm64-3.9/torch/signal/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/signal 2024-06-26T05:43:03.7249730Z creating build/bdist.macosx-11.1-arm64/wheel/torch/signal/windows 2024-06-26T05:43:03.7250480Z copying build/lib.macosx-11.1-arm64-3.9/torch/signal/windows/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/signal/windows 2024-06-26T05:43:03.7251550Z copying build/lib.macosx-11.1-arm64-3.9/torch/signal/windows/windows.py -> build/bdist.macosx-11.1-arm64/wheel/torch/signal/windows 2024-06-26T05:43:03.7252580Z copying build/lib.macosx-11.1-arm64-3.9/torch/serialization.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:03.7254740Z creating build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7255560Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/inverse_gamma.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7256600Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/laplace.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7257620Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/relaxed_bernoulli.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7258860Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/categorical.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7259910Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/transforms.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7264410Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/dirichlet.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7265520Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/log_normal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7266610Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/transformed_distribution.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7270850Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/geometric.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7290350Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/weibull.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7294860Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/studentT.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7315160Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/multivariate_normal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7316200Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/normal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7351480Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/poisson.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7359040Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/beta.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7361420Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/kumaraswamy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7363160Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/half_normal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7377420Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/relaxed_categorical.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7378680Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/lowrank_multivariate_normal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7383300Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/half_cauchy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7384390Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7386800Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/lkj_cholesky.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7389500Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/independent.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7390860Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/multinomial.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7392360Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/exponential.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7393480Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/pareto.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7394520Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/negative_binomial.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7395680Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/cauchy.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7396850Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/von_mises.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7398020Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/distribution.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7399300Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/gumbel.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7400420Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/constraint_registry.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7401570Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7500960Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/kl.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7502310Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/mixture_same_family.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7503520Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/continuous_bernoulli.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7504800Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/fishersnedecor.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7505950Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/constraints.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7507830Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/uniform.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7508910Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/bernoulli.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7509950Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/exp_family.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7511000Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/logistic_normal.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7512080Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/one_hot_categorical.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7513120Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/wishart.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7514360Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/gamma.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7515860Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/chi2.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7517270Z copying build/lib.macosx-11.1-arm64-3.9/torch/distributions/binomial.py -> build/bdist.macosx-11.1-arm64/wheel/torch/distributions 2024-06-26T05:43:03.7518430Z creating build/bdist.macosx-11.1-arm64/wheel/torch/package 2024-06-26T05:43:03.7519250Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/package_exporter.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2024-06-26T05:43:03.7521110Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/file_structure_representation.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2024-06-26T05:43:03.7522110Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/_mock.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2024-06-26T05:43:03.7523230Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/importer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2024-06-26T05:43:03.7524270Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/_stdlib.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2024-06-26T05:43:03.7525260Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/_mangling.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2024-06-26T05:43:03.7526290Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2024-06-26T05:43:03.7527310Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/package_importer.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2024-06-26T05:43:03.7528620Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/_package_unpickler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2024-06-26T05:43:03.7529820Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/glob_group.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2024-06-26T05:43:03.7530810Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/find_file_dependencies.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2024-06-26T05:43:03.7531810Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/_package_pickler.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2024-06-26T05:43:03.7533670Z creating build/bdist.macosx-11.1-arm64/wheel/torch/package/analyze 2024-06-26T05:43:03.7534480Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/analyze/trace_dependencies.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package/analyze 2024-06-26T05:43:03.7535670Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/analyze/find_first_use_of_broken_modules.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package/analyze 2024-06-26T05:43:03.7536770Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/analyze/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package/analyze 2024-06-26T05:43:03.7537810Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/analyze/is_from_package.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package/analyze 2024-06-26T05:43:03.7538790Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/_importlib.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2024-06-26T05:43:03.7539720Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/_directory_reader.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2024-06-26T05:43:03.7540640Z copying build/lib.macosx-11.1-arm64-3.9/torch/package/_digraph.py -> build/bdist.macosx-11.1-arm64/wheel/torch/package 2024-06-26T05:43:03.7541670Z copying build/lib.macosx-11.1-arm64-3.9/torch/_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:03.7542610Z copying build/lib.macosx-11.1-arm64-3.9/torch/_C.cpython-39-darwin.so -> build/bdist.macosx-11.1-arm64/wheel/torch 2024-06-26T05:43:03.7544920Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share 2024-06-26T05:43:03.7545390Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake 2024-06-26T05:43:03.7546410Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2 2024-06-26T05:43:03.7547280Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Caffe2Config.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2 2024-06-26T05:43:03.7548520Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/FindSYCLToolkit.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2 2024-06-26T05:43:03.7549530Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2024-06-26T05:43:03.7550610Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2024-06-26T05:43:03.7551970Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2024-06-26T05:43:03.7553010Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2024-06-26T05:43:03.7554270Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:03.7555520Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2024-06-26T05:43:03.7556850Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:03.7558500Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:03.7560200Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:03.7561920Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:03.7563560Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:03.7565150Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:03.7566700Z copying build/lib.macosx-11.1-arm64-3.9/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 2024-06-26T05:43:03.7567780Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2024-06-26T05:43:03.7568710Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public/LoadHIP.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2024-06-26T05:43:03.7569960Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public/mkldnn.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2024-06-26T05:43:03.7571170Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public/glog.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2024-06-26T05:43:03.7572380Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public/utils.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2024-06-26T05:43:03.7573720Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public/protobuf.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2024-06-26T05:43:03.7574940Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public/mkl.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2024-06-26T05:43:03.7576160Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public/gflags.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2024-06-26T05:43:03.7577440Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public/cuda.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2024-06-26T05:43:03.7578630Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/public/xpu.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2/public 2024-06-26T05:43:03.7584630Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/FindCUSPARSELT.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2 2024-06-26T05:43:03.7585880Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/FindCUDAToolkit.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2 2024-06-26T05:43:03.7587040Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Caffe2Targets.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2 2024-06-26T05:43:03.7588230Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Caffe2 2024-06-26T05:43:03.7589140Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Torch 2024-06-26T05:43:03.7589970Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Torch/TorchConfig.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Torch 2024-06-26T05:43:03.7591140Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/Torch/TorchConfigVersion.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/Torch 2024-06-26T05:43:03.7591950Z creating build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/ATen 2024-06-26T05:43:03.7592770Z copying build/lib.macosx-11.1-arm64-3.9/torch/share/cmake/ATen/ATenConfig.cmake -> build/bdist.macosx-11.1-arm64/wheel/torch/share/cmake/ATen 2024-06-26T05:43:03.7593510Z creating build/bdist.macosx-11.1-arm64/wheel/torch/func 2024-06-26T05:43:03.7594140Z copying build/lib.macosx-11.1-arm64-3.9/torch/func/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torch/func 2024-06-26T05:43:03.7594750Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen 2024-06-26T05:43:03.7595420Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/native_function_generation.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2024-06-26T05:43:03.7596170Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/selective_build 2024-06-26T05:43:03.7596970Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/selective_build/selector.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/selective_build 2024-06-26T05:43:03.7598010Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/selective_build/operator.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/selective_build 2024-06-26T05:43:03.7599060Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/selective_build/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/selective_build 2024-06-26T05:43:03.7600000Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/gen_vmap_plumbing.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2024-06-26T05:43:03.7600820Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/gen.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2024-06-26T05:43:03.7601440Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged 2024-06-26T05:43:03.7601950Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7602800Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/load_derivatives.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7603920Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/build.bzl -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7605030Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/gen_autograd.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7606170Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/gen_python_functions.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7607370Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/gen_autograd_functions.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7608590Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/gen_variable_factories.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7609720Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7610870Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/gen_variable_type.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7612000Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/README.md -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7613080Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/context.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7614260Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/gen_inplace_or_view_type.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7615440Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/deprecated.yaml -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7616560Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/BUILD.bazel -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7617400Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7618400Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/python_return_types.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7619740Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/python_enum_tag.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7621130Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/python_nn_functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7622470Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/python_functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7623810Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/python_fft_functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7625180Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/python_sparse_functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7626560Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/python_linalg_functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7627900Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/ViewFuncs.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7629200Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/python_return_types.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7630580Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7631920Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/TraceType.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7633260Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/python_variable_methods.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7634640Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/ViewFuncs.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7635950Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/python_functions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7637310Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/python_nested_functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7638670Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/VariableType.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7640020Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/annotated_fn_args.py.in -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7641390Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/VariableType.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7642670Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/Functions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7644000Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/python_special_functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7645340Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/variable_factories.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7646690Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/python_torch_functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7648020Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/templates/Functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd/templates 2024-06-26T05:43:03.7649270Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/gen_trace_type.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7650400Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/gen_annotated_fn_args.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7651560Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/derivatives.yaml -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7652680Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/autograd/gen_view_funcs.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/autograd 2024-06-26T05:43:03.7653490Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen 2024-06-26T05:43:03.7654030Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/native 2024-06-26T05:43:03.7654950Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/native/native_functions.yaml -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/native 2024-06-26T05:43:03.7656130Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/native/tags.yaml -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/native 2024-06-26T05:43:03.7656960Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7657970Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7659270Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/TensorBody.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7660580Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/UnboxingFunctions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7661900Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/DispatchKeyFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7663220Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/RedispatchFunctions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7664520Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/Operators.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7665800Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/NativeMetaFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7667080Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/NativeFunction.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7668360Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/Operator.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7669650Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/RegistrationDeclarations.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7670940Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/UfuncCPU.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7672170Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/UfuncCUDA.cu -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7673580Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7675020Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7676380Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/RedispatchFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7677690Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/aten_interned_strings.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7683360Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/MethodOperators.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7684790Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7686120Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/Operators.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7687380Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/ATenOpList.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7688680Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7690020Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7691320Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/TensorMethods.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7692710Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7694060Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/DispatchKeyFunction.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7695360Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/UnboxingFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7696750Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7698060Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/Functions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7699330Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/NativeFunctions.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7700650Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7701970Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7703180Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/enum_tag.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7704380Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/Functions.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7705640Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/RegisterSchema.cpp -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7706930Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/LazyNonNativeIr.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7708180Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/Function.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7709440Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/FunctionalInverses.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7710740Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/NativeMetaFunction.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7711960Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/packaged/ATen/templates/LazyIr.h -> build/bdist.macosx-11.1-arm64/wheel/torchgen/packaged/ATen/templates 2024-06-26T05:43:03.7712790Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/static_runtime 2024-06-26T05:43:03.7713570Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/static_runtime/config.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/static_runtime 2024-06-26T05:43:03.7714590Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/static_runtime/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/static_runtime 2024-06-26T05:43:03.7715610Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/static_runtime/generator.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/static_runtime 2024-06-26T05:43:03.7716690Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/static_runtime/gen_static_runtime_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/static_runtime 2024-06-26T05:43:03.7717660Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/gen_executorch.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2024-06-26T05:43:03.7718480Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/local.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2024-06-26T05:43:03.7719380Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/gen_functionalization_type.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2024-06-26T05:43:03.7720240Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/code_template.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2024-06-26T05:43:03.7720920Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/operator_versions 2024-06-26T05:43:03.7721740Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/operator_versions/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/operator_versions 2024-06-26T05:43:03.7722900Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/operator_versions/gen_mobile_upgraders_constant.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/operator_versions 2024-06-26T05:43:03.7724080Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/operator_versions/gen_mobile_upgraders.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/operator_versions 2024-06-26T05:43:03.7725080Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2024-06-26T05:43:03.7725880Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/yaml_utils.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2024-06-26T05:43:03.7726710Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/gen_aoti_c_shim.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2024-06-26T05:43:03.7727510Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/model.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2024-06-26T05:43:03.7728310Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/context.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2024-06-26T05:43:03.7729080Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/utils.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2024-06-26T05:43:03.7729670Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/dest 2024-06-26T05:43:03.7730370Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/dest/lazy_ts_lowering.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/dest 2024-06-26T05:43:03.7731270Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/dest/ufunc.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/dest 2024-06-26T05:43:03.7732170Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/dest/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/dest 2024-06-26T05:43:03.7733070Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/dest/native_functions.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/dest 2024-06-26T05:43:03.7733970Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/dest/lazy_ir.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/dest 2024-06-26T05:43:03.7734900Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/dest/register_dispatch_key.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/dest 2024-06-26T05:43:03.7735590Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2024-06-26T05:43:03.7736260Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/dispatcher.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2024-06-26T05:43:03.7737140Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/translate.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2024-06-26T05:43:03.7737800Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/api/types 2024-06-26T05:43:03.7738520Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/types/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api/types 2024-06-26T05:43:03.7739470Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/types/types.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api/types 2024-06-26T05:43:03.7740460Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/types/signatures.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api/types 2024-06-26T05:43:03.7741450Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/types/types_base.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api/types 2024-06-26T05:43:03.7742360Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/ufunc.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2024-06-26T05:43:03.7743220Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2024-06-26T05:43:03.7744120Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/native.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2024-06-26T05:43:03.7744970Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/cpp.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2024-06-26T05:43:03.7745810Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/unboxing.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2024-06-26T05:43:03.7746760Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/functionalization.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2024-06-26T05:43:03.7747670Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/autograd.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2024-06-26T05:43:03.7748550Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/structured.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2024-06-26T05:43:03.7749450Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/python.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2024-06-26T05:43:03.7750310Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/lazy.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2024-06-26T05:43:03.7751140Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/api/meta.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/api 2024-06-26T05:43:03.7752000Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/gen_backend_stubs.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2024-06-26T05:43:03.7752830Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch 2024-06-26T05:43:03.7753570Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch 2024-06-26T05:43:03.7754550Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/model.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch 2024-06-26T05:43:03.7755600Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api 2024-06-26T05:43:03.7756440Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api/types 2024-06-26T05:43:03.7757330Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/api/types/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api/types 2024-06-26T05:43:03.7758500Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/api/types/types.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api/types 2024-06-26T05:43:03.7759670Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/api/types/signatures.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api/types 2024-06-26T05:43:03.7760800Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/api/custom_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api 2024-06-26T05:43:03.7761840Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/api/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api 2024-06-26T05:43:03.7762880Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/api/unboxing.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api 2024-06-26T05:43:03.7763930Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/api/et_cpp.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch/api 2024-06-26T05:43:03.7764950Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/executorch/parse.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/executorch 2024-06-26T05:43:03.7765950Z creating build/bdist.macosx-11.1-arm64/wheel/torchgen/aoti 2024-06-26T05:43:03.7766660Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/aoti/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/aoti 2024-06-26T05:43:03.7772320Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/aoti/fallback_ops.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen/aoti 2024-06-26T05:43:03.7773400Z copying build/lib.macosx-11.1-arm64-3.9/torchgen/gen_lazy_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/torchgen 2024-06-26T05:43:03.7774080Z creating build/bdist.macosx-11.1-arm64/wheel/functorch 2024-06-26T05:43:03.7774540Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/experimental 2024-06-26T05:43:03.7775350Z copying build/lib.macosx-11.1-arm64-3.9/functorch/experimental/control_flow.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/experimental 2024-06-26T05:43:03.7776390Z copying build/lib.macosx-11.1-arm64-3.9/functorch/experimental/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/experimental 2024-06-26T05:43:03.7777430Z copying build/lib.macosx-11.1-arm64-3.9/functorch/experimental/ops.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/experimental 2024-06-26T05:43:03.7778150Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/_src 2024-06-26T05:43:03.7778650Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/_src/make_functional 2024-06-26T05:43:03.7779500Z copying build/lib.macosx-11.1-arm64-3.9/functorch/_src/make_functional/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/_src/make_functional 2024-06-26T05:43:03.7780530Z copying build/lib.macosx-11.1-arm64-3.9/functorch/_src/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/_src 2024-06-26T05:43:03.7781250Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/_src/eager_transforms 2024-06-26T05:43:03.7782110Z copying build/lib.macosx-11.1-arm64-3.9/functorch/_src/eager_transforms/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/_src/eager_transforms 2024-06-26T05:43:03.7782920Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/_src/aot_autograd 2024-06-26T05:43:03.7783740Z copying build/lib.macosx-11.1-arm64-3.9/functorch/_src/aot_autograd/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/_src/aot_autograd 2024-06-26T05:43:03.7784510Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/_src/vmap 2024-06-26T05:43:03.7785240Z copying build/lib.macosx-11.1-arm64-3.9/functorch/_src/vmap/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/_src/vmap 2024-06-26T05:43:03.7785920Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2024-06-26T05:43:03.7786610Z copying build/lib.macosx-11.1-arm64-3.9/functorch/dim/magic_trace.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2024-06-26T05:43:03.7787550Z copying build/lib.macosx-11.1-arm64-3.9/functorch/dim/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2024-06-26T05:43:03.7788480Z copying build/lib.macosx-11.1-arm64-3.9/functorch/dim/delayed_mul_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2024-06-26T05:43:03.7789420Z copying build/lib.macosx-11.1-arm64-3.9/functorch/dim/op_properties.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2024-06-26T05:43:03.7790330Z copying build/lib.macosx-11.1-arm64-3.9/functorch/dim/batch_tensor.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2024-06-26T05:43:03.7791230Z copying build/lib.macosx-11.1-arm64-3.9/functorch/dim/wrap_type.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2024-06-26T05:43:03.7792120Z copying build/lib.macosx-11.1-arm64-3.9/functorch/dim/reference.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2024-06-26T05:43:03.7793000Z copying build/lib.macosx-11.1-arm64-3.9/functorch/dim/dim.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2024-06-26T05:43:03.7793920Z copying build/lib.macosx-11.1-arm64-3.9/functorch/dim/tree_map.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/dim 2024-06-26T05:43:03.7794960Z copying build/lib.macosx-11.1-arm64-3.9/functorch/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch 2024-06-26T05:43:03.7795980Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/compile 2024-06-26T05:43:03.7796720Z copying build/lib.macosx-11.1-arm64-3.9/functorch/compile/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/compile 2024-06-26T05:43:03.7797750Z creating build/bdist.macosx-11.1-arm64/wheel/functorch/einops 2024-06-26T05:43:03.7798490Z copying build/lib.macosx-11.1-arm64-3.9/functorch/einops/_parsing.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/einops 2024-06-26T05:43:03.7799710Z copying build/lib.macosx-11.1-arm64-3.9/functorch/einops/__init__.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/einops 2024-06-26T05:43:03.7800800Z copying build/lib.macosx-11.1-arm64-3.9/functorch/einops/rearrange.py -> build/bdist.macosx-11.1-arm64/wheel/functorch/einops 2024-06-26T05:43:03.7801900Z copying build/lib.macosx-11.1-arm64-3.9/functorch/_C.cpython-39-darwin.so -> build/bdist.macosx-11.1-arm64/wheel/functorch 2024-06-26T05:43:03.7806230Z running install_egg_info 2024-06-26T05:43:03.9478070Z running egg_info 2024-06-26T05:43:03.9478390Z creating torch.egg-info 2024-06-26T05:43:03.9875150Z writing torch.egg-info/PKG-INFO 2024-06-26T05:43:04.0161740Z writing dependency_links to torch.egg-info/dependency_links.txt 2024-06-26T05:43:04.0963240Z writing entry points to torch.egg-info/entry_points.txt 2024-06-26T05:43:04.1497440Z writing requirements to torch.egg-info/requires.txt 2024-06-26T05:43:04.1767290Z writing top-level names to torch.egg-info/top_level.txt 2024-06-26T05:43:04.1768010Z writing manifest file 'torch.egg-info/SOURCES.txt' 2024-06-26T05:43:04.5011620Z reading manifest file 'torch.egg-info/SOURCES.txt' 2024-06-26T05:43:04.5012010Z reading manifest template 'MANIFEST.in' 2024-06-26T05:43:07.6376570Z warning: no files found matching '*.*' under directory 'modules' 2024-06-26T05:43:07.7138780Z warning: no previously-included files matching '*.o' found anywhere in distribution 2024-06-26T05:43:08.0635610Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2024-06-26T05:43:08.0636090Z adding license file 'LICENSE' 2024-06-26T05:43:08.0636360Z adding license file 'NOTICE' 2024-06-26T05:43:08.7617670Z writing manifest file 'torch.egg-info/SOURCES.txt' 2024-06-26T05:43:08.8004180Z Copying torch.egg-info to build/bdist.macosx-11.1-arm64/wheel/torch-2.5.0a0+gitb8c4c54-py3.9.egg-info 2024-06-26T05:43:08.8306620Z running install_scripts 2024-06-26T05:43:08.9736070Z adding license file "LICENSE" (matched pattern "LICEN[CS]E*") 2024-06-26T05:43:08.9736730Z adding license file "NOTICE" (matched pattern "NOTICE*") 2024-06-26T05:43:08.9937800Z creating build/bdist.macosx-11.1-arm64/wheel/torch-2.5.0a0+gitb8c4c54.dist-info/WHEEL 2024-06-26T05:43:08.9940680Z creating 'dist/torch-2.5.0a0+gitb8c4c54-cp39-cp39-macosx_11_0_arm64.whl' and adding 'build/bdist.macosx-11.1-arm64/wheel' to it 2024-06-26T05:43:09.0074470Z adding 'functorch/_C.cpython-39-darwin.so' 2024-06-26T05:43:09.0077710Z adding 'functorch/__init__.py' 2024-06-26T05:43:09.0079220Z adding 'functorch/_src/__init__.py' 2024-06-26T05:43:09.0080690Z adding 'functorch/_src/aot_autograd/__init__.py' 2024-06-26T05:43:09.0082130Z adding 'functorch/_src/eager_transforms/__init__.py' 2024-06-26T05:43:09.0083450Z adding 'functorch/_src/make_functional/__init__.py' 2024-06-26T05:43:09.0084760Z adding 'functorch/_src/vmap/__init__.py' 2024-06-26T05:43:09.0086210Z adding 'functorch/compile/__init__.py' 2024-06-26T05:43:09.0093200Z adding 'functorch/dim/__init__.py' 2024-06-26T05:43:09.0093610Z adding 'functorch/dim/batch_tensor.py' 2024-06-26T05:43:09.0093940Z adding 'functorch/dim/delayed_mul_tensor.py' 2024-06-26T05:43:09.0094260Z adding 'functorch/dim/dim.py' 2024-06-26T05:43:09.0094530Z adding 'functorch/dim/magic_trace.py' 2024-06-26T05:43:09.0095910Z adding 'functorch/dim/op_properties.py' 2024-06-26T05:43:09.0101280Z adding 'functorch/dim/reference.py' 2024-06-26T05:43:09.0102510Z adding 'functorch/dim/tree_map.py' 2024-06-26T05:43:09.0103880Z adding 'functorch/dim/wrap_type.py' 2024-06-26T05:43:09.0105140Z adding 'functorch/einops/__init__.py' 2024-06-26T05:43:09.0108210Z adding 'functorch/einops/_parsing.py' 2024-06-26T05:43:09.0110630Z adding 'functorch/einops/rearrange.py' 2024-06-26T05:43:09.0111970Z adding 'functorch/experimental/__init__.py' 2024-06-26T05:43:09.0113160Z adding 'functorch/experimental/control_flow.py' 2024-06-26T05:43:09.0113930Z adding 'functorch/experimental/ops.py' 2024-06-26T05:43:09.0118730Z adding 'torch/_C.cpython-39-darwin.so' 2024-06-26T05:43:09.0120110Z adding 'torch/_VF.py' 2024-06-26T05:43:09.0274700Z adding 'torch/_VF.pyi' 2024-06-26T05:43:09.0281030Z adding 'torch/__config__.py' 2024-06-26T05:43:09.0282450Z adding 'torch/__future__.py' 2024-06-26T05:43:09.0303460Z adding 'torch/__init__.py' 2024-06-26T05:43:09.0308360Z adding 'torch/_appdirs.py' 2024-06-26T05:43:09.0309710Z adding 'torch/_classes.py' 2024-06-26T05:43:09.0310870Z adding 'torch/_compile.py' 2024-06-26T05:43:09.0313650Z adding 'torch/_custom_ops.py' 2024-06-26T05:43:09.0315040Z adding 'torch/_deploy.py' 2024-06-26T05:43:09.0321820Z adding 'torch/_guards.py' 2024-06-26T05:43:09.0335160Z adding 'torch/_jit_internal.py' 2024-06-26T05:43:09.0336920Z adding 'torch/_linalg_utils.py' 2024-06-26T05:43:09.0346470Z adding 'torch/_lobpcg.py' 2024-06-26T05:43:09.0349230Z adding 'torch/_lowrank.py' 2024-06-26T05:43:09.0389140Z adding 'torch/_meta_registrations.py' 2024-06-26T05:43:09.0391780Z adding 'torch/_namedtensor_internals.py' 2024-06-26T05:43:09.0403570Z adding 'torch/_ops.py' 2024-06-26T05:43:09.0405910Z adding 'torch/_python_dispatcher.py' 2024-06-26T05:43:09.0407060Z adding 'torch/_size_docs.py' 2024-06-26T05:43:09.0408670Z adding 'torch/_sources.py' 2024-06-26T05:43:09.0409840Z adding 'torch/_storage_docs.py' 2024-06-26T05:43:09.0410480Z adding 'torch/_streambase.py' 2024-06-26T05:43:09.0423050Z adding 'torch/_tensor.py' 2024-06-26T05:43:09.0450290Z adding 'torch/_tensor_docs.py' 2024-06-26T05:43:09.0456400Z adding 'torch/_tensor_str.py' 2024-06-26T05:43:09.0543780Z adding 'torch/_torch_docs.py' 2024-06-26T05:43:09.0554020Z adding 'torch/_utils.py' 2024-06-26T05:43:09.0556620Z adding 'torch/_utils_internal.py' 2024-06-26T05:43:09.0559170Z adding 'torch/_vmap_internals.py' 2024-06-26T05:43:09.0562470Z adding 'torch/_weights_only_unpickler.py' 2024-06-26T05:43:09.0581930Z adding 'torch/functional.py' 2024-06-26T05:43:09.0589590Z adding 'torch/hub.py' 2024-06-26T05:43:09.0598380Z adding 'torch/library.py' 2024-06-26T05:43:09.0615670Z adding 'torch/overrides.py' 2024-06-26T05:43:09.0616970Z adding 'torch/py.typed' 2024-06-26T05:43:09.0619070Z adding 'torch/quasirandom.py' 2024-06-26T05:43:09.0621220Z adding 'torch/random.py' 2024-06-26T05:43:09.0622400Z adding 'torch/return_types.py' 2024-06-26T05:43:09.0624030Z adding 'torch/return_types.pyi' 2024-06-26T05:43:09.0639240Z adding 'torch/serialization.py' 2024-06-26T05:43:09.0647800Z adding 'torch/storage.py' 2024-06-26T05:43:09.0649350Z adding 'torch/torch_version.py' 2024-06-26T05:43:09.0650650Z adding 'torch/types.py' 2024-06-26T05:43:09.0651330Z adding 'torch/version.py' 2024-06-26T05:43:09.0806440Z adding 'torch/_C/_VariableFunctions.pyi' 2024-06-26T05:43:09.0870910Z adding 'torch/_C/__init__.pyi' 2024-06-26T05:43:09.0873870Z adding 'torch/_C/_aoti.pyi' 2024-06-26T05:43:09.0875330Z adding 'torch/_C/_autograd.pyi' 2024-06-26T05:43:09.0875950Z adding 'torch/_C/_cpu.pyi' 2024-06-26T05:43:09.0877220Z adding 'torch/_C/_cudnn.pyi' 2024-06-26T05:43:09.0877790Z adding 'torch/_C/_distributed_autograd.pyi' 2024-06-26T05:43:09.0881570Z adding 'torch/_C/_distributed_c10d.pyi' 2024-06-26T05:43:09.0883300Z adding 'torch/_C/_distributed_rpc.pyi' 2024-06-26T05:43:09.0884050Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2024-06-26T05:43:09.0885250Z adding 'torch/_C/_functions.pyi' 2024-06-26T05:43:09.0886210Z adding 'torch/_C/_functorch.pyi' 2024-06-26T05:43:09.0886850Z adding 'torch/_C/_itt.pyi' 2024-06-26T05:43:09.0888100Z adding 'torch/_C/_lazy.pyi' 2024-06-26T05:43:09.0888580Z adding 'torch/_C/_lazy_ts_backend.pyi' 2024-06-26T05:43:09.0889810Z adding 'torch/_C/_monitor.pyi' 2024-06-26T05:43:09.0891100Z adding 'torch/_C/_nn.pyi' 2024-06-26T05:43:09.0891690Z adding 'torch/_C/_nvtx.pyi' 2024-06-26T05:43:09.0892760Z adding 'torch/_C/_onnx.pyi' 2024-06-26T05:43:09.0894550Z adding 'torch/_C/_profiler.pyi' 2024-06-26T05:43:09.0895110Z adding 'torch/_C/_verbose.pyi' 2024-06-26T05:43:09.0896680Z adding 'torch/_awaits/__init__.py' 2024-06-26T05:43:09.0897540Z adding 'torch/_custom_op/__init__.py' 2024-06-26T05:43:09.0900440Z adding 'torch/_custom_op/autograd.py' 2024-06-26T05:43:09.0902620Z adding 'torch/_custom_op/functional.py' 2024-06-26T05:43:09.0910160Z adding 'torch/_custom_op/impl.py' 2024-06-26T05:43:09.0913860Z adding 'torch/_decomp/__init__.py' 2024-06-26T05:43:09.0950520Z adding 'torch/_decomp/decompositions.py' 2024-06-26T05:43:09.0954040Z adding 'torch/_decomp/decompositions_for_jvp.py' 2024-06-26T05:43:09.0956310Z adding 'torch/_decomp/decompositions_for_rng.py' 2024-06-26T05:43:09.0957030Z adding 'torch/_dispatch/__init__.py' 2024-06-26T05:43:09.0959180Z adding 'torch/_dispatch/python.py' 2024-06-26T05:43:09.0960980Z adding 'torch/_dynamo/__init__.py' 2024-06-26T05:43:09.0962860Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2024-06-26T05:43:09.0964900Z adding 'torch/_dynamo/bytecode_analysis.py' 2024-06-26T05:43:09.0976490Z adding 'torch/_dynamo/bytecode_transformation.py' 2024-06-26T05:43:09.0978760Z adding 'torch/_dynamo/cache_size.py' 2024-06-26T05:43:09.0979920Z adding 'torch/_dynamo/callback.py' 2024-06-26T05:43:09.0980550Z adding 'torch/_dynamo/code_context.py' 2024-06-26T05:43:09.0984310Z adding 'torch/_dynamo/codegen.py' 2024-06-26T05:43:09.0987560Z adding 'torch/_dynamo/compiled_autograd.py' 2024-06-26T05:43:09.0990550Z adding 'torch/_dynamo/comptime.py' 2024-06-26T05:43:09.0995530Z adding 'torch/_dynamo/config.py' 2024-06-26T05:43:09.1004200Z adding 'torch/_dynamo/convert_frame.py' 2024-06-26T05:43:09.1005590Z adding 'torch/_dynamo/create_parameter_op.py' 2024-06-26T05:43:09.1006250Z adding 'torch/_dynamo/current_scope_id.py' 2024-06-26T05:43:09.1012600Z adding 'torch/_dynamo/debug_utils.py' 2024-06-26T05:43:09.1015700Z adding 'torch/_dynamo/decorators.py' 2024-06-26T05:43:09.1018120Z adding 'torch/_dynamo/device_interface.py' 2024-06-26T05:43:09.1031560Z adding 'torch/_dynamo/eval_frame.py' 2024-06-26T05:43:09.1034590Z adding 'torch/_dynamo/exc.py' 2024-06-26T05:43:09.1036070Z adding 'torch/_dynamo/external_utils.py' 2024-06-26T05:43:09.1037240Z adding 'torch/_dynamo/funcname_cache.py' 2024-06-26T05:43:09.1061510Z adding 'torch/_dynamo/guards.py' 2024-06-26T05:43:09.1062990Z adding 'torch/_dynamo/hooks.py' 2024-06-26T05:43:09.1064210Z adding 'torch/_dynamo/logging.py' 2024-06-26T05:43:09.1065780Z adding 'torch/_dynamo/mutation_guard.py' 2024-06-26T05:43:09.1086480Z adding 'torch/_dynamo/output_graph.py' 2024-06-26T05:43:09.1088070Z adding 'torch/_dynamo/polyfill.py' 2024-06-26T05:43:09.1089610Z adding 'torch/_dynamo/profiler.py' 2024-06-26T05:43:09.1090970Z adding 'torch/_dynamo/replay_record.py' 2024-06-26T05:43:09.1096440Z adding 'torch/_dynamo/resume_execution.py' 2024-06-26T05:43:09.1102050Z adding 'torch/_dynamo/side_effects.py' 2024-06-26T05:43:09.1105660Z adding 'torch/_dynamo/source.py' 2024-06-26T05:43:09.1131440Z adding 'torch/_dynamo/symbolic_convert.py' 2024-06-26T05:43:09.1133190Z adding 'torch/_dynamo/tensor_version_op.py' 2024-06-26T05:43:09.1134480Z adding 'torch/_dynamo/test_case.py' 2024-06-26T05:43:09.1136970Z adding 'torch/_dynamo/test_minifier_common.py' 2024-06-26T05:43:09.1139740Z adding 'torch/_dynamo/testing.py' 2024-06-26T05:43:09.1162110Z adding 'torch/_dynamo/trace_rules.py' 2024-06-26T05:43:09.1164080Z adding 'torch/_dynamo/types.py' 2024-06-26T05:43:09.1186140Z adding 'torch/_dynamo/utils.py' 2024-06-26T05:43:09.1187680Z adding 'torch/_dynamo/backends/__init__.py' 2024-06-26T05:43:09.1189250Z adding 'torch/_dynamo/backends/common.py' 2024-06-26T05:43:09.1191470Z adding 'torch/_dynamo/backends/cudagraphs.py' 2024-06-26T05:43:09.1194090Z adding 'torch/_dynamo/backends/debugging.py' 2024-06-26T05:43:09.1201290Z adding 'torch/_dynamo/backends/distributed.py' 2024-06-26T05:43:09.1202480Z adding 'torch/_dynamo/backends/inductor.py' 2024-06-26T05:43:09.1203650Z adding 'torch/_dynamo/backends/onnxrt.py' 2024-06-26T05:43:09.1205040Z adding 'torch/_dynamo/backends/registry.py' 2024-06-26T05:43:09.1205730Z adding 'torch/_dynamo/backends/tensorrt.py' 2024-06-26T05:43:09.1207030Z adding 'torch/_dynamo/backends/torchxla.py' 2024-06-26T05:43:09.1209030Z adding 'torch/_dynamo/backends/tvm.py' 2024-06-26T05:43:09.1210200Z adding 'torch/_dynamo/repro/__init__.py' 2024-06-26T05:43:09.1217120Z adding 'torch/_dynamo/repro/after_aot.py' 2024-06-26T05:43:09.1221310Z adding 'torch/_dynamo/repro/after_dynamo.py' 2024-06-26T05:43:09.1223220Z adding 'torch/_dynamo/variables/__init__.py' 2024-06-26T05:43:09.1225970Z adding 'torch/_dynamo/variables/base.py' 2024-06-26T05:43:09.1249390Z adding 'torch/_dynamo/variables/builder.py' 2024-06-26T05:43:09.1264260Z adding 'torch/_dynamo/variables/builtin.py' 2024-06-26T05:43:09.1266870Z adding 'torch/_dynamo/variables/constant.py' 2024-06-26T05:43:09.1272660Z adding 'torch/_dynamo/variables/ctx_manager.py' 2024-06-26T05:43:09.1279130Z adding 'torch/_dynamo/variables/dicts.py' 2024-06-26T05:43:09.1282110Z adding 'torch/_dynamo/variables/distributed.py' 2024-06-26T05:43:09.1290620Z adding 'torch/_dynamo/variables/functions.py' 2024-06-26T05:43:09.1304960Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2024-06-26T05:43:09.1307440Z adding 'torch/_dynamo/variables/iter.py' 2024-06-26T05:43:09.1309170Z adding 'torch/_dynamo/variables/lazy.py' 2024-06-26T05:43:09.1314820Z adding 'torch/_dynamo/variables/lists.py' 2024-06-26T05:43:09.1323490Z adding 'torch/_dynamo/variables/misc.py' 2024-06-26T05:43:09.1331790Z adding 'torch/_dynamo/variables/nn_module.py' 2024-06-26T05:43:09.1335170Z adding 'torch/_dynamo/variables/optimizer.py' 2024-06-26T05:43:09.1336630Z adding 'torch/_dynamo/variables/script_object.py' 2024-06-26T05:43:09.1337940Z adding 'torch/_dynamo/variables/sdpa.py' 2024-06-26T05:43:09.1348030Z adding 'torch/_dynamo/variables/tensor.py' 2024-06-26T05:43:09.1356290Z adding 'torch/_dynamo/variables/torch.py' 2024-06-26T05:43:09.1359260Z adding 'torch/_dynamo/variables/torch_function.py' 2024-06-26T05:43:09.1368050Z adding 'torch/_dynamo/variables/user_defined.py' 2024-06-26T05:43:09.1372120Z adding 'torch/_export/__init__.py' 2024-06-26T05:43:09.1378170Z adding 'torch/_export/converter.py' 2024-06-26T05:43:09.1379540Z adding 'torch/_export/error.py' 2024-06-26T05:43:09.1384080Z adding 'torch/_export/exported_program.py' 2024-06-26T05:43:09.1385310Z adding 'torch/_export/non_strict_utils.py' 2024-06-26T05:43:09.1388760Z adding 'torch/_export/pass_base.py' 2024-06-26T05:43:09.1390480Z adding 'torch/_export/tools.py' 2024-06-26T05:43:09.1395600Z adding 'torch/_export/utils.py' 2024-06-26T05:43:09.1399100Z adding 'torch/_export/verifier.py' 2024-06-26T05:43:09.1400650Z adding 'torch/_export/wrappers.py' 2024-06-26T05:43:09.1401870Z adding 'torch/_export/db/__init__.py' 2024-06-26T05:43:09.1403650Z adding 'torch/_export/db/case.py' 2024-06-26T05:43:09.1404830Z adding 'torch/_export/db/gen_example.py' 2024-06-26T05:43:09.1405290Z adding 'torch/_export/db/logging.py' 2024-06-26T05:43:09.1407180Z adding 'torch/_export/db/examples/__init__.py' 2024-06-26T05:43:09.1407970Z adding 'torch/_export/db/examples/assume_constant_result.py' 2024-06-26T05:43:09.1409250Z adding 'torch/_export/db/examples/autograd_function.py' 2024-06-26T05:43:09.1409930Z adding 'torch/_export/db/examples/class_method.py' 2024-06-26T05:43:09.1411310Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2024-06-26T05:43:09.1412170Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2024-06-26T05:43:09.1413610Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2024-06-26T05:43:09.1414280Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2024-06-26T05:43:09.1415550Z adding 'torch/_export/db/examples/cond_operands.py' 2024-06-26T05:43:09.1416310Z adding 'torch/_export/db/examples/cond_predicate.py' 2024-06-26T05:43:09.1417620Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2024-06-26T05:43:09.1418350Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2024-06-26T05:43:09.1419600Z adding 'torch/_export/db/examples/decorator.py' 2024-06-26T05:43:09.1420210Z adding 'torch/_export/db/examples/dictionary.py' 2024-06-26T05:43:09.1421450Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2024-06-26T05:43:09.1422100Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2024-06-26T05:43:09.1423450Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2024-06-26T05:43:09.1424020Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2024-06-26T05:43:09.1425270Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2024-06-26T05:43:09.1425950Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2024-06-26T05:43:09.1427220Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2024-06-26T05:43:09.1427890Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2024-06-26T05:43:09.1429140Z adding 'torch/_export/db/examples/list_contains.py' 2024-06-26T05:43:09.1429820Z adding 'torch/_export/db/examples/list_unpack.py' 2024-06-26T05:43:09.1431090Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2024-06-26T05:43:09.1431720Z adding 'torch/_export/db/examples/nested_function.py' 2024-06-26T05:43:09.1433020Z adding 'torch/_export/db/examples/null_context_manager.py' 2024-06-26T05:43:09.1433620Z adding 'torch/_export/db/examples/optional_input.py' 2024-06-26T05:43:09.1434950Z adding 'torch/_export/db/examples/pytree_flatten.py' 2024-06-26T05:43:09.1435530Z adding 'torch/_export/db/examples/scalar_output.py' 2024-06-26T05:43:09.1436790Z adding 'torch/_export/db/examples/specialized_attribute.py' 2024-06-26T05:43:09.1437430Z adding 'torch/_export/db/examples/static_for_loop.py' 2024-06-26T05:43:09.1438680Z adding 'torch/_export/db/examples/static_if.py' 2024-06-26T05:43:09.1439290Z adding 'torch/_export/db/examples/tensor_setattr.py' 2024-06-26T05:43:09.1440510Z adding 'torch/_export/db/examples/torch_sym_min.py' 2024-06-26T05:43:09.1441200Z adding 'torch/_export/db/examples/type_reflection_method.py' 2024-06-26T05:43:09.1442490Z adding 'torch/_export/db/examples/user_input_mutation.py' 2024-06-26T05:43:09.1443140Z adding 'torch/_export/pass_infra/__init__.py' 2024-06-26T05:43:09.1444440Z adding 'torch/_export/pass_infra/node_metadata.py' 2024-06-26T05:43:09.1445200Z adding 'torch/_export/pass_infra/proxy_value.py' 2024-06-26T05:43:09.1446570Z adding 'torch/_export/passes/__init__.py' 2024-06-26T05:43:09.1447960Z adding 'torch/_export/passes/_node_metadata_hook.py' 2024-06-26T05:43:09.1450450Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2024-06-26T05:43:09.1451910Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2024-06-26T05:43:09.1454590Z adding 'torch/_export/passes/constant_folding.py' 2024-06-26T05:43:09.1456140Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2024-06-26T05:43:09.1458950Z adding 'torch/_export/passes/lift_constants_pass.py' 2024-06-26T05:43:09.1460210Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2024-06-26T05:43:09.1462120Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2024-06-26T05:43:09.1463530Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2024-06-26T05:43:09.1464270Z adding 'torch/_export/serde/__init__.py' 2024-06-26T05:43:09.1466820Z adding 'torch/_export/serde/schema.py' 2024-06-26T05:43:09.1468750Z adding 'torch/_export/serde/schema.yaml' 2024-06-26T05:43:09.1471120Z adding 'torch/_export/serde/schema_check.py' 2024-06-26T05:43:09.1494840Z adding 'torch/_export/serde/serialize.py' 2024-06-26T05:43:09.1496680Z adding 'torch/_export/serde/union.py' 2024-06-26T05:43:09.1497410Z adding 'torch/_export/serde/upgrade.py' 2024-06-26T05:43:09.1498960Z adding 'torch/_functorch/__init__.py' 2024-06-26T05:43:09.1513530Z adding 'torch/_functorch/aot_autograd.py' 2024-06-26T05:43:09.1517830Z adding 'torch/_functorch/apis.py' 2024-06-26T05:43:09.1523660Z adding 'torch/_functorch/autograd_function.py' 2024-06-26T05:43:09.1524870Z adding 'torch/_functorch/batch_norm_replacement.py' 2024-06-26T05:43:09.1526810Z adding 'torch/_functorch/benchmark_utils.py' 2024-06-26T05:43:09.1528420Z adding 'torch/_functorch/compile_utils.py' 2024-06-26T05:43:09.1531670Z adding 'torch/_functorch/compilers.py' 2024-06-26T05:43:09.1534360Z adding 'torch/_functorch/config.py' 2024-06-26T05:43:09.1535970Z adding 'torch/_functorch/deprecated.py' 2024-06-26T05:43:09.1551690Z adding 'torch/_functorch/eager_transforms.py' 2024-06-26T05:43:09.1554660Z adding 'torch/_functorch/functional_call.py' 2024-06-26T05:43:09.1559140Z adding 'torch/_functorch/fx_minifier.py' 2024-06-26T05:43:09.1563730Z adding 'torch/_functorch/make_functional.py' 2024-06-26T05:43:09.1580530Z adding 'torch/_functorch/partitioners.py' 2024-06-26T05:43:09.1583340Z adding 'torch/_functorch/pyfunctorch.py' 2024-06-26T05:43:09.1584490Z adding 'torch/_functorch/python_key.py' 2024-06-26T05:43:09.1588940Z adding 'torch/_functorch/pytree_hacks.py' 2024-06-26T05:43:09.1590350Z adding 'torch/_functorch/top_operators_github_usage.py' 2024-06-26T05:43:09.1591050Z adding 'torch/_functorch/utils.py' 2024-06-26T05:43:09.1595750Z adding 'torch/_functorch/vmap.py' 2024-06-26T05:43:09.1597210Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2024-06-26T05:43:09.1601680Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2024-06-26T05:43:09.1610580Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2024-06-26T05:43:09.1613570Z adding 'torch/_functorch/_aot_autograd/dispatch_and_compile_graph.py' 2024-06-26T05:43:09.1618190Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2024-06-26T05:43:09.1622920Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2024-06-26T05:43:09.1628850Z adding 'torch/_functorch/_aot_autograd/jit_compile_runtime_wrappers.py' 2024-06-26T05:43:09.1630540Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2024-06-26T05:43:09.1650420Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2024-06-26T05:43:09.1658980Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2024-06-26T05:43:09.1662550Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2024-06-26T05:43:09.1671540Z adding 'torch/_functorch/_aot_autograd/traced_function_transforms.py' 2024-06-26T05:43:09.1674550Z adding 'torch/_functorch/_aot_autograd/utils.py' 2024-06-26T05:43:09.1675980Z adding 'torch/_higher_order_ops/__init__.py' 2024-06-26T05:43:09.1678150Z adding 'torch/_higher_order_ops/associative_scan.py' 2024-06-26T05:43:09.1680680Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2024-06-26T05:43:09.1684060Z adding 'torch/_higher_order_ops/cond.py' 2024-06-26T05:43:09.1686480Z adding 'torch/_higher_order_ops/effects.py' 2024-06-26T05:43:09.1690870Z adding 'torch/_higher_order_ops/flex_attention.py' 2024-06-26T05:43:09.1693890Z adding 'torch/_higher_order_ops/map.py' 2024-06-26T05:43:09.1695760Z adding 'torch/_higher_order_ops/out_dtype.py' 2024-06-26T05:43:09.1697090Z adding 'torch/_higher_order_ops/strict_mode.py' 2024-06-26T05:43:09.1698740Z adding 'torch/_higher_order_ops/torchbind.py' 2024-06-26T05:43:09.1704600Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2024-06-26T05:43:09.1706830Z adding 'torch/_higher_order_ops/utils.py' 2024-06-26T05:43:09.1709390Z adding 'torch/_higher_order_ops/while_loop.py' 2024-06-26T05:43:09.1711760Z adding 'torch/_higher_order_ops/wrap.py' 2024-06-26T05:43:09.1714010Z adding 'torch/_inductor/__init__.py' 2024-06-26T05:43:09.1716270Z adding 'torch/_inductor/async_compile.py' 2024-06-26T05:43:09.1721950Z adding 'torch/_inductor/autotune_process.py' 2024-06-26T05:43:09.1723900Z adding 'torch/_inductor/bounds.py' 2024-06-26T05:43:09.1753840Z adding 'torch/_inductor/codecache.py' 2024-06-26T05:43:09.1756780Z adding 'torch/_inductor/comm_analysis.py' 2024-06-26T05:43:09.1760230Z adding 'torch/_inductor/comms.py' 2024-06-26T05:43:09.1773840Z adding 'torch/_inductor/compile_fx.py' 2024-06-26T05:43:09.1783040Z adding 'torch/_inductor/config.py' 2024-06-26T05:43:09.1785710Z adding 'torch/_inductor/constant_folding.py' 2024-06-26T05:43:09.1793300Z adding 'torch/_inductor/cpp_builder.py' 2024-06-26T05:43:09.1815790Z adding 'torch/_inductor/cudagraph_trees.py' 2024-06-26T05:43:09.1818030Z adding 'torch/_inductor/cudagraph_utils.py' 2024-06-26T05:43:09.1822880Z adding 'torch/_inductor/debug.py' 2024-06-26T05:43:09.1828380Z adding 'torch/_inductor/decomposition.py' 2024-06-26T05:43:09.1833200Z adding 'torch/_inductor/dependencies.py' 2024-06-26T05:43:09.1834580Z adding 'torch/_inductor/exc.py' 2024-06-26T05:43:09.1837140Z adding 'torch/_inductor/freezing.py' 2024-06-26T05:43:09.1839580Z adding 'torch/_inductor/fx_utils.py' 2024-06-26T05:43:09.1856220Z adding 'torch/_inductor/graph.py' 2024-06-26T05:43:09.1857650Z adding 'torch/_inductor/hooks.py' 2024-06-26T05:43:09.1860760Z adding 'torch/_inductor/index_propagation.py' 2024-06-26T05:43:09.1862410Z adding 'torch/_inductor/inductor_prims.py' 2024-06-26T05:43:09.1914600Z adding 'torch/_inductor/ir.py' 2024-06-26T05:43:09.1918030Z adding 'torch/_inductor/jagged_lowerings.py' 2024-06-26T05:43:09.1963350Z adding 'torch/_inductor/lowering.py' 2024-06-26T05:43:09.1967330Z adding 'torch/_inductor/metrics.py' 2024-06-26T05:43:09.1974150Z adding 'torch/_inductor/mkldnn_ir.py' 2024-06-26T05:43:09.1980580Z adding 'torch/_inductor/mkldnn_lowerings.py' 2024-06-26T05:43:09.1986350Z adding 'torch/_inductor/ops_handler.py' 2024-06-26T05:43:09.1988050Z adding 'torch/_inductor/optimize_indexing.py' 2024-06-26T05:43:09.2004150Z adding 'torch/_inductor/pattern_matcher.py' 2024-06-26T05:43:09.2005560Z adding 'torch/_inductor/quantized_lowerings.py' 2024-06-26T05:43:09.2006750Z adding 'torch/_inductor/remote_cache.py' 2024-06-26T05:43:09.2032480Z adding 'torch/_inductor/scheduler.py' 2024-06-26T05:43:09.2045650Z adding 'torch/_inductor/select_algorithm.py' 2024-06-26T05:43:09.2052890Z adding 'torch/_inductor/sizevars.py' 2024-06-26T05:43:09.2054710Z adding 'torch/_inductor/subgraph_lowering.py' 2024-06-26T05:43:09.2055860Z adding 'torch/_inductor/test_case.py' 2024-06-26T05:43:09.2056730Z adding 'torch/_inductor/test_operators.py' 2024-06-26T05:43:09.2070370Z adding 'torch/_inductor/utils.py' 2024-06-26T05:43:09.2073440Z adding 'torch/_inductor/virtualized.py' 2024-06-26T05:43:09.2076070Z adding 'torch/_inductor/wrapper_benchmark.py' 2024-06-26T05:43:09.2077410Z adding 'torch/_inductor/codegen/__init__.py' 2024-06-26T05:43:09.2078650Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2024-06-26T05:43:09.2080020Z adding 'torch/_inductor/codegen/codegen_device_driver.py' 2024-06-26T05:43:09.2093930Z adding 'torch/_inductor/codegen/common.py' 2024-06-26T05:43:09.2129790Z adding 'torch/_inductor/codegen/cpp.py' 2024-06-26T05:43:09.2135440Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2024-06-26T05:43:09.2139990Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2024-06-26T05:43:09.2143300Z adding 'torch/_inductor/codegen/cpp_prefix.h' 2024-06-26T05:43:09.2144980Z adding 'torch/_inductor/codegen/cpp_template.py' 2024-06-26T05:43:09.2148410Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2024-06-26T05:43:09.2151780Z adding 'torch/_inductor/codegen/cpp_utils.py' 2024-06-26T05:43:09.2172720Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2024-06-26T05:43:09.2177440Z adding 'torch/_inductor/codegen/cpp_wrapper_cuda.py' 2024-06-26T05:43:09.2177870Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2024-06-26T05:43:09.2182280Z adding 'torch/_inductor/codegen/memory_planning.py' 2024-06-26T05:43:09.2185890Z adding 'torch/_inductor/codegen/multi_kernel.py' 2024-06-26T05:43:09.2201400Z adding 'torch/_inductor/codegen/simd.py' 2024-06-26T05:43:09.2226490Z adding 'torch/_inductor/codegen/triton.py' 2024-06-26T05:43:09.2229280Z adding 'torch/_inductor/codegen/triton_foreach.py' 2024-06-26T05:43:09.2231210Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2024-06-26T05:43:09.2232990Z adding 'torch/_inductor/codegen/triton_utils.py' 2024-06-26T05:43:09.2249910Z adding 'torch/_inductor/codegen/wrapper.py' 2024-06-26T05:43:09.2252090Z adding 'torch/_inductor/codegen/aoti_runtime/implementation.cpp' 2024-06-26T05:43:09.2256070Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2024-06-26T05:43:09.2257770Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2024-06-26T05:43:09.2259700Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2024-06-26T05:43:09.2261110Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2024-06-26T05:43:09.2264500Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2024-06-26T05:43:09.2267030Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2024-06-26T05:43:09.2270080Z adding 'torch/_inductor/codegen/cuda/cutlass_epilogue_gen.py' 2024-06-26T05:43:09.2273330Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2024-06-26T05:43:09.2274780Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2024-06-26T05:43:09.2283700Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2024-06-26T05:43:09.2285300Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py' 2024-06-26T05:43:09.2287680Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py' 2024-06-26T05:43:09.2288580Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2024-06-26T05:43:09.2290080Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2024-06-26T05:43:09.2291330Z adding 'torch/_inductor/compile_worker/__init__.py' 2024-06-26T05:43:09.2292620Z adding 'torch/_inductor/compile_worker/__main__.py' 2024-06-26T05:43:09.2295600Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2024-06-26T05:43:09.2296900Z adding 'torch/_inductor/compile_worker/watchdog.py' 2024-06-26T05:43:09.2298310Z adding 'torch/_inductor/fx_passes/__init__.py' 2024-06-26T05:43:09.2301030Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2024-06-26T05:43:09.2306170Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2024-06-26T05:43:09.2308000Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2024-06-26T05:43:09.2309470Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2024-06-26T05:43:09.2312350Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2024-06-26T05:43:09.2314460Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2024-06-26T05:43:09.2319370Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2024-06-26T05:43:09.2328080Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2024-06-26T05:43:09.2332360Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2024-06-26T05:43:09.2335850Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2024-06-26T05:43:09.2337690Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2024-06-26T05:43:09.2345950Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2024-06-26T05:43:09.2348280Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2024-06-26T05:43:09.2352870Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2024-06-26T05:43:09.2361240Z adding 'torch/_inductor/fx_passes/post_grad.py' 2024-06-26T05:43:09.2366790Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2024-06-26T05:43:09.2382650Z adding 'torch/_inductor/fx_passes/quantization.py' 2024-06-26T05:43:09.2388030Z adding 'torch/_inductor/fx_passes/reinplace.py' 2024-06-26T05:43:09.2389980Z adding 'torch/_inductor/fx_passes/replace_random.py' 2024-06-26T05:43:09.2403310Z adding 'torch/_inductor/fx_passes/split_cat.py' 2024-06-26T05:43:09.2405130Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2024-06-26T05:43:09.2407020Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2024-06-26T05:43:09.2409040Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2024-06-26T05:43:09.2411100Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2024-06-26T05:43:09.2413180Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2024-06-26T05:43:09.2414880Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2024-06-26T05:43:09.2416870Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2024-06-26T05:43:09.2419000Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2024-06-26T05:43:09.2422340Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2024-06-26T05:43:09.2424680Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2024-06-26T05:43:09.2427470Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2024-06-26T05:43:09.2429610Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2024-06-26T05:43:09.2431450Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2024-06-26T05:43:09.2433340Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2024-06-26T05:43:09.2435250Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2024-06-26T05:43:09.2437010Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2024-06-26T05:43:09.2438860Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2024-06-26T05:43:09.2440930Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2024-06-26T05:43:09.2442840Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2024-06-26T05:43:09.2444790Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2024-06-26T05:43:09.2446190Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2024-06-26T05:43:09.2447540Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2024-06-26T05:43:09.2448400Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2024-06-26T05:43:09.2449980Z adding 'torch/_inductor/kernel/__init__.py' 2024-06-26T05:43:09.2452210Z adding 'torch/_inductor/kernel/bmm.py' 2024-06-26T05:43:09.2456100Z adding 'torch/_inductor/kernel/conv.py' 2024-06-26T05:43:09.2462530Z adding 'torch/_inductor/kernel/flex_attention.py' 2024-06-26T05:43:09.2466740Z adding 'torch/_inductor/kernel/mm.py' 2024-06-26T05:43:09.2469630Z adding 'torch/_inductor/kernel/mm_common.py' 2024-06-26T05:43:09.2472070Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2024-06-26T05:43:09.2473740Z adding 'torch/_inductor/kernel/unpack_mixed_mm.py' 2024-06-26T05:43:09.2475050Z adding 'torch/_inductor/runtime/__init__.py' 2024-06-26T05:43:09.2476510Z adding 'torch/_inductor/runtime/compile_tasks.py' 2024-06-26T05:43:09.2479270Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2024-06-26T05:43:09.2485780Z adding 'torch/_inductor/runtime/hints.py' 2024-06-26T05:43:09.2486340Z adding 'torch/_inductor/runtime/runtime_utils.py' 2024-06-26T05:43:09.2486730Z adding 'torch/_inductor/runtime/triton_helpers.py' 2024-06-26T05:43:09.2499060Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2024-06-26T05:43:09.2500990Z adding 'torch/_lazy/__init__.py' 2024-06-26T05:43:09.2502930Z adding 'torch/_lazy/closure.py' 2024-06-26T05:43:09.2504180Z adding 'torch/_lazy/computation.py' 2024-06-26T05:43:09.2505340Z adding 'torch/_lazy/config.py' 2024-06-26T05:43:09.2506510Z adding 'torch/_lazy/debug.py' 2024-06-26T05:43:09.2507730Z adding 'torch/_lazy/device_context.py' 2024-06-26T05:43:09.2510440Z adding 'torch/_lazy/extract_compiled_graph.py' 2024-06-26T05:43:09.2511590Z adding 'torch/_lazy/ir_cache.py' 2024-06-26T05:43:09.2512760Z adding 'torch/_lazy/metrics.py' 2024-06-26T05:43:09.2514010Z adding 'torch/_lazy/tensor_factory_functions.py' 2024-06-26T05:43:09.2515180Z adding 'torch/_lazy/ts_backend.py' 2024-06-26T05:43:09.2516400Z adding 'torch/_library/__init__.py' 2024-06-26T05:43:09.2518930Z adding 'torch/_library/autograd.py' 2024-06-26T05:43:09.2523940Z adding 'torch/_library/custom_ops.py' 2024-06-26T05:43:09.2527010Z adding 'torch/_library/fake_class_registry.py' 2024-06-26T05:43:09.2529380Z adding 'torch/_library/fake_impl.py' 2024-06-26T05:43:09.2531620Z adding 'torch/_library/infer_schema.py' 2024-06-26T05:43:09.2533020Z adding 'torch/_library/simple_registry.py' 2024-06-26T05:43:09.2535450Z adding 'torch/_library/utils.py' 2024-06-26T05:43:09.2536950Z adding 'torch/_logging/__init__.py' 2024-06-26T05:43:09.2546550Z adding 'torch/_logging/_internal.py' 2024-06-26T05:43:09.2548390Z adding 'torch/_logging/_registrations.py' 2024-06-26T05:43:09.2549840Z adding 'torch/_logging/structured.py' 2024-06-26T05:43:09.2551340Z adding 'torch/_numpy/__init__.py' 2024-06-26T05:43:09.2552790Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2024-06-26T05:43:09.2556120Z adding 'torch/_numpy/_casting_dicts.py' 2024-06-26T05:43:09.2559250Z adding 'torch/_numpy/_dtypes.py' 2024-06-26T05:43:09.2561480Z adding 'torch/_numpy/_dtypes_impl.py' 2024-06-26T05:43:09.2562920Z adding 'torch/_numpy/_funcs.py' 2024-06-26T05:43:09.2576300Z adding 'torch/_numpy/_funcs_impl.py' 2024-06-26T05:43:09.2577830Z adding 'torch/_numpy/_getlimits.py' 2024-06-26T05:43:09.2581940Z adding 'torch/_numpy/_ndarray.py' 2024-06-26T05:43:09.2584450Z adding 'torch/_numpy/_normalizations.py' 2024-06-26T05:43:09.2587240Z adding 'torch/_numpy/_reductions_impl.py' 2024-06-26T05:43:09.2589520Z adding 'torch/_numpy/_ufuncs.py' 2024-06-26T05:43:09.2590870Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2024-06-26T05:43:09.2593460Z adding 'torch/_numpy/_util.py' 2024-06-26T05:43:09.2594790Z adding 'torch/_numpy/fft.py' 2024-06-26T05:43:09.2596620Z adding 'torch/_numpy/linalg.py' 2024-06-26T05:43:09.2598440Z adding 'torch/_numpy/random.py' 2024-06-26T05:43:09.2599830Z adding 'torch/_numpy/testing/__init__.py' 2024-06-26T05:43:09.2616570Z adding 'torch/_numpy/testing/utils.py' 2024-06-26T05:43:09.2634370Z adding 'torch/_prims/__init__.py' 2024-06-26T05:43:09.2636790Z adding 'torch/_prims/context.py' 2024-06-26T05:43:09.2638300Z adding 'torch/_prims/debug_prims.py' 2024-06-26T05:43:09.2639710Z adding 'torch/_prims/executor.py' 2024-06-26T05:43:09.2642210Z adding 'torch/_prims/rng_prims.py' 2024-06-26T05:43:09.2657900Z adding 'torch/_prims_common/__init__.py' 2024-06-26T05:43:09.2662400Z adding 'torch/_prims_common/wrappers.py' 2024-06-26T05:43:09.2708510Z adding 'torch/_refs/__init__.py' 2024-06-26T05:43:09.2711710Z adding 'torch/_refs/_conversions.py' 2024-06-26T05:43:09.2715250Z adding 'torch/_refs/fft.py' 2024-06-26T05:43:09.2718440Z adding 'torch/_refs/linalg/__init__.py' 2024-06-26T05:43:09.2719790Z adding 'torch/_refs/nn/__init__.py' 2024-06-26T05:43:09.2727800Z adding 'torch/_refs/nn/functional/__init__.py' 2024-06-26T05:43:09.2730050Z adding 'torch/_refs/special/__init__.py' 2024-06-26T05:43:09.2731320Z adding 'torch/_strobelight/__init__.py' 2024-06-26T05:43:09.2734090Z adding 'torch/_strobelight/cli_function_profiler.py' 2024-06-26T05:43:09.2736200Z adding 'torch/_strobelight/compile_time_profiler.py' 2024-06-26T05:43:09.2737570Z adding 'torch/_subclasses/__init__.py' 2024-06-26T05:43:09.2745510Z adding 'torch/_subclasses/fake_impls.py' 2024-06-26T05:43:09.2766560Z adding 'torch/_subclasses/fake_tensor.py' 2024-06-26T05:43:09.2769130Z adding 'torch/_subclasses/fake_utils.py' 2024-06-26T05:43:09.2775940Z adding 'torch/_subclasses/functional_tensor.py' 2024-06-26T05:43:09.2792230Z adding 'torch/_subclasses/meta_utils.py' 2024-06-26T05:43:09.2795080Z adding 'torch/_subclasses/schema_check_mode.py' 2024-06-26T05:43:09.2796490Z adding 'torch/_vendor/__init__.py' 2024-06-26T05:43:09.2797960Z adding 'torch/_vendor/packaging/__init__.py' 2024-06-26T05:43:09.2799210Z adding 'torch/_vendor/packaging/_structures.py' 2024-06-26T05:43:09.2803010Z adding 'torch/_vendor/packaging/version.py' 2024-06-26T05:43:09.2804450Z adding 'torch/amp/__init__.py' 2024-06-26T05:43:09.2810150Z adding 'torch/amp/autocast_mode.py' 2024-06-26T05:43:09.2817200Z adding 'torch/amp/grad_scaler.py' 2024-06-26T05:43:09.2818740Z adding 'torch/ao/__init__.py' 2024-06-26T05:43:09.2820150Z adding 'torch/ao/nn/__init__.py' 2024-06-26T05:43:09.2821650Z adding 'torch/ao/nn/intrinsic/__init__.py' 2024-06-26T05:43:09.2823130Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2024-06-26T05:43:09.2824910Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2024-06-26T05:43:09.2826210Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2024-06-26T05:43:09.2827640Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2024-06-26T05:43:09.2832570Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2024-06-26T05:43:09.2834930Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2024-06-26T05:43:09.2839910Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2024-06-26T05:43:09.2840320Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2024-06-26T05:43:09.2840740Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2024-06-26T05:43:09.2841230Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2024-06-26T05:43:09.2841850Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2024-06-26T05:43:09.2842950Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2024-06-26T05:43:09.2844360Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2024-06-26T05:43:09.2845910Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2024-06-26T05:43:09.2847660Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2024-06-26T05:43:09.2849440Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2024-06-26T05:43:09.2850720Z adding 'torch/ao/nn/qat/__init__.py' 2024-06-26T05:43:09.2851940Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2024-06-26T05:43:09.2853190Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2024-06-26T05:43:09.2854480Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2024-06-26T05:43:09.2855780Z adding 'torch/ao/nn/qat/modules/__init__.py' 2024-06-26T05:43:09.2857890Z adding 'torch/ao/nn/qat/modules/conv.py' 2024-06-26T05:43:09.2859780Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2024-06-26T05:43:09.2861330Z adding 'torch/ao/nn/qat/modules/linear.py' 2024-06-26T05:43:09.2862590Z adding 'torch/ao/nn/quantizable/__init__.py' 2024-06-26T05:43:09.2863890Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2024-06-26T05:43:09.2868400Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2024-06-26T05:43:09.2872260Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2024-06-26T05:43:09.2873740Z adding 'torch/ao/nn/quantized/__init__.py' 2024-06-26T05:43:09.2878370Z adding 'torch/ao/nn/quantized/functional.py' 2024-06-26T05:43:09.2879780Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2024-06-26T05:43:09.2881150Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2024-06-26T05:43:09.2883510Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2024-06-26T05:43:09.2885550Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2024-06-26T05:43:09.2893660Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2024-06-26T05:43:09.2895940Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2024-06-26T05:43:09.2898500Z adding 'torch/ao/nn/quantized/modules/activation.py' 2024-06-26T05:43:09.2900130Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2024-06-26T05:43:09.2905490Z adding 'torch/ao/nn/quantized/modules/conv.py' 2024-06-26T05:43:09.2906930Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2024-06-26T05:43:09.2909640Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2024-06-26T05:43:09.2911800Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2024-06-26T05:43:09.2914880Z adding 'torch/ao/nn/quantized/modules/linear.py' 2024-06-26T05:43:09.2916680Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2024-06-26T05:43:09.2918040Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2024-06-26T05:43:09.2919790Z adding 'torch/ao/nn/quantized/modules/utils.py' 2024-06-26T05:43:09.2921160Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2024-06-26T05:43:09.2922550Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2024-06-26T05:43:09.2924660Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2024-06-26T05:43:09.2926170Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2024-06-26T05:43:09.2930420Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2024-06-26T05:43:09.2932070Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2024-06-26T05:43:09.2934710Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2024-06-26T05:43:09.2935970Z adding 'torch/ao/nn/sparse/__init__.py' 2024-06-26T05:43:09.2937290Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2024-06-26T05:43:09.2939510Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2024-06-26T05:43:09.2940750Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2024-06-26T05:43:09.2942150Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2024-06-26T05:43:09.2944100Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2024-06-26T05:43:09.2945290Z adding 'torch/ao/ns/__init__.py' 2024-06-26T05:43:09.2949260Z adding 'torch/ao/ns/_numeric_suite.py' 2024-06-26T05:43:09.2957310Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2024-06-26T05:43:09.2958750Z adding 'torch/ao/ns/fx/__init__.py' 2024-06-26T05:43:09.2963340Z adding 'torch/ao/ns/fx/graph_matcher.py' 2024-06-26T05:43:09.2971690Z adding 'torch/ao/ns/fx/graph_passes.py' 2024-06-26T05:43:09.2975200Z adding 'torch/ao/ns/fx/mappings.py' 2024-06-26T05:43:09.2985850Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2024-06-26T05:43:09.2987510Z adding 'torch/ao/ns/fx/ns_types.py' 2024-06-26T05:43:09.2989830Z adding 'torch/ao/ns/fx/pattern_utils.py' 2024-06-26T05:43:09.2992560Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2024-06-26T05:43:09.2996820Z adding 'torch/ao/ns/fx/utils.py' 2024-06-26T05:43:09.2999400Z adding 'torch/ao/ns/fx/weight_utils.py' 2024-06-26T05:43:09.3000890Z adding 'torch/ao/pruning/__init__.py' 2024-06-26T05:43:09.3002110Z adding 'torch/ao/pruning/_mappings.py' 2024-06-26T05:43:09.3003390Z adding 'torch/ao/pruning/_experimental/__init__.py' 2024-06-26T05:43:09.3004750Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2024-06-26T05:43:09.3009130Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2024-06-26T05:43:09.3010540Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2024-06-26T05:43:09.3012730Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2024-06-26T05:43:09.3014120Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2024-06-26T05:43:09.3017680Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2024-06-26T05:43:09.3020010Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2024-06-26T05:43:09.3021930Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2024-06-26T05:43:09.3022930Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2024-06-26T05:43:09.3024500Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2024-06-26T05:43:09.3026050Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2024-06-26T05:43:09.3027910Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2024-06-26T05:43:09.3029680Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2024-06-26T05:43:09.3030550Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2024-06-26T05:43:09.3033550Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2024-06-26T05:43:09.3035020Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2024-06-26T05:43:09.3039840Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2024-06-26T05:43:09.3040330Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2024-06-26T05:43:09.3041760Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2024-06-26T05:43:09.3043150Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2024-06-26T05:43:09.3044400Z adding 'torch/ao/pruning/scheduler/__init__.py' 2024-06-26T05:43:09.3046360Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2024-06-26T05:43:09.3048120Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2024-06-26T05:43:09.3049550Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2024-06-26T05:43:09.3050780Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2024-06-26T05:43:09.3054180Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2024-06-26T05:43:09.3055760Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2024-06-26T05:43:09.3057640Z adding 'torch/ao/pruning/sparsifier/utils.py' 2024-06-26T05:43:09.3060130Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2024-06-26T05:43:09.3062420Z adding 'torch/ao/quantization/__init__.py' 2024-06-26T05:43:09.3064410Z adding 'torch/ao/quantization/_correct_bias.py' 2024-06-26T05:43:09.3067190Z adding 'torch/ao/quantization/_equalize.py' 2024-06-26T05:43:09.3069370Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2024-06-26T05:43:09.3073800Z adding 'torch/ao/quantization/fake_quantize.py' 2024-06-26T05:43:09.3076100Z adding 'torch/ao/quantization/fuse_modules.py' 2024-06-26T05:43:09.3078570Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2024-06-26T05:43:09.3092060Z adding 'torch/ao/quantization/observer.py' 2024-06-26T05:43:09.3097000Z adding 'torch/ao/quantization/qconfig.py' 2024-06-26T05:43:09.3100200Z adding 'torch/ao/quantization/qconfig_mapping.py' 2024-06-26T05:43:09.3101520Z adding 'torch/ao/quantization/quant_type.py' 2024-06-26T05:43:09.3104380Z adding 'torch/ao/quantization/quantization_mappings.py' 2024-06-26T05:43:09.3110460Z adding 'torch/ao/quantization/quantize.py' 2024-06-26T05:43:09.3116240Z adding 'torch/ao/quantization/quantize_fx.py' 2024-06-26T05:43:09.3119660Z adding 'torch/ao/quantization/quantize_jit.py' 2024-06-26T05:43:09.3122170Z adding 'torch/ao/quantization/quantize_pt2e.py' 2024-06-26T05:43:09.3123580Z adding 'torch/ao/quantization/stubs.py' 2024-06-26T05:43:09.3130070Z adding 'torch/ao/quantization/utils.py' 2024-06-26T05:43:09.3131780Z adding 'torch/ao/quantization/backend_config/__init__.py' 2024-06-26T05:43:09.3136170Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2024-06-26T05:43:09.3138140Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2024-06-26T05:43:09.3143940Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2024-06-26T05:43:09.3146930Z adding 'torch/ao/quantization/backend_config/executorch.py' 2024-06-26T05:43:09.3148500Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2024-06-26T05:43:09.3150330Z adding 'torch/ao/quantization/backend_config/native.py' 2024-06-26T05:43:09.3151170Z adding 'torch/ao/quantization/backend_config/observation_type.py' 2024-06-26T05:43:09.3154410Z adding 'torch/ao/quantization/backend_config/onednn.py' 2024-06-26T05:43:09.3156130Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2024-06-26T05:43:09.3157620Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2024-06-26T05:43:09.3160640Z adding 'torch/ao/quantization/backend_config/utils.py' 2024-06-26T05:43:09.3162130Z adding 'torch/ao/quantization/backend_config/x86.py' 2024-06-26T05:43:09.3163600Z adding 'torch/ao/quantization/fx/__init__.py' 2024-06-26T05:43:09.3169550Z adding 'torch/ao/quantization/fx/_decomposed.py' 2024-06-26T05:43:09.3177580Z adding 'torch/ao/quantization/fx/_equalize.py' 2024-06-26T05:43:09.3187390Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2024-06-26T05:43:09.3199220Z adding 'torch/ao/quantization/fx/convert.py' 2024-06-26T05:43:09.3202680Z adding 'torch/ao/quantization/fx/custom_config.py' 2024-06-26T05:43:09.3204940Z adding 'torch/ao/quantization/fx/fuse.py' 2024-06-26T05:43:09.3206790Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2024-06-26T05:43:09.3208570Z adding 'torch/ao/quantization/fx/graph_module.py' 2024-06-26T05:43:09.3209850Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2024-06-26T05:43:09.3211100Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2024-06-26T05:43:09.3213470Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2024-06-26T05:43:09.3216100Z adding 'torch/ao/quantization/fx/match_utils.py' 2024-06-26T05:43:09.3217750Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2024-06-26T05:43:09.3236770Z adding 'torch/ao/quantization/fx/prepare.py' 2024-06-26T05:43:09.3240780Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2024-06-26T05:43:09.3243010Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2024-06-26T05:43:09.3244430Z adding 'torch/ao/quantization/fx/tracer.py' 2024-06-26T05:43:09.3252670Z adding 'torch/ao/quantization/fx/utils.py' 2024-06-26T05:43:09.3254240Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2024-06-26T05:43:09.3268530Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2024-06-26T05:43:09.3275170Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2024-06-26T05:43:09.3278220Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2024-06-26T05:43:09.3285010Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2024-06-26T05:43:09.3286390Z adding 'torch/ao/quantization/pt2e/__init__.py' 2024-06-26T05:43:09.3288000Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2024-06-26T05:43:09.3290180Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2024-06-26T05:43:09.3291510Z adding 'torch/ao/quantization/pt2e/generate_numeric_debug_handle.py' 2024-06-26T05:43:09.3293080Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2024-06-26T05:43:09.3295660Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2024-06-26T05:43:09.3300760Z adding 'torch/ao/quantization/pt2e/prepare.py' 2024-06-26T05:43:09.3307720Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2024-06-26T05:43:09.3312890Z adding 'torch/ao/quantization/pt2e/utils.py' 2024-06-26T05:43:09.3314670Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2024-06-26T05:43:09.3318980Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2024-06-26T05:43:09.3320450Z adding 'torch/ao/quantization/quantizer/__init__.py' 2024-06-26T05:43:09.3322220Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2024-06-26T05:43:09.3323830Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2024-06-26T05:43:09.3325870Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2024-06-26T05:43:09.3327460Z adding 'torch/ao/quantization/quantizer/utils.py' 2024-06-26T05:43:09.3338720Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2024-06-26T05:43:09.3343790Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2024-06-26T05:43:09.3349000Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2024-06-26T05:43:09.3354730Z adding 'torch/autograd/__init__.py' 2024-06-26T05:43:09.3356620Z adding 'torch/autograd/anomaly_mode.py' 2024-06-26T05:43:09.3358920Z adding 'torch/autograd/forward_ad.py' 2024-06-26T05:43:09.3366060Z adding 'torch/autograd/function.py' 2024-06-26T05:43:09.3375660Z adding 'torch/autograd/functional.py' 2024-06-26T05:43:09.3378650Z adding 'torch/autograd/grad_mode.py' 2024-06-26T05:43:09.3399280Z adding 'torch/autograd/gradcheck.py' 2024-06-26T05:43:09.3406120Z adding 'torch/autograd/graph.py' 2024-06-26T05:43:09.3415880Z adding 'torch/autograd/profiler.py' 2024-06-26T05:43:09.3418980Z adding 'torch/autograd/profiler_legacy.py' 2024-06-26T05:43:09.3427480Z adding 'torch/autograd/profiler_util.py' 2024-06-26T05:43:09.3428890Z adding 'torch/autograd/variable.py' 2024-06-26T05:43:09.3430210Z adding 'torch/autograd/_functions/__init__.py' 2024-06-26T05:43:09.3431620Z adding 'torch/autograd/_functions/tensor.py' 2024-06-26T05:43:09.3433050Z adding 'torch/autograd/_functions/utils.py' 2024-06-26T05:43:09.3434710Z adding 'torch/backends/__init__.py' 2024-06-26T05:43:09.3435910Z adding 'torch/backends/_coreml/__init__.py' 2024-06-26T05:43:09.3437750Z adding 'torch/backends/_coreml/preprocess.py' 2024-06-26T05:43:09.3438960Z adding 'torch/backends/_nnapi/__init__.py' 2024-06-26T05:43:09.3441070Z adding 'torch/backends/_nnapi/prepare.py' 2024-06-26T05:43:09.3456470Z adding 'torch/backends/_nnapi/serializer.py' 2024-06-26T05:43:09.3458130Z adding 'torch/backends/cpu/__init__.py' 2024-06-26T05:43:09.3461360Z adding 'torch/backends/cuda/__init__.py' 2024-06-26T05:43:09.3463650Z adding 'torch/backends/cudnn/__init__.py' 2024-06-26T05:43:09.3465610Z adding 'torch/backends/cudnn/rnn.py' 2024-06-26T05:43:09.3467000Z adding 'torch/backends/mha/__init__.py' 2024-06-26T05:43:09.3468520Z adding 'torch/backends/mkl/__init__.py' 2024-06-26T05:43:09.3470250Z adding 'torch/backends/mkldnn/__init__.py' 2024-06-26T05:43:09.3471700Z adding 'torch/backends/mps/__init__.py' 2024-06-26T05:43:09.3473170Z adding 'torch/backends/nnpack/__init__.py' 2024-06-26T05:43:09.3474420Z adding 'torch/backends/openmp/__init__.py' 2024-06-26T05:43:09.3476140Z adding 'torch/backends/opt_einsum/__init__.py' 2024-06-26T05:43:09.3477640Z adding 'torch/backends/quantized/__init__.py' 2024-06-26T05:43:09.3478860Z adding 'torch/backends/xeon/__init__.py' 2024-06-26T05:43:09.3485930Z adding 'torch/backends/xeon/run_cpu.py' 2024-06-26T05:43:09.3487520Z adding 'torch/backends/xnnpack/__init__.py' 2024-06-26T05:43:09.4664090Z adding 'torch/bin/protoc' 2024-06-26T05:43:09.5860220Z adding 'torch/bin/protoc-3.13.0.0' 2024-06-26T05:43:09.5889320Z adding 'torch/bin/torch_shm_manager' 2024-06-26T05:43:09.5892970Z adding 'torch/compiler/__init__.py' 2024-06-26T05:43:09.5894180Z adding 'torch/contrib/__init__.py' 2024-06-26T05:43:09.5896110Z adding 'torch/contrib/_tensorboard_vis.py' 2024-06-26T05:43:09.5898000Z adding 'torch/cpu/__init__.py' 2024-06-26T05:43:09.5899110Z adding 'torch/cpu/amp/__init__.py' 2024-06-26T05:43:09.5900260Z adding 'torch/cpu/amp/autocast_mode.py' 2024-06-26T05:43:09.5900920Z adding 'torch/cpu/amp/grad_scaler.py' 2024-06-26T05:43:09.5912250Z adding 'torch/cuda/__init__.py' 2024-06-26T05:43:09.5913540Z adding 'torch/cuda/_gpu_trace.py' 2024-06-26T05:43:09.5919190Z adding 'torch/cuda/_memory_viz.py' 2024-06-26T05:43:09.5923520Z adding 'torch/cuda/_sanitizer.py' 2024-06-26T05:43:09.5924690Z adding 'torch/cuda/_utils.py' 2024-06-26T05:43:09.5925300Z adding 'torch/cuda/comm.py' 2024-06-26T05:43:09.5926410Z adding 'torch/cuda/error.py' 2024-06-26T05:43:09.5930980Z adding 'torch/cuda/graphs.py' 2024-06-26T05:43:09.5932860Z adding 'torch/cuda/jiterator.py' 2024-06-26T05:43:09.5940370Z adding 'torch/cuda/memory.py' 2024-06-26T05:43:09.5942050Z adding 'torch/cuda/nccl.py' 2024-06-26T05:43:09.5943360Z adding 'torch/cuda/nvtx.py' 2024-06-26T05:43:09.5944640Z adding 'torch/cuda/profiler.py' 2024-06-26T05:43:09.5946060Z adding 'torch/cuda/random.py' 2024-06-26T05:43:09.5946620Z adding 'torch/cuda/sparse.py' 2024-06-26T05:43:09.5948980Z adding 'torch/cuda/streams.py' 2024-06-26T05:43:09.5951540Z adding 'torch/cuda/tunable.py' 2024-06-26T05:43:09.5952710Z adding 'torch/cuda/amp/__init__.py' 2024-06-26T05:43:09.5953890Z adding 'torch/cuda/amp/autocast_mode.py' 2024-06-26T05:43:09.5954430Z adding 'torch/cuda/amp/common.py' 2024-06-26T05:43:09.5955660Z adding 'torch/cuda/amp/grad_scaler.py' 2024-06-26T05:43:09.5957820Z adding 'torch/distributed/__init__.py' 2024-06-26T05:43:09.5959010Z adding 'torch/distributed/_checkpointable.py' 2024-06-26T05:43:09.5959690Z adding 'torch/distributed/_composable_state.py' 2024-06-26T05:43:09.5968170Z adding 'torch/distributed/_functional_collectives.py' 2024-06-26T05:43:09.5969530Z adding 'torch/distributed/_functional_collectives_impl.py' 2024-06-26T05:43:09.5974720Z adding 'torch/distributed/_state_dict_utils.py' 2024-06-26T05:43:09.5976140Z adding 'torch/distributed/argparse_util.py' 2024-06-26T05:43:09.5977420Z adding 'torch/distributed/c10d_logger.py' 2024-06-26T05:43:09.5979520Z adding 'torch/distributed/collective_utils.py' 2024-06-26T05:43:09.5980270Z adding 'torch/distributed/constants.py' 2024-06-26T05:43:09.5987040Z adding 'torch/distributed/device_mesh.py' 2024-06-26T05:43:09.6027070Z adding 'torch/distributed/distributed_c10d.py' 2024-06-26T05:43:09.6030020Z adding 'torch/distributed/launch.py' 2024-06-26T05:43:09.6031190Z adding 'torch/distributed/logging_handlers.py' 2024-06-26T05:43:09.6032670Z adding 'torch/distributed/remote_device.py' 2024-06-26T05:43:09.6035060Z adding 'torch/distributed/rendezvous.py' 2024-06-26T05:43:09.6042700Z adding 'torch/distributed/run.py' 2024-06-26T05:43:09.6045750Z adding 'torch/distributed/utils.py' 2024-06-26T05:43:09.6046990Z adding 'torch/distributed/_composable/__init__.py' 2024-06-26T05:43:09.6048610Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2024-06-26T05:43:09.6050550Z adding 'torch/distributed/_composable/contract.py' 2024-06-26T05:43:09.6052200Z adding 'torch/distributed/_composable/fully_shard.py' 2024-06-26T05:43:09.6054560Z adding 'torch/distributed/_composable/replicate.py' 2024-06-26T05:43:09.6055570Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2024-06-26T05:43:09.6057110Z adding 'torch/distributed/_composable/fsdp/_fsdp_api.py' 2024-06-26T05:43:09.6060800Z adding 'torch/distributed/_composable/fsdp/_fsdp_collectives.py' 2024-06-26T05:43:09.6062460Z adding 'torch/distributed/_composable/fsdp/_fsdp_common.py' 2024-06-26T05:43:09.6064260Z adding 'torch/distributed/_composable/fsdp/_fsdp_init.py' 2024-06-26T05:43:09.6070330Z adding 'torch/distributed/_composable/fsdp/_fsdp_param.py' 2024-06-26T05:43:09.6075480Z adding 'torch/distributed/_composable/fsdp/_fsdp_param_group.py' 2024-06-26T05:43:09.6078310Z adding 'torch/distributed/_composable/fsdp/_fsdp_state.py' 2024-06-26T05:43:09.6082460Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2024-06-26T05:43:09.6086640Z adding 'torch/distributed/_cuda_p2p/__init__.py' 2024-06-26T05:43:09.6087830Z adding 'torch/distributed/_shard/__init__.py' 2024-06-26T05:43:09.6088510Z adding 'torch/distributed/_shard/_utils.py' 2024-06-26T05:43:09.6091680Z adding 'torch/distributed/_shard/api.py' 2024-06-26T05:43:09.6092940Z adding 'torch/distributed/_shard/common_op_utils.py' 2024-06-26T05:43:09.6094210Z adding 'torch/distributed/_shard/metadata.py' 2024-06-26T05:43:09.6094840Z adding 'torch/distributed/_shard/op_registry_utils.py' 2024-06-26T05:43:09.6096060Z adding 'torch/distributed/_shard/sharder.py' 2024-06-26T05:43:09.6097290Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2024-06-26T05:43:09.6098560Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2024-06-26T05:43:09.6100000Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2024-06-26T05:43:09.6103280Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2024-06-26T05:43:09.6113510Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2024-06-26T05:43:09.6114780Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2024-06-26T05:43:09.6115430Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2024-06-26T05:43:09.6116940Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2024-06-26T05:43:09.6119210Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2024-06-26T05:43:09.6120510Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2024-06-26T05:43:09.6122650Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2024-06-26T05:43:09.6123940Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2024-06-26T05:43:09.6125390Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2024-06-26T05:43:09.6126290Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2024-06-26T05:43:09.6128100Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2024-06-26T05:43:09.6128760Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2024-06-26T05:43:09.6130920Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2024-06-26T05:43:09.6131640Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2024-06-26T05:43:09.6133270Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2024-06-26T05:43:09.6134530Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2024-06-26T05:43:09.6136720Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2024-06-26T05:43:09.6139170Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2024-06-26T05:43:09.6141610Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2024-06-26T05:43:09.6142420Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2024-06-26T05:43:09.6145770Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2024-06-26T05:43:09.6148450Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2024-06-26T05:43:09.6152410Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2024-06-26T05:43:09.6153280Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2024-06-26T05:43:09.6154650Z adding 'torch/distributed/_sharding_spec/__init__.py' 2024-06-26T05:43:09.6155370Z adding 'torch/distributed/_spmd/__init__.py' 2024-06-26T05:43:09.6160570Z adding 'torch/distributed/_spmd/api.py' 2024-06-26T05:43:09.6162700Z adding 'torch/distributed/_spmd/batch_dim_utils.py' 2024-06-26T05:43:09.6165260Z adding 'torch/distributed/_spmd/comm_tensor.py' 2024-06-26T05:43:09.6165990Z adding 'torch/distributed/_spmd/config.py' 2024-06-26T05:43:09.6173880Z adding 'torch/distributed/_spmd/data_parallel.py' 2024-06-26T05:43:09.6180740Z adding 'torch/distributed/_spmd/distribute.py' 2024-06-26T05:43:09.6184380Z adding 'torch/distributed/_spmd/experimental_ops.py' 2024-06-26T05:43:09.6185620Z adding 'torch/distributed/_spmd/gm_transformation.py' 2024-06-26T05:43:09.6193820Z adding 'torch/distributed/_spmd/graph_optimization.py' 2024-06-26T05:43:09.6195690Z adding 'torch/distributed/_spmd/graph_utils.py' 2024-06-26T05:43:09.6201900Z adding 'torch/distributed/_spmd/iter_graph_module.py' 2024-06-26T05:43:09.6203170Z adding 'torch/distributed/_spmd/log_utils.py' 2024-06-26T05:43:09.6205170Z adding 'torch/distributed/_spmd/parallel_mode.py' 2024-06-26T05:43:09.6207720Z adding 'torch/distributed/_spmd/partial_lower.py' 2024-06-26T05:43:09.6210240Z adding 'torch/distributed/_tensor/__init__.py' 2024-06-26T05:43:09.6213290Z adding 'torch/distributed/_tensor/_collective_utils.py' 2024-06-26T05:43:09.6216960Z adding 'torch/distributed/_tensor/_dispatch.py' 2024-06-26T05:43:09.6220850Z adding 'torch/distributed/_tensor/_op_schema.py' 2024-06-26T05:43:09.6223960Z adding 'torch/distributed/_tensor/_redistribute.py' 2024-06-26T05:43:09.6228190Z adding 'torch/distributed/_tensor/_sharding_prop.py' 2024-06-26T05:43:09.6230740Z adding 'torch/distributed/_tensor/_shards_wrapper.py' 2024-06-26T05:43:09.6232760Z adding 'torch/distributed/_tensor/_tp_conv.py' 2024-06-26T05:43:09.6235180Z adding 'torch/distributed/_tensor/_utils.py' 2024-06-26T05:43:09.6242780Z adding 'torch/distributed/_tensor/api.py' 2024-06-26T05:43:09.6243540Z adding 'torch/distributed/_tensor/device_mesh.py' 2024-06-26T05:43:09.6249400Z adding 'torch/distributed/_tensor/placement_types.py' 2024-06-26T05:43:09.6252920Z adding 'torch/distributed/_tensor/random.py' 2024-06-26T05:43:09.6254200Z adding 'torch/distributed/_tensor/debug/__init__.py' 2024-06-26T05:43:09.6255560Z adding 'torch/distributed/_tensor/debug/_op_coverage.py' 2024-06-26T05:43:09.6257830Z adding 'torch/distributed/_tensor/debug/comm_mode.py' 2024-06-26T05:43:09.6259830Z adding 'torch/distributed/_tensor/debug/visualize_sharding.py' 2024-06-26T05:43:09.6264660Z adding 'torch/distributed/_tensor/experimental/__init__.py' 2024-06-26T05:43:09.6265130Z adding 'torch/distributed/_tensor/experimental/attention.py' 2024-06-26T05:43:09.6267420Z adding 'torch/distributed/_tensor/experimental/local_map.py' 2024-06-26T05:43:09.6271610Z adding 'torch/distributed/_tensor/experimental/tp_transform.py' 2024-06-26T05:43:09.6272870Z adding 'torch/distributed/_tensor/ops/__init__.py' 2024-06-26T05:43:09.6274760Z adding 'torch/distributed/_tensor/ops/basic_strategy.py' 2024-06-26T05:43:09.6277840Z adding 'torch/distributed/_tensor/ops/common_rules.py' 2024-06-26T05:43:09.6279140Z adding 'torch/distributed/_tensor/ops/conv_ops.py' 2024-06-26T05:43:09.6281400Z adding 'torch/distributed/_tensor/ops/embedding_ops.py' 2024-06-26T05:43:09.6282240Z adding 'torch/distributed/_tensor/ops/experimental_ops.py' 2024-06-26T05:43:09.6288960Z adding 'torch/distributed/_tensor/ops/math_ops.py' 2024-06-26T05:43:09.6292230Z adding 'torch/distributed/_tensor/ops/matrix_ops.py' 2024-06-26T05:43:09.6295910Z adding 'torch/distributed/_tensor/ops/pointwise_ops.py' 2024-06-26T05:43:09.6296690Z adding 'torch/distributed/_tensor/ops/random_ops.py' 2024-06-26T05:43:09.6303000Z adding 'torch/distributed/_tensor/ops/tensor_ops.py' 2024-06-26T05:43:09.6305660Z adding 'torch/distributed/_tensor/ops/utils.py' 2024-06-26T05:43:09.6311100Z adding 'torch/distributed/_tensor/ops/view_ops.py' 2024-06-26T05:43:09.6312300Z adding 'torch/distributed/_tools/__init__.py' 2024-06-26T05:43:09.6316930Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2024-06-26T05:43:09.6325650Z adding 'torch/distributed/_tools/mem_tracker.py' 2024-06-26T05:43:09.6328450Z adding 'torch/distributed/_tools/memory_tracker.py' 2024-06-26T05:43:09.6330750Z adding 'torch/distributed/_tools/mod_tracker.py' 2024-06-26T05:43:09.6331960Z adding 'torch/distributed/algorithms/__init__.py' 2024-06-26T05:43:09.6335100Z adding 'torch/distributed/algorithms/join.py' 2024-06-26T05:43:09.6336350Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2024-06-26T05:43:09.6339230Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2024-06-26T05:43:09.6340060Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2024-06-26T05:43:09.6342180Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2024-06-26T05:43:09.6342990Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2024-06-26T05:43:09.6344590Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2024-06-26T05:43:09.6345230Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2024-06-26T05:43:09.6347050Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2024-06-26T05:43:09.6348630Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2024-06-26T05:43:09.6352470Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2024-06-26T05:43:09.6353320Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2024-06-26T05:43:09.6355450Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2024-06-26T05:43:09.6356890Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2024-06-26T05:43:09.6358660Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2024-06-26T05:43:09.6360330Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2024-06-26T05:43:09.6368360Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2024-06-26T05:43:09.6370490Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2024-06-26T05:43:09.6371230Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2024-06-26T05:43:09.6373140Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2024-06-26T05:43:09.6375570Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2024-06-26T05:43:09.6377000Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2024-06-26T05:43:09.6378260Z adding 'torch/distributed/autograd/__init__.py' 2024-06-26T05:43:09.6379470Z adding 'torch/distributed/checkpoint/__init__.py' 2024-06-26T05:43:09.6380810Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2024-06-26T05:43:09.6382080Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2024-06-26T05:43:09.6382920Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2024-06-26T05:43:09.6384650Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2024-06-26T05:43:09.6385480Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2024-06-26T05:43:09.6387190Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2024-06-26T05:43:09.6387930Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2024-06-26T05:43:09.6389870Z adding 'torch/distributed/checkpoint/_traverse.py' 2024-06-26T05:43:09.6390940Z adding 'torch/distributed/checkpoint/api.py' 2024-06-26T05:43:09.6394780Z adding 'torch/distributed/checkpoint/default_planner.py' 2024-06-26T05:43:09.6399910Z adding 'torch/distributed/checkpoint/filesystem.py' 2024-06-26T05:43:09.6402350Z adding 'torch/distributed/checkpoint/format_utils.py' 2024-06-26T05:43:09.6403600Z adding 'torch/distributed/checkpoint/logger.py' 2024-06-26T05:43:09.6404250Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2024-06-26T05:43:09.6406080Z adding 'torch/distributed/checkpoint/metadata.py' 2024-06-26T05:43:09.6409040Z adding 'torch/distributed/checkpoint/optimizer.py' 2024-06-26T05:43:09.6412320Z adding 'torch/distributed/checkpoint/planner.py' 2024-06-26T05:43:09.6414980Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2024-06-26T05:43:09.6416230Z adding 'torch/distributed/checkpoint/resharding.py' 2024-06-26T05:43:09.6417770Z adding 'torch/distributed/checkpoint/staging.py' 2024-06-26T05:43:09.6427870Z adding 'torch/distributed/checkpoint/state_dict.py' 2024-06-26T05:43:09.6430740Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2024-06-26T05:43:09.6433510Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2024-06-26T05:43:09.6434290Z adding 'torch/distributed/checkpoint/stateful.py' 2024-06-26T05:43:09.6436550Z adding 'torch/distributed/checkpoint/storage.py' 2024-06-26T05:43:09.6439730Z adding 'torch/distributed/checkpoint/utils.py' 2024-06-26T05:43:09.6441530Z adding 'torch/distributed/elastic/__init__.py' 2024-06-26T05:43:09.6442490Z adding 'torch/distributed/elastic/control_plane.py' 2024-06-26T05:43:09.6443310Z adding 'torch/distributed/elastic/agent/__init__.py' 2024-06-26T05:43:09.6444850Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2024-06-26T05:43:09.6453180Z adding 'torch/distributed/elastic/agent/server/api.py' 2024-06-26T05:43:09.6454560Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2024-06-26T05:43:09.6458010Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2024-06-26T05:43:09.6460010Z adding 'torch/distributed/elastic/events/__init__.py' 2024-06-26T05:43:09.6461340Z adding 'torch/distributed/elastic/events/api.py' 2024-06-26T05:43:09.6462010Z adding 'torch/distributed/elastic/events/handlers.py' 2024-06-26T05:43:09.6464170Z adding 'torch/distributed/elastic/metrics/__init__.py' 2024-06-26T05:43:09.6466350Z adding 'torch/distributed/elastic/metrics/api.py' 2024-06-26T05:43:09.6472670Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2024-06-26T05:43:09.6475900Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2024-06-26T05:43:09.6477390Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2024-06-26T05:43:09.6479050Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2024-06-26T05:43:09.6482850Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2024-06-26T05:43:09.6484820Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2024-06-26T05:43:09.6485480Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2024-06-26T05:43:09.6486980Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2024-06-26T05:43:09.6487730Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2024-06-26T05:43:09.6489230Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2024-06-26T05:43:09.6491120Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2024-06-26T05:43:09.6493980Z adding 'torch/distributed/elastic/rendezvous/api.py' 2024-06-26T05:43:09.6496730Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2024-06-26T05:43:09.6505730Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2024-06-26T05:43:09.6514420Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2024-06-26T05:43:09.6516580Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2024-06-26T05:43:09.6518870Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2024-06-26T05:43:09.6520930Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2024-06-26T05:43:09.6521780Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2024-06-26T05:43:09.6523450Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2024-06-26T05:43:09.6525700Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2024-06-26T05:43:09.6527080Z adding 'torch/distributed/elastic/timer/__init__.py' 2024-06-26T05:43:09.6529610Z adding 'torch/distributed/elastic/timer/api.py' 2024-06-26T05:43:09.6530350Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2024-06-26T05:43:09.6533980Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2024-06-26T05:43:09.6535480Z adding 'torch/distributed/elastic/timer/local_timer.py' 2024-06-26T05:43:09.6536670Z adding 'torch/distributed/elastic/utils/__init__.py' 2024-06-26T05:43:09.6537920Z adding 'torch/distributed/elastic/utils/api.py' 2024-06-26T05:43:09.6539680Z adding 'torch/distributed/elastic/utils/distributed.py' 2024-06-26T05:43:09.6540290Z adding 'torch/distributed/elastic/utils/log_level.py' 2024-06-26T05:43:09.6541740Z adding 'torch/distributed/elastic/utils/logging.py' 2024-06-26T05:43:09.6543270Z adding 'torch/distributed/elastic/utils/store.py' 2024-06-26T05:43:09.6544540Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2024-06-26T05:43:09.6545200Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2024-06-26T05:43:09.6546780Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2024-06-26T05:43:09.6547650Z adding 'torch/distributed/fsdp/__init__.py' 2024-06-26T05:43:09.6553180Z adding 'torch/distributed/fsdp/_common_utils.py' 2024-06-26T05:43:09.6555070Z adding 'torch/distributed/fsdp/_debug_utils.py' 2024-06-26T05:43:09.6556340Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2024-06-26T05:43:09.6559590Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2024-06-26T05:43:09.6586210Z adding 'torch/distributed/fsdp/_flat_param.py' 2024-06-26T05:43:09.6588160Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2024-06-26T05:43:09.6598060Z adding 'torch/distributed/fsdp/_init_utils.py' 2024-06-26T05:43:09.6599370Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2024-06-26T05:43:09.6619700Z adding 'torch/distributed/fsdp/_optim_utils.py' 2024-06-26T05:43:09.6634930Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2024-06-26T05:43:09.6636770Z adding 'torch/distributed/fsdp/_shard_utils.py' 2024-06-26T05:43:09.6645050Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2024-06-26T05:43:09.6648070Z adding 'torch/distributed/fsdp/_trace_utils.py' 2024-06-26T05:43:09.6650170Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2024-06-26T05:43:09.6653260Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2024-06-26T05:43:09.6656350Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2024-06-26T05:43:09.6660920Z adding 'torch/distributed/fsdp/api.py' 2024-06-26T05:43:09.6682160Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2024-06-26T05:43:09.6686640Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2024-06-26T05:43:09.6692170Z adding 'torch/distributed/fsdp/wrap.py' 2024-06-26T05:43:09.6693730Z adding 'torch/distributed/launcher/__init__.py' 2024-06-26T05:43:09.6696800Z adding 'torch/distributed/launcher/api.py' 2024-06-26T05:43:09.6698240Z adding 'torch/distributed/nn/__init__.py' 2024-06-26T05:43:09.6701570Z adding 'torch/distributed/nn/functional.py' 2024-06-26T05:43:09.6702870Z adding 'torch/distributed/nn/api/__init__.py' 2024-06-26T05:43:09.6708780Z adding 'torch/distributed/nn/api/remote_module.py' 2024-06-26T05:43:09.6710190Z adding 'torch/distributed/nn/jit/__init__.py' 2024-06-26T05:43:09.6712150Z adding 'torch/distributed/nn/jit/instantiator.py' 2024-06-26T05:43:09.6713450Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2024-06-26T05:43:09.6715110Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2024-06-26T05:43:09.6716750Z adding 'torch/distributed/optim/__init__.py' 2024-06-26T05:43:09.6718760Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2024-06-26T05:43:09.6720400Z adding 'torch/distributed/optim/functional_adadelta.py' 2024-06-26T05:43:09.6722140Z adding 'torch/distributed/optim/functional_adagrad.py' 2024-06-26T05:43:09.6724140Z adding 'torch/distributed/optim/functional_adam.py' 2024-06-26T05:43:09.6725860Z adding 'torch/distributed/optim/functional_adamax.py' 2024-06-26T05:43:09.6727870Z adding 'torch/distributed/optim/functional_adamw.py' 2024-06-26T05:43:09.6729580Z adding 'torch/distributed/optim/functional_rmsprop.py' 2024-06-26T05:43:09.6731250Z adding 'torch/distributed/optim/functional_rprop.py' 2024-06-26T05:43:09.6733120Z adding 'torch/distributed/optim/functional_sgd.py' 2024-06-26T05:43:09.6736540Z adding 'torch/distributed/optim/named_optimizer.py' 2024-06-26T05:43:09.6739510Z adding 'torch/distributed/optim/optimizer.py' 2024-06-26T05:43:09.6741400Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2024-06-26T05:43:09.6742880Z adding 'torch/distributed/optim/utils.py' 2024-06-26T05:43:09.6758880Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2024-06-26T05:43:09.6771300Z adding 'torch/distributed/pipelining/_IR.py' 2024-06-26T05:43:09.6772780Z adding 'torch/distributed/pipelining/__init__.py' 2024-06-26T05:43:09.6774560Z adding 'torch/distributed/pipelining/_backward.py' 2024-06-26T05:43:09.6775850Z adding 'torch/distributed/pipelining/_debug.py' 2024-06-26T05:43:09.6781480Z adding 'torch/distributed/pipelining/_unflatten.py' 2024-06-26T05:43:09.6781880Z adding 'torch/distributed/pipelining/_utils.py' 2024-06-26T05:43:09.6782410Z adding 'torch/distributed/pipelining/microbatch.py' 2024-06-26T05:43:09.6789750Z adding 'torch/distributed/pipelining/schedules.py' 2024-06-26T05:43:09.6801540Z adding 'torch/distributed/pipelining/stage.py' 2024-06-26T05:43:09.6804820Z adding 'torch/distributed/rpc/__init__.py' 2024-06-26T05:43:09.6806260Z adding 'torch/distributed/rpc/_utils.py' 2024-06-26T05:43:09.6813600Z adding 'torch/distributed/rpc/api.py' 2024-06-26T05:43:09.6817680Z adding 'torch/distributed/rpc/backend_registry.py' 2024-06-26T05:43:09.6819000Z adding 'torch/distributed/rpc/constants.py' 2024-06-26T05:43:09.6821060Z adding 'torch/distributed/rpc/functions.py' 2024-06-26T05:43:09.6823860Z adding 'torch/distributed/rpc/internal.py' 2024-06-26T05:43:09.6826060Z adding 'torch/distributed/rpc/options.py' 2024-06-26T05:43:09.6827600Z adding 'torch/distributed/rpc/rref_proxy.py' 2024-06-26T05:43:09.6829970Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2024-06-26T05:43:09.6831320Z adding 'torch/distributed/rpc/_testing/__init__.py' 2024-06-26T05:43:09.6832750Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2024-06-26T05:43:09.6834030Z adding 'torch/distributed/tensor/__init__.py' 2024-06-26T05:43:09.6835380Z adding 'torch/distributed/tensor/parallel/__init__.py' 2024-06-26T05:43:09.6836750Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2024-06-26T05:43:09.6838170Z adding 'torch/distributed/tensor/parallel/_utils.py' 2024-06-26T05:43:09.6840010Z adding 'torch/distributed/tensor/parallel/api.py' 2024-06-26T05:43:09.6841710Z adding 'torch/distributed/tensor/parallel/ddp.py' 2024-06-26T05:43:09.6845250Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2024-06-26T05:43:09.6846910Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2024-06-26T05:43:09.6850760Z adding 'torch/distributed/tensor/parallel/loss.py' 2024-06-26T05:43:09.6855740Z adding 'torch/distributed/tensor/parallel/style.py' 2024-06-26T05:43:09.6858460Z adding 'torch/distributions/__init__.py' 2024-06-26T05:43:09.6860260Z adding 'torch/distributions/bernoulli.py' 2024-06-26T05:43:09.6861820Z adding 'torch/distributions/beta.py' 2024-06-26T05:43:09.6863870Z adding 'torch/distributions/binomial.py' 2024-06-26T05:43:09.6865840Z adding 'torch/distributions/categorical.py' 2024-06-26T05:43:09.6867360Z adding 'torch/distributions/cauchy.py' 2024-06-26T05:43:09.6868600Z adding 'torch/distributions/chi2.py' 2024-06-26T05:43:09.6871110Z adding 'torch/distributions/constraint_registry.py' 2024-06-26T05:43:09.6874900Z adding 'torch/distributions/constraints.py' 2024-06-26T05:43:09.6877430Z adding 'torch/distributions/continuous_bernoulli.py' 2024-06-26T05:43:09.6879070Z adding 'torch/distributions/dirichlet.py' 2024-06-26T05:43:09.6882040Z adding 'torch/distributions/distribution.py' 2024-06-26T05:43:09.6883500Z adding 'torch/distributions/exp_family.py' 2024-06-26T05:43:09.6884970Z adding 'torch/distributions/exponential.py' 2024-06-26T05:43:09.6886570Z adding 'torch/distributions/fishersnedecor.py' 2024-06-26T05:43:09.6888100Z adding 'torch/distributions/gamma.py' 2024-06-26T05:43:09.6889960Z adding 'torch/distributions/geometric.py' 2024-06-26T05:43:09.6891420Z adding 'torch/distributions/gumbel.py' 2024-06-26T05:43:09.6892850Z adding 'torch/distributions/half_cauchy.py' 2024-06-26T05:43:09.6894190Z adding 'torch/distributions/half_normal.py' 2024-06-26T05:43:09.6895890Z adding 'torch/distributions/independent.py' 2024-06-26T05:43:09.6897310Z adding 'torch/distributions/inverse_gamma.py' 2024-06-26T05:43:09.6903340Z adding 'torch/distributions/kl.py' 2024-06-26T05:43:09.6905100Z adding 'torch/distributions/kumaraswamy.py' 2024-06-26T05:43:09.6906660Z adding 'torch/distributions/laplace.py' 2024-06-26T05:43:09.6908890Z adding 'torch/distributions/lkj_cholesky.py' 2024-06-26T05:43:09.6910250Z adding 'torch/distributions/log_normal.py' 2024-06-26T05:43:09.6911670Z adding 'torch/distributions/logistic_normal.py' 2024-06-26T05:43:09.6914250Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2024-06-26T05:43:09.6916550Z adding 'torch/distributions/mixture_same_family.py' 2024-06-26T05:43:09.6918490Z adding 'torch/distributions/multinomial.py' 2024-06-26T05:43:09.6921200Z adding 'torch/distributions/multivariate_normal.py' 2024-06-26T05:43:09.6923020Z adding 'torch/distributions/negative_binomial.py' 2024-06-26T05:43:09.6924560Z adding 'torch/distributions/normal.py' 2024-06-26T05:43:09.6926330Z adding 'torch/distributions/one_hot_categorical.py' 2024-06-26T05:43:09.6927720Z adding 'torch/distributions/pareto.py' 2024-06-26T05:43:09.6929100Z adding 'torch/distributions/poisson.py' 2024-06-26T05:43:09.6930980Z adding 'torch/distributions/relaxed_bernoulli.py' 2024-06-26T05:43:09.6932790Z adding 'torch/distributions/relaxed_categorical.py' 2024-06-26T05:43:09.6934390Z adding 'torch/distributions/studentT.py' 2024-06-26T05:43:09.6936780Z adding 'torch/distributions/transformed_distribution.py' 2024-06-26T05:43:09.6944340Z adding 'torch/distributions/transforms.py' 2024-06-26T05:43:09.6946000Z adding 'torch/distributions/uniform.py' 2024-06-26T05:43:09.6948380Z adding 'torch/distributions/utils.py' 2024-06-26T05:43:09.6950480Z adding 'torch/distributions/von_mises.py' 2024-06-26T05:43:09.6951950Z adding 'torch/distributions/weibull.py' 2024-06-26T05:43:09.6955050Z adding 'torch/distributions/wishart.py' 2024-06-26T05:43:09.6958700Z adding 'torch/export/__init__.py' 2024-06-26T05:43:09.6960440Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2024-06-26T05:43:09.6962550Z adding 'torch/export/_remove_effect_tokens_pass.py' 2024-06-26T05:43:09.6964020Z adding 'torch/export/_safeguard.py' 2024-06-26T05:43:09.6977850Z adding 'torch/export/_trace.py' 2024-06-26T05:43:09.6979560Z adding 'torch/export/_tree_utils.py' 2024-06-26T05:43:09.6982430Z adding 'torch/export/_unlift.py' 2024-06-26T05:43:09.6983600Z adding 'torch/export/custom_obj.py' 2024-06-26T05:43:09.6993150Z adding 'torch/export/dynamic_shapes.py' 2024-06-26T05:43:09.7000910Z adding 'torch/export/exported_program.py' 2024-06-26T05:43:09.7004720Z adding 'torch/export/graph_signature.py' 2024-06-26T05:43:09.7015980Z adding 'torch/export/unflatten.py' 2024-06-26T05:43:09.7021810Z adding 'torch/export/experimental/__init__.py' 2024-06-26T05:43:09.7025550Z adding 'torch/fft/__init__.py' 2024-06-26T05:43:09.7027100Z adding 'torch/func/__init__.py' 2024-06-26T05:43:09.7030830Z adding 'torch/futures/__init__.py' 2024-06-26T05:43:09.7033040Z adding 'torch/fx/__init__.py' 2024-06-26T05:43:09.7034230Z adding 'torch/fx/__init__.pyi' 2024-06-26T05:43:09.7035490Z adding 'torch/fx/_compatibility.py' 2024-06-26T05:43:09.7037660Z adding 'torch/fx/_lazy_graph_module.py' 2024-06-26T05:43:09.7039230Z adding 'torch/fx/_pytree.py' 2024-06-26T05:43:09.7050340Z adding 'torch/fx/_symbolic_trace.py' 2024-06-26T05:43:09.7052010Z adding 'torch/fx/_utils.py' 2024-06-26T05:43:09.7053320Z adding 'torch/fx/annotate.py' 2024-06-26T05:43:09.7054480Z adding 'torch/fx/config.py' 2024-06-26T05:43:09.7071180Z adding 'torch/fx/graph.py' 2024-06-26T05:43:09.7080270Z adding 'torch/fx/graph_module.py' 2024-06-26T05:43:09.7081950Z adding 'torch/fx/immutable_collections.py' 2024-06-26T05:43:09.7086300Z adding 'torch/fx/interpreter.py' 2024-06-26T05:43:09.7094110Z adding 'torch/fx/node.py' 2024-06-26T05:43:09.7099150Z adding 'torch/fx/operator_schemas.py' 2024-06-26T05:43:09.7104610Z adding 'torch/fx/proxy.py' 2024-06-26T05:43:09.7108400Z adding 'torch/fx/subgraph_rewriter.py' 2024-06-26T05:43:09.7109930Z adding 'torch/fx/tensor_type.py' 2024-06-26T05:43:09.7111520Z adding 'torch/fx/traceback.py' 2024-06-26T05:43:09.7113000Z adding 'torch/fx/experimental/__init__.py' 2024-06-26T05:43:09.7114240Z adding 'torch/fx/experimental/_backward_state.py' 2024-06-26T05:43:09.7115780Z adding 'torch/fx/experimental/_config.py' 2024-06-26T05:43:09.7117240Z adding 'torch/fx/experimental/_sym_dispatch_mode.py' 2024-06-26T05:43:09.7127250Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2024-06-26T05:43:09.7130750Z adding 'torch/fx/experimental/const_fold.py' 2024-06-26T05:43:09.7131970Z adding 'torch/fx/experimental/debug.py' 2024-06-26T05:43:09.7138740Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2024-06-26T05:43:09.7141150Z adding 'torch/fx/experimental/merge_matmul.py' 2024-06-26T05:43:09.7143940Z adding 'torch/fx/experimental/meta_tracer.py' 2024-06-26T05:43:09.7145920Z adding 'torch/fx/experimental/normalize.py' 2024-06-26T05:43:09.7150210Z adding 'torch/fx/experimental/optimization.py' 2024-06-26T05:43:09.7153510Z adding 'torch/fx/experimental/partitioner_utils.py' 2024-06-26T05:43:09.7168120Z adding 'torch/fx/experimental/proxy_tensor.py' 2024-06-26T05:43:09.7173160Z adding 'torch/fx/experimental/recording.py' 2024-06-26T05:43:09.7174440Z adding 'torch/fx/experimental/refinement_types.py' 2024-06-26T05:43:09.7176350Z adding 'torch/fx/experimental/rewriter.py' 2024-06-26T05:43:09.7178240Z adding 'torch/fx/experimental/schema_type_annotation.py' 2024-06-26T05:43:09.7188590Z adding 'torch/fx/experimental/sym_node.py' 2024-06-26T05:43:09.7251900Z adding 'torch/fx/experimental/symbolic_shapes.py' 2024-06-26T05:43:09.7254590Z adding 'torch/fx/experimental/unify_refinements.py' 2024-06-26T05:43:09.7261700Z adding 'torch/fx/experimental/validator.py' 2024-06-26T05:43:09.7263260Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2024-06-26T05:43:09.7266380Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2024-06-26T05:43:09.7274900Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2024-06-26T05:43:09.7283110Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2024-06-26T05:43:09.7284100Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2024-06-26T05:43:09.7287560Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2024-06-26T05:43:09.7288900Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2024-06-26T05:43:09.7290220Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2024-06-26T05:43:09.7291530Z adding 'torch/fx/experimental/unification/__init__.py' 2024-06-26T05:43:09.7293110Z adding 'torch/fx/experimental/unification/core.py' 2024-06-26T05:43:09.7294360Z adding 'torch/fx/experimental/unification/dispatch.py' 2024-06-26T05:43:09.7295900Z adding 'torch/fx/experimental/unification/match.py' 2024-06-26T05:43:09.7297990Z adding 'torch/fx/experimental/unification/more.py' 2024-06-26T05:43:09.7300920Z adding 'torch/fx/experimental/unification/unification_tools.py' 2024-06-26T05:43:09.7302500Z adding 'torch/fx/experimental/unification/utils.py' 2024-06-26T05:43:09.7303940Z adding 'torch/fx/experimental/unification/variable.py' 2024-06-26T05:43:09.7305400Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2024-06-26T05:43:09.7307110Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2024-06-26T05:43:09.7308610Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2024-06-26T05:43:09.7312190Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2024-06-26T05:43:09.7313980Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2024-06-26T05:43:09.7315580Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2024-06-26T05:43:09.7316920Z adding 'torch/fx/passes/__init__.py' 2024-06-26T05:43:09.7318310Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2024-06-26T05:43:09.7319770Z adding 'torch/fx/passes/fake_tensor_prop.py' 2024-06-26T05:43:09.7323370Z adding 'torch/fx/passes/graph_drawer.py' 2024-06-26T05:43:09.7325290Z adding 'torch/fx/passes/graph_manipulation.py' 2024-06-26T05:43:09.7326780Z adding 'torch/fx/passes/graph_transform_observer.py' 2024-06-26T05:43:09.7333590Z adding 'torch/fx/passes/net_min_base.py' 2024-06-26T05:43:09.7336060Z adding 'torch/fx/passes/operator_support.py' 2024-06-26T05:43:09.7337700Z adding 'torch/fx/passes/param_fetch.py' 2024-06-26T05:43:09.7340060Z adding 'torch/fx/passes/pass_manager.py' 2024-06-26T05:43:09.7348150Z adding 'torch/fx/passes/reinplace.py' 2024-06-26T05:43:09.7352090Z adding 'torch/fx/passes/runtime_assert.py' 2024-06-26T05:43:09.7354430Z adding 'torch/fx/passes/shape_prop.py' 2024-06-26T05:43:09.7359440Z adding 'torch/fx/passes/split_module.py' 2024-06-26T05:43:09.7362590Z adding 'torch/fx/passes/split_utils.py' 2024-06-26T05:43:09.7369800Z adding 'torch/fx/passes/splitter_base.py' 2024-06-26T05:43:09.7372940Z adding 'torch/fx/passes/tools_common.py' 2024-06-26T05:43:09.7374250Z adding 'torch/fx/passes/backends/__init__.py' 2024-06-26T05:43:09.7375700Z adding 'torch/fx/passes/backends/cudagraphs.py' 2024-06-26T05:43:09.7380440Z adding 'torch/fx/passes/dialect/__init__.py' 2024-06-26T05:43:09.7380800Z adding 'torch/fx/passes/dialect/common/__init__.py' 2024-06-26T05:43:09.7381530Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2024-06-26T05:43:09.7381890Z adding 'torch/fx/passes/infra/__init__.py' 2024-06-26T05:43:09.7384870Z adding 'torch/fx/passes/infra/partitioner.py' 2024-06-26T05:43:09.7386450Z adding 'torch/fx/passes/infra/pass_base.py' 2024-06-26T05:43:09.7389370Z adding 'torch/fx/passes/infra/pass_manager.py' 2024-06-26T05:43:09.7390610Z adding 'torch/fx/passes/tests/__init__.py' 2024-06-26T05:43:09.7392000Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2024-06-26T05:43:09.7393200Z adding 'torch/fx/passes/utils/__init__.py' 2024-06-26T05:43:09.7394760Z adding 'torch/fx/passes/utils/common.py' 2024-06-26T05:43:09.7397510Z adding 'torch/fx/passes/utils/fuser_utils.py' 2024-06-26T05:43:09.7401660Z adding 'torch/fx/passes/utils/matcher_utils.py' 2024-06-26T05:43:09.7403560Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2024-06-26T05:43:09.7405390Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2024-06-26T05:43:09.7407220Z adding 'torch/include/clog.h' 2024-06-26T05:43:09.7414740Z adding 'torch/include/cpuinfo.h' 2024-06-26T05:43:09.7416150Z adding 'torch/include/experiments-config.h' 2024-06-26T05:43:09.7417310Z adding 'torch/include/fp16.h' 2024-06-26T05:43:09.7419940Z adding 'torch/include/fxdiv.h' 2024-06-26T05:43:09.7421210Z adding 'torch/include/libshm.h' 2024-06-26T05:43:09.7425520Z adding 'torch/include/nnpack.h' 2024-06-26T05:43:09.7429880Z adding 'torch/include/omp.h' 2024-06-26T05:43:09.7435930Z adding 'torch/include/psimd.h' 2024-06-26T05:43:09.7445260Z adding 'torch/include/pthreadpool.h' 2024-06-26T05:43:09.7447180Z adding 'torch/include/qnnpack_func.h' 2024-06-26T05:43:09.7463650Z adding 'torch/include/sleef.h' 2024-06-26T05:43:09.7489400Z adding 'torch/include/xnnpack.h' 2024-06-26T05:43:09.7492890Z adding 'torch/include/ATen/ATen.h' 2024-06-26T05:43:09.7494850Z adding 'torch/include/ATen/AccumulateType.h' 2024-06-26T05:43:09.7496050Z adding 'torch/include/ATen/ArrayRef.h' 2024-06-26T05:43:09.7496760Z adding 'torch/include/ATen/Backend.h' 2024-06-26T05:43:09.7498120Z adding 'torch/include/ATen/Backtrace.h' 2024-06-26T05:43:09.7499340Z adding 'torch/include/ATen/BlasBackend.h' 2024-06-26T05:43:09.7502020Z adding 'torch/include/ATen/CPUApplyUtils.h' 2024-06-26T05:43:09.7503430Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2024-06-26T05:43:09.7504830Z adding 'torch/include/ATen/CPUFunctions.h' 2024-06-26T05:43:09.7508110Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2024-06-26T05:43:09.7509490Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2024-06-26T05:43:09.7510840Z adding 'torch/include/ATen/CUDAFunctions.h' 2024-06-26T05:43:09.7514490Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2024-06-26T05:43:09.7515880Z adding 'torch/include/ATen/CachedTensorUtils.h' 2024-06-26T05:43:09.7517410Z adding 'torch/include/ATen/CollapseDims.h' 2024-06-26T05:43:09.7518920Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2024-06-26T05:43:09.7522860Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2024-06-26T05:43:09.7524470Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2024-06-26T05:43:09.7527180Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2024-06-26T05:43:09.7528740Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2024-06-26T05:43:09.7532230Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2024-06-26T05:43:09.7533870Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2024-06-26T05:43:09.7534920Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2024-06-26T05:43:09.7536300Z adding 'torch/include/ATen/Config.h' 2024-06-26T05:43:09.7540580Z adding 'torch/include/ATen/Context.h' 2024-06-26T05:43:09.7541960Z adding 'torch/include/ATen/DLConvertor.h' 2024-06-26T05:43:09.7543130Z adding 'torch/include/ATen/Device.h' 2024-06-26T05:43:09.7544340Z adding 'torch/include/ATen/DeviceAccelerator.h' 2024-06-26T05:43:09.7545580Z adding 'torch/include/ATen/DeviceGuard.h' 2024-06-26T05:43:09.7546740Z adding 'torch/include/ATen/DimVector.h' 2024-06-26T05:43:09.7547360Z adding 'torch/include/ATen/Dimname.h' 2024-06-26T05:43:09.7552890Z adding 'torch/include/ATen/Dispatch.h' 2024-06-26T05:43:09.7556770Z adding 'torch/include/ATen/Dispatch_v2.h' 2024-06-26T05:43:09.7558090Z adding 'torch/include/ATen/DynamicLibrary.h' 2024-06-26T05:43:09.7559530Z adding 'torch/include/ATen/EmptyTensor.h' 2024-06-26T05:43:09.7560740Z adding 'torch/include/ATen/ExpandBase.h' 2024-06-26T05:43:09.7563760Z adding 'torch/include/ATen/ExpandUtils.h' 2024-06-26T05:43:09.7564940Z adding 'torch/include/ATen/Formatting.h' 2024-06-26T05:43:09.7566310Z adding 'torch/include/ATen/FuncTorchTLS.h' 2024-06-26T05:43:09.7568800Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2024-06-26T05:43:09.7572850Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2024-06-26T05:43:09.7579540Z adding 'torch/include/ATen/Functions.h' 2024-06-26T05:43:09.7580780Z adding 'torch/include/ATen/Generator.h' 2024-06-26T05:43:09.7582320Z adding 'torch/include/ATen/InferSize.h' 2024-06-26T05:43:09.7583530Z adding 'torch/include/ATen/InitialTensorOptions.h' 2024-06-26T05:43:09.7584260Z adding 'torch/include/ATen/Layout.h' 2024-06-26T05:43:09.7585800Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2024-06-26T05:43:09.7587880Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2024-06-26T05:43:09.7589130Z adding 'torch/include/ATen/LegacyVmapMode.h' 2024-06-26T05:43:09.7591640Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2024-06-26T05:43:09.7592830Z adding 'torch/include/ATen/LinalgBackend.h' 2024-06-26T05:43:09.7594200Z adding 'torch/include/ATen/MPSFunctions.h' 2024-06-26T05:43:09.7596430Z adding 'torch/include/ATen/MPSFunctions_inl.h' 2024-06-26T05:43:09.7597990Z adding 'torch/include/ATen/MapAllocator.h' 2024-06-26T05:43:09.7599490Z adding 'torch/include/ATen/MatrixRef.h' 2024-06-26T05:43:09.7600740Z adding 'torch/include/ATen/MemoryOverlap.h' 2024-06-26T05:43:09.7602080Z adding 'torch/include/ATen/MetaFunctions.h' 2024-06-26T05:43:09.7608650Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2024-06-26T05:43:09.7609060Z adding 'torch/include/ATen/MethodOperators.h' 2024-06-26T05:43:09.7609390Z adding 'torch/include/ATen/NamedTensor.h' 2024-06-26T05:43:09.7609830Z adding 'torch/include/ATen/NamedTensorUtils.h' 2024-06-26T05:43:09.7616150Z adding 'torch/include/ATen/NativeFunctions.h' 2024-06-26T05:43:09.7622360Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2024-06-26T05:43:09.7625330Z adding 'torch/include/ATen/NestedTensorImpl.h' 2024-06-26T05:43:09.7626900Z adding 'torch/include/ATen/NumericUtils.h' 2024-06-26T05:43:09.7628180Z adding 'torch/include/ATen/OpMathType.h' 2024-06-26T05:43:09.7630080Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2024-06-26T05:43:09.7636550Z adding 'torch/include/ATen/Operators.h' 2024-06-26T05:43:09.7638010Z adding 'torch/include/ATen/PTThreadPool.h' 2024-06-26T05:43:09.7639170Z adding 'torch/include/ATen/PadNd.h' 2024-06-26T05:43:09.7640600Z adding 'torch/include/ATen/Parallel-inl.h' 2024-06-26T05:43:09.7642320Z adding 'torch/include/ATen/Parallel.h' 2024-06-26T05:43:09.7643510Z adding 'torch/include/ATen/ParallelFuture.h' 2024-06-26T05:43:09.7644690Z adding 'torch/include/ATen/ParallelNative.h' 2024-06-26T05:43:09.7645930Z adding 'torch/include/ATen/ParallelOpenMP.h' 2024-06-26T05:43:09.7647160Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2024-06-26T05:43:09.7833460Z adding 'torch/include/ATen/RedispatchFunctions.h' 2024-06-26T05:43:09.7935450Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2024-06-26T05:43:09.7940660Z adding 'torch/include/ATen/SavedTensorHooks.h' 2024-06-26T05:43:09.7941910Z adding 'torch/include/ATen/Scalar.h' 2024-06-26T05:43:09.7943220Z adding 'torch/include/ATen/ScalarOps.h' 2024-06-26T05:43:09.7944390Z adding 'torch/include/ATen/ScalarType.h' 2024-06-26T05:43:09.7945570Z adding 'torch/include/ATen/SequenceNumber.h' 2024-06-26T05:43:09.7946300Z adding 'torch/include/ATen/SmallVector.h' 2024-06-26T05:43:09.7948740Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2024-06-26T05:43:09.7951900Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2024-06-26T05:43:09.7955440Z adding 'torch/include/ATen/SparseTensorImpl.h' 2024-06-26T05:43:09.7956610Z adding 'torch/include/ATen/Storage.h' 2024-06-26T05:43:09.7957880Z adding 'torch/include/ATen/StorageUtils.h' 2024-06-26T05:43:09.7959030Z adding 'torch/include/ATen/Tensor.h' 2024-06-26T05:43:09.7959710Z adding 'torch/include/ATen/TensorAccessor.h' 2024-06-26T05:43:09.7961580Z adding 'torch/include/ATen/TensorGeometry.h' 2024-06-26T05:43:09.7967140Z adding 'torch/include/ATen/TensorIndexing.h' 2024-06-26T05:43:09.7976170Z adding 'torch/include/ATen/TensorIterator.h' 2024-06-26T05:43:09.7977780Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2024-06-26T05:43:09.7979520Z adding 'torch/include/ATen/TensorMeta.h' 2024-06-26T05:43:09.7981140Z adding 'torch/include/ATen/TensorNames.h' 2024-06-26T05:43:09.7982480Z adding 'torch/include/ATen/TensorOperators.h' 2024-06-26T05:43:09.7983660Z adding 'torch/include/ATen/TensorOptions.h' 2024-06-26T05:43:09.7985220Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2024-06-26T05:43:09.7986970Z adding 'torch/include/ATen/TensorUtils.h' 2024-06-26T05:43:09.7988230Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2024-06-26T05:43:09.7989890Z adding 'torch/include/ATen/ThreadLocalState.h' 2024-06-26T05:43:09.7991930Z adding 'torch/include/ATen/TracerMode.h' 2024-06-26T05:43:09.7993080Z adding 'torch/include/ATen/TypeDefault.h' 2024-06-26T05:43:09.7994590Z adding 'torch/include/ATen/Utils.h' 2024-06-26T05:43:09.7995790Z adding 'torch/include/ATen/Version.h' 2024-06-26T05:43:09.8133380Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2024-06-26T05:43:09.8143220Z adding 'torch/include/ATen/WrapDimUtils.h' 2024-06-26T05:43:09.8144400Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2024-06-26T05:43:09.8150950Z adding 'torch/include/ATen/autocast_mode.h' 2024-06-26T05:43:09.8152290Z adding 'torch/include/ATen/ceil_div.h' 2024-06-26T05:43:09.8154580Z adding 'torch/include/ATen/code_template.h' 2024-06-26T05:43:09.8156230Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2024-06-26T05:43:09.8157410Z adding 'torch/include/ATen/div_rtn.h' 2024-06-26T05:43:09.8159730Z adding 'torch/include/ATen/dlpack.h' 2024-06-26T05:43:09.8160900Z adding 'torch/include/ATen/jit_macros.h' 2024-06-26T05:43:09.8162260Z adding 'torch/include/ATen/jiterator_macros.h' 2024-06-26T05:43:09.8167400Z adding 'torch/include/ATen/record_function.h' 2024-06-26T05:43:09.8169560Z adding 'torch/include/ATen/core/ATenGeneral.h' 2024-06-26T05:43:09.8170790Z adding 'torch/include/ATen/core/ATenOpList.h' 2024-06-26T05:43:09.8172140Z adding 'torch/include/ATen/core/ATen_fwd.h' 2024-06-26T05:43:09.8173840Z adding 'torch/include/ATen/core/ATen_pch.h' 2024-06-26T05:43:09.8175080Z adding 'torch/include/ATen/core/Array.h' 2024-06-26T05:43:09.8176250Z adding 'torch/include/ATen/core/Backtrace.h' 2024-06-26T05:43:09.8179760Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2024-06-26T05:43:09.8181030Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2024-06-26T05:43:09.8182770Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2024-06-26T05:43:09.8184180Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2024-06-26T05:43:09.8187430Z adding 'torch/include/ATen/core/Dict.h' 2024-06-26T05:43:09.8189510Z adding 'torch/include/ATen/core/Dict_inl.h' 2024-06-26T05:43:09.8190700Z adding 'torch/include/ATen/core/DimVector.h' 2024-06-26T05:43:09.8191980Z adding 'torch/include/ATen/core/Dimname.h' 2024-06-26T05:43:09.8194440Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2024-06-26T05:43:09.8195690Z adding 'torch/include/ATen/core/Formatting.h' 2024-06-26T05:43:09.8198230Z adding 'torch/include/ATen/core/Generator.h' 2024-06-26T05:43:09.8199080Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2024-06-26T05:43:09.8203720Z adding 'torch/include/ATen/core/IListRef.h' 2024-06-26T05:43:09.8205320Z adding 'torch/include/ATen/core/IListRef_inl.h' 2024-06-26T05:43:09.8206990Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2024-06-26T05:43:09.8210260Z adding 'torch/include/ATen/core/List.h' 2024-06-26T05:43:09.8212540Z adding 'torch/include/ATen/core/List_inl.h' 2024-06-26T05:43:09.8214540Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2024-06-26T05:43:09.8216200Z adding 'torch/include/ATen/core/NamedTensor.h' 2024-06-26T05:43:09.8217970Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2024-06-26T05:43:09.8220050Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2024-06-26T05:43:09.8220730Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2024-06-26T05:43:09.8222060Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2024-06-26T05:43:09.8222800Z adding 'torch/include/ATen/core/QuantizerBase.h' 2024-06-26T05:43:09.8223980Z adding 'torch/include/ATen/core/Range.h' 2024-06-26T05:43:09.8224580Z adding 'torch/include/ATen/core/Reduction.h' 2024-06-26T05:43:09.8225270Z adding 'torch/include/ATen/core/Scalar.h' 2024-06-26T05:43:09.8226020Z adding 'torch/include/ATen/core/ScalarType.h' 2024-06-26T05:43:09.8227400Z adding 'torch/include/ATen/core/Tensor.h' 2024-06-26T05:43:09.8229420Z adding 'torch/include/ATen/core/TensorAccessor.h' 2024-06-26T05:43:09.8238280Z adding 'torch/include/ATen/core/TensorBase.h' 2024-06-26T05:43:09.8274660Z adding 'torch/include/ATen/core/TensorBody.h' 2024-06-26T05:43:09.8276900Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2024-06-26T05:43:09.8278660Z adding 'torch/include/ATen/core/TransformationHelper.h' 2024-06-26T05:43:09.8279210Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2024-06-26T05:43:09.8280440Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2024-06-26T05:43:09.8281800Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2024-06-26T05:43:09.8283020Z adding 'torch/include/ATen/core/Variadic.h' 2024-06-26T05:43:09.8288910Z adding 'torch/include/ATen/core/Vitals.h' 2024-06-26T05:43:09.8289320Z adding 'torch/include/ATen/core/alias_info.h' 2024-06-26T05:43:09.8295150Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2024-06-26T05:43:09.8297170Z adding 'torch/include/ATen/core/blob.h' 2024-06-26T05:43:09.8298390Z adding 'torch/include/ATen/core/builtin_function.h' 2024-06-26T05:43:09.8301530Z adding 'torch/include/ATen/core/class_type.h' 2024-06-26T05:43:09.8302290Z adding 'torch/include/ATen/core/custom_class.h' 2024-06-26T05:43:09.8305050Z adding 'torch/include/ATen/core/dynamic_type.h' 2024-06-26T05:43:09.8305690Z adding 'torch/include/ATen/core/enum_tag.h' 2024-06-26T05:43:09.8307720Z adding 'torch/include/ATen/core/enum_type.h' 2024-06-26T05:43:09.8309080Z adding 'torch/include/ATen/core/function.h' 2024-06-26T05:43:09.8314690Z adding 'torch/include/ATen/core/function_schema.h' 2024-06-26T05:43:09.8318100Z adding 'torch/include/ATen/core/function_schema_inl.h' 2024-06-26T05:43:09.8318880Z adding 'torch/include/ATen/core/functional.h' 2024-06-26T05:43:09.8320080Z adding 'torch/include/ATen/core/grad_mode.h' 2024-06-26T05:43:09.8322840Z adding 'torch/include/ATen/core/interned_strings.h' 2024-06-26T05:43:09.8323590Z adding 'torch/include/ATen/core/interned_strings_class.h' 2024-06-26T05:43:09.8335410Z adding 'torch/include/ATen/core/ivalue.h' 2024-06-26T05:43:09.8354160Z adding 'torch/include/ATen/core/ivalue_inl.h' 2024-06-26T05:43:09.8355770Z adding 'torch/include/ATen/core/ivalue_to.h' 2024-06-26T05:43:09.8370030Z adding 'torch/include/ATen/core/jit_type.h' 2024-06-26T05:43:09.8375190Z adding 'torch/include/ATen/core/jit_type_base.h' 2024-06-26T05:43:09.8376630Z adding 'torch/include/ATen/core/operator_name.h' 2024-06-26T05:43:09.8378170Z adding 'torch/include/ATen/core/qualified_name.h' 2024-06-26T05:43:09.8378930Z adding 'torch/include/ATen/core/rref_interface.h' 2024-06-26T05:43:09.8380950Z adding 'torch/include/ATen/core/stack.h' 2024-06-26T05:43:09.8382660Z adding 'torch/include/ATen/core/symbol.h' 2024-06-26T05:43:09.8383910Z adding 'torch/include/ATen/core/type_factory.h' 2024-06-26T05:43:09.8384690Z adding 'torch/include/ATen/core/type_ptr.h' 2024-06-26T05:43:09.8385450Z adding 'torch/include/ATen/core/typeid.h' 2024-06-26T05:43:09.8388260Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2024-06-26T05:43:09.8389620Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2024-06-26T05:43:09.8391610Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2024-06-26T05:43:09.8393880Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2024-06-26T05:43:09.8394580Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2024-06-26T05:43:09.8396210Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2024-06-26T05:43:09.8397030Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2024-06-26T05:43:09.8400010Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2024-06-26T05:43:09.8405120Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2024-06-26T05:43:09.8406610Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2024-06-26T05:43:09.8408060Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2024-06-26T05:43:09.8410530Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2024-06-26T05:43:09.8417880Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2024-06-26T05:43:09.8418670Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2024-06-26T05:43:09.8436360Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2024-06-26T05:43:09.8437640Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2024-06-26T05:43:09.8438160Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2024-06-26T05:43:09.8439960Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2024-06-26T05:43:09.8441680Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2024-06-26T05:43:09.8443600Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2024-06-26T05:43:09.8448160Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2024-06-26T05:43:09.8449430Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2024-06-26T05:43:09.8449970Z adding 'torch/include/ATen/cpu/Utils.h' 2024-06-26T05:43:09.8451990Z adding 'torch/include/ATen/cpu/vml.h' 2024-06-26T05:43:09.8453190Z adding 'torch/include/ATen/cpu/vec/functional.h' 2024-06-26T05:43:09.8455220Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2024-06-26T05:43:09.8458250Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2024-06-26T05:43:09.8459490Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2024-06-26T05:43:09.8460110Z adding 'torch/include/ATen/cpu/vec/vec.h' 2024-06-26T05:43:09.8466960Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2024-06-26T05:43:09.8468440Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2024-06-26T05:43:09.8468960Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2024-06-26T05:43:09.8471300Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2024-06-26T05:43:09.8473380Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2024-06-26T05:43:09.8475600Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2024-06-26T05:43:09.8476190Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2024-06-26T05:43:09.8478410Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2024-06-26T05:43:09.8484700Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2024-06-26T05:43:09.8488250Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2024-06-26T05:43:09.8492010Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2024-06-26T05:43:09.8493650Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2024-06-26T05:43:09.8495890Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2024-06-26T05:43:09.8499680Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2024-06-26T05:43:09.8503930Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float_neon.h' 2024-06-26T05:43:09.8508120Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_half_neon.h' 2024-06-26T05:43:09.8516140Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2024-06-26T05:43:09.8517740Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2024-06-26T05:43:09.8524220Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2024-06-26T05:43:09.8525980Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2024-06-26T05:43:09.8527810Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2024-06-26T05:43:09.8531400Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2024-06-26T05:43:09.8535260Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2024-06-26T05:43:09.8537900Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2024-06-26T05:43:09.8540480Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2024-06-26T05:43:09.8542800Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2024-06-26T05:43:09.8548960Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2024-06-26T05:43:09.8549450Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2024-06-26T05:43:09.8550010Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2024-06-26T05:43:09.8551680Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2024-06-26T05:43:09.8554590Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2024-06-26T05:43:09.8558140Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2024-06-26T05:43:09.8573570Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2024-06-26T05:43:09.8576650Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2024-06-26T05:43:09.8585770Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2024-06-26T05:43:09.8590010Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2024-06-26T05:43:09.8595240Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2024-06-26T05:43:09.8596860Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2024-06-26T05:43:09.8599350Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2024-06-26T05:43:09.8604160Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2024-06-26T05:43:09.8611740Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2024-06-26T05:43:09.8613510Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2024-06-26T05:43:09.8619860Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2024-06-26T05:43:09.8621520Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2024-06-26T05:43:09.8622330Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2024-06-26T05:43:09.8623760Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2024-06-26T05:43:09.8627170Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2024-06-26T05:43:09.8631380Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2024-06-26T05:43:09.8633590Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2024-06-26T05:43:09.8634240Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2024-06-26T05:43:09.8635750Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2024-06-26T05:43:09.8636960Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2024-06-26T05:43:09.8637590Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2024-06-26T05:43:09.8639780Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2024-06-26T05:43:09.8641630Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2024-06-26T05:43:09.8643030Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2024-06-26T05:43:09.8643840Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2024-06-26T05:43:09.8645140Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2024-06-26T05:43:09.8647040Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2024-06-26T05:43:09.8648890Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2024-06-26T05:43:09.8649510Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2024-06-26T05:43:09.8650470Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2024-06-26T05:43:09.8651700Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2024-06-26T05:43:09.8652530Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2024-06-26T05:43:09.8653730Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2024-06-26T05:43:09.8655610Z adding 'torch/include/ATen/cuda/Exceptions.h' 2024-06-26T05:43:09.8656970Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2024-06-26T05:43:09.8657520Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2024-06-26T05:43:09.8658320Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2024-06-26T05:43:09.8659070Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2024-06-26T05:43:09.8660310Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2024-06-26T05:43:09.8661140Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2024-06-26T05:43:09.8662110Z adding 'torch/include/ATen/cuda/Sleep.h' 2024-06-26T05:43:09.8662990Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2024-06-26T05:43:09.8665660Z adding 'torch/include/ATen/cuda/cub.cuh' 2024-06-26T05:43:09.8666960Z adding 'torch/include/ATen/cuda/cub.h' 2024-06-26T05:43:09.8668140Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2024-06-26T05:43:09.8668630Z adding 'torch/include/ATen/cuda/jiterator.h' 2024-06-26T05:43:09.8670570Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2024-06-26T05:43:09.8671570Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2024-06-26T05:43:09.8672790Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2024-06-26T05:43:09.8675060Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2024-06-26T05:43:09.8675880Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2024-06-26T05:43:09.8677540Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2024-06-26T05:43:09.8678680Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2024-06-26T05:43:09.8679140Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2024-06-26T05:43:09.8680870Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2024-06-26T05:43:09.8682030Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2024-06-26T05:43:09.8683170Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2024-06-26T05:43:09.8684030Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2024-06-26T05:43:09.8686290Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2024-06-26T05:43:09.8689200Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2024-06-26T05:43:09.8691060Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2024-06-26T05:43:09.8692000Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2024-06-26T05:43:09.8693870Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2024-06-26T05:43:09.8695720Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2024-06-26T05:43:09.8698100Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2024-06-26T05:43:09.8701560Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2024-06-26T05:43:09.8702100Z adding 'torch/include/ATen/cudnn/Exceptions.h' 2024-06-26T05:43:09.8703270Z adding 'torch/include/ATen/cudnn/Handle.h' 2024-06-26T05:43:09.8703690Z adding 'torch/include/ATen/cudnn/Handles.h' 2024-06-26T05:43:09.8704820Z adding 'torch/include/ATen/cudnn/Types.h' 2024-06-26T05:43:09.8705650Z adding 'torch/include/ATen/cudnn/Utils.h' 2024-06-26T05:43:09.8706500Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2024-06-26T05:43:09.8707960Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2024-06-26T05:43:09.8709600Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2024-06-26T05:43:09.8710820Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2024-06-26T05:43:09.8711970Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2024-06-26T05:43:09.8712860Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2024-06-26T05:43:09.8713720Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2024-06-26T05:43:09.8714960Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2024-06-26T05:43:09.8716120Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2024-06-26T05:43:09.8717030Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2024-06-26T05:43:09.8718310Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2024-06-26T05:43:09.8719570Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2024-06-26T05:43:09.8722860Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2024-06-26T05:43:09.8724180Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2024-06-26T05:43:09.8726110Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2024-06-26T05:43:09.8727570Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2024-06-26T05:43:09.8729240Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2024-06-26T05:43:09.8729990Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2024-06-26T05:43:09.8732200Z adding 'torch/include/ATen/functorch/Interpreter.h' 2024-06-26T05:43:09.8734600Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2024-06-26T05:43:09.8735080Z adding 'torch/include/ATen/functorch/Macros.h' 2024-06-26T05:43:09.8736580Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2024-06-26T05:43:09.8738080Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2024-06-26T05:43:09.8738990Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2024-06-26T05:43:09.8740620Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2024-06-26T05:43:09.8741300Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2024-06-26T05:43:09.8744510Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2024-06-26T05:43:09.8745970Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2024-06-26T05:43:09.8747640Z adding 'torch/include/ATen/miopen/Descriptors.h' 2024-06-26T05:43:09.8748630Z adding 'torch/include/ATen/miopen/Exceptions.h' 2024-06-26T05:43:09.8749150Z adding 'torch/include/ATen/miopen/Handle.h' 2024-06-26T05:43:09.8750300Z adding 'torch/include/ATen/miopen/Types.h' 2024-06-26T05:43:09.8750890Z adding 'torch/include/ATen/miopen/Utils.h' 2024-06-26T05:43:09.8751950Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2024-06-26T05:43:09.8753100Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2024-06-26T05:43:09.8756430Z adding 'torch/include/ATen/mps/IndexKernels.h' 2024-06-26T05:43:09.8761300Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2024-06-26T05:43:09.8762630Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2024-06-26T05:43:09.8763800Z adding 'torch/include/ATen/mps/MPSDevice.h' 2024-06-26T05:43:09.8765180Z adding 'torch/include/ATen/mps/MPSEvent.h' 2024-06-26T05:43:09.8766360Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2024-06-26T05:43:09.8767800Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2024-06-26T05:43:09.8768950Z adding 'torch/include/ATen/mps/MPSHooks.h' 2024-06-26T05:43:09.8772700Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2024-06-26T05:43:09.8774170Z adding 'torch/include/ATen/mps/MPSStream.h' 2024-06-26T05:43:09.8779990Z adding 'torch/include/ATen/native/Activation.h' 2024-06-26T05:43:09.8780350Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2024-06-26T05:43:09.8780490Z adding 'torch/include/ATen/native/AmpKernels.h' 2024-06-26T05:43:09.8780650Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2024-06-26T05:43:09.8781420Z adding 'torch/include/ATen/native/BinaryOps.h' 2024-06-26T05:43:09.8783600Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2024-06-26T05:43:09.8784960Z adding 'torch/include/ATen/native/CPUBlas.h' 2024-06-26T05:43:09.8786220Z adding 'torch/include/ATen/native/CPUFallback.h' 2024-06-26T05:43:09.8786820Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2024-06-26T05:43:09.8788340Z adding 'torch/include/ATen/native/ComplexHelper.h' 2024-06-26T05:43:09.8789230Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2024-06-26T05:43:09.8791000Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2024-06-26T05:43:09.8794190Z adding 'torch/include/ATen/native/ConvUtils.h' 2024-06-26T05:43:09.8795070Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2024-06-26T05:43:09.8795960Z adding 'torch/include/ATen/native/Copy.h' 2024-06-26T05:43:09.8796790Z adding 'torch/include/ATen/native/Cross.h' 2024-06-26T05:43:09.8798590Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2024-06-26T05:43:09.8801060Z adding 'torch/include/ATen/native/DispatchStub.h' 2024-06-26T05:43:09.8802040Z adding 'torch/include/ATen/native/Distance.h' 2024-06-26T05:43:09.8805290Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2024-06-26T05:43:09.8810160Z adding 'torch/include/ATen/native/Distributions.h' 2024-06-26T05:43:09.8811710Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2024-06-26T05:43:09.8812670Z adding 'torch/include/ATen/native/Fill.h' 2024-06-26T05:43:09.8815770Z adding 'torch/include/ATen/native/ForeachUtils.h' 2024-06-26T05:43:09.8816970Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2024-06-26T05:43:09.8817600Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2024-06-26T05:43:09.8818540Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2024-06-26T05:43:09.8819550Z adding 'torch/include/ATen/native/FusedAdam.h' 2024-06-26T05:43:09.8820410Z adding 'torch/include/ATen/native/FusedSGD.h' 2024-06-26T05:43:09.8822540Z adding 'torch/include/ATen/native/GridSampler.h' 2024-06-26T05:43:09.8823790Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2024-06-26T05:43:09.8825110Z adding 'torch/include/ATen/native/Histogram.h' 2024-06-26T05:43:09.8826280Z adding 'torch/include/ATen/native/IndexKernel.h' 2024-06-26T05:43:09.8827780Z adding 'torch/include/ATen/native/IndexingUtils.h' 2024-06-26T05:43:09.8828780Z adding 'torch/include/ATen/native/Lerp.h' 2024-06-26T05:43:09.8829640Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2024-06-26T05:43:09.8835690Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2024-06-26T05:43:09.8836840Z adding 'torch/include/ATen/native/LossMulti.h' 2024-06-26T05:43:09.8867950Z adding 'torch/include/ATen/native/Math.h' 2024-06-26T05:43:09.8870210Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2024-06-26T05:43:09.8872270Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2024-06-26T05:43:09.8873650Z adding 'torch/include/ATen/native/MaxPooling.h' 2024-06-26T05:43:09.8874530Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2024-06-26T05:43:09.8875780Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2024-06-26T05:43:09.8876770Z adding 'torch/include/ATen/native/Normalization.h' 2024-06-26T05:43:09.8877750Z adding 'torch/include/ATen/native/Padding.h' 2024-06-26T05:43:09.8878910Z adding 'torch/include/ATen/native/PixelShuffle.h' 2024-06-26T05:43:09.8879440Z adding 'torch/include/ATen/native/PointwiseOps.h' 2024-06-26T05:43:09.8882280Z adding 'torch/include/ATen/native/Pool.h' 2024-06-26T05:43:09.8883420Z adding 'torch/include/ATen/native/Pow.h' 2024-06-26T05:43:09.8884570Z adding 'torch/include/ATen/native/RNN.h' 2024-06-26T05:43:09.8885140Z adding 'torch/include/ATen/native/RangeFactories.h' 2024-06-26T05:43:09.8886340Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2024-06-26T05:43:09.8887170Z adding 'torch/include/ATen/native/ReduceOps.h' 2024-06-26T05:43:09.8890470Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2024-06-26T05:43:09.8891480Z adding 'torch/include/ATen/native/ReductionType.h' 2024-06-26T05:43:09.8892470Z adding 'torch/include/ATen/native/Repeat.h' 2024-06-26T05:43:09.8894410Z adding 'torch/include/ATen/native/Resize.h' 2024-06-26T05:43:09.8895650Z adding 'torch/include/ATen/native/ResizeCommon.h' 2024-06-26T05:43:09.8896930Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2024-06-26T05:43:09.8897810Z adding 'torch/include/ATen/native/SegmentReduce.h' 2024-06-26T05:43:09.8900410Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2024-06-26T05:43:09.8901590Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2024-06-26T05:43:09.8902170Z adding 'torch/include/ATen/native/Sorting.h' 2024-06-26T05:43:09.8903530Z adding 'torch/include/ATen/native/SortingUtils.h' 2024-06-26T05:43:09.8905400Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2024-06-26T05:43:09.8906740Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2024-06-26T05:43:09.8908360Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2024-06-26T05:43:09.8909530Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2024-06-26T05:43:09.8910840Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2024-06-26T05:43:09.8911640Z adding 'torch/include/ATen/native/TensorCompare.h' 2024-06-26T05:43:09.8912660Z adding 'torch/include/ATen/native/TensorConversions.h' 2024-06-26T05:43:09.8913830Z adding 'torch/include/ATen/native/TensorDimApply.h' 2024-06-26T05:43:09.8915350Z adding 'torch/include/ATen/native/TensorFactories.h' 2024-06-26T05:43:09.8915870Z adding 'torch/include/ATen/native/TensorIterator.h' 2024-06-26T05:43:09.8917240Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2024-06-26T05:43:09.8917750Z adding 'torch/include/ATen/native/TensorProperties.h' 2024-06-26T05:43:09.8919490Z adding 'torch/include/ATen/native/TensorShape.h' 2024-06-26T05:43:09.8920510Z adding 'torch/include/ATen/native/TensorTransformations.h' 2024-06-26T05:43:09.8921630Z adding 'torch/include/ATen/native/TopKImpl.h' 2024-06-26T05:43:09.8922320Z adding 'torch/include/ATen/native/TransposeType.h' 2024-06-26T05:43:09.8923630Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2024-06-26T05:43:09.8924460Z adding 'torch/include/ATen/native/TypeProperties.h' 2024-06-26T05:43:09.8925780Z adding 'torch/include/ATen/native/UnaryOps.h' 2024-06-26T05:43:09.8926630Z adding 'torch/include/ATen/native/Unfold2d.h' 2024-06-26T05:43:09.8927480Z adding 'torch/include/ATen/native/Unfold3d.h' 2024-06-26T05:43:09.8928850Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2024-06-26T05:43:09.8932520Z adding 'torch/include/ATen/native/UpSample.h' 2024-06-26T05:43:09.8933680Z adding 'torch/include/ATen/native/batch_norm.h' 2024-06-26T05:43:09.8934210Z adding 'torch/include/ATen/native/group_norm.h' 2024-06-26T05:43:09.8935830Z adding 'torch/include/ATen/native/im2col.h' 2024-06-26T05:43:09.8937500Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2024-06-26T05:43:09.8938700Z adding 'torch/include/ATen/native/layer_norm.h' 2024-06-26T05:43:09.8939260Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2024-06-26T05:43:09.8940710Z adding 'torch/include/ATen/native/vol2col.h' 2024-06-26T05:43:09.8942200Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2024-06-26T05:43:09.8942780Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2024-06-26T05:43:09.8943950Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2024-06-26T05:43:09.8944480Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2024-06-26T05:43:09.8945640Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2024-06-26T05:43:09.8948380Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2024-06-26T05:43:09.8949230Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2024-06-26T05:43:09.8950630Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2024-06-26T05:43:09.8951460Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2024-06-26T05:43:09.8952640Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2024-06-26T05:43:09.8953850Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2024-06-26T05:43:09.8956670Z adding 'torch/include/ATen/native/cpu/Loops.h' 2024-06-26T05:43:09.8957560Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2024-06-26T05:43:09.8958440Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2024-06-26T05:43:09.8961340Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2024-06-26T05:43:09.8963210Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2024-06-26T05:43:09.8964100Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2024-06-26T05:43:09.8965780Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2024-06-26T05:43:09.8966630Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2024-06-26T05:43:09.8967500Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2024-06-26T05:43:09.8968340Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2024-06-26T05:43:09.8978430Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2024-06-26T05:43:09.8979570Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2024-06-26T05:43:09.8982850Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2024-06-26T05:43:09.8983710Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2024-06-26T05:43:09.8984890Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2024-06-26T05:43:09.8986660Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2024-06-26T05:43:09.8988440Z adding 'torch/include/ATen/native/cpu/utils.h' 2024-06-26T05:43:09.8989870Z adding 'torch/include/ATen/native/cpu/zmath.h' 2024-06-26T05:43:09.8991460Z adding 'torch/include/ATen/native/cuda/Activation.h' 2024-06-26T05:43:09.8992350Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2024-06-26T05:43:09.8994920Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2024-06-26T05:43:09.8997300Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2024-06-26T05:43:09.8998220Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2024-06-26T05:43:09.8999050Z adding 'torch/include/ATen/native/cuda/Copy.h' 2024-06-26T05:43:09.9003340Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2024-06-26T05:43:09.9004490Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2024-06-26T05:43:09.9005350Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2024-06-26T05:43:09.9010020Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2024-06-26T05:43:09.9010840Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2024-06-26T05:43:09.9012070Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2024-06-26T05:43:09.9014370Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2024-06-26T05:43:09.9015260Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2024-06-26T05:43:09.9017430Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2024-06-26T05:43:09.9018320Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2024-06-26T05:43:09.9019180Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2024-06-26T05:43:09.9021120Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2024-06-26T05:43:09.9022500Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2024-06-26T05:43:09.9023120Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2024-06-26T05:43:09.9025640Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2024-06-26T05:43:09.9047920Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2024-06-26T05:43:09.9051540Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2024-06-26T05:43:09.9052700Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2024-06-26T05:43:09.9055230Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2024-06-26T05:43:09.9066730Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2024-06-26T05:43:09.9070430Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2024-06-26T05:43:09.9071600Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2024-06-26T05:43:09.9072910Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2024-06-26T05:43:09.9082660Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2024-06-26T05:43:09.9083810Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2024-06-26T05:43:09.9084820Z adding 'torch/include/ATen/native/cuda/Resize.h' 2024-06-26T05:43:09.9085850Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2024-06-26T05:43:09.9086360Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2024-06-26T05:43:09.9090210Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2024-06-26T05:43:09.9090940Z adding 'torch/include/ATen/native/cuda/Sort.h' 2024-06-26T05:43:09.9091800Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2024-06-26T05:43:09.9094470Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2024-06-26T05:43:09.9095320Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2024-06-26T05:43:09.9096970Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2024-06-26T05:43:09.9099840Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2024-06-26T05:43:09.9107040Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2024-06-26T05:43:09.9107360Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2024-06-26T05:43:09.9107520Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2024-06-26T05:43:09.9107680Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2024-06-26T05:43:09.9108300Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2024-06-26T05:43:09.9109680Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2024-06-26T05:43:09.9110830Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2024-06-26T05:43:09.9111390Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2024-06-26T05:43:09.9113550Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2024-06-26T05:43:09.9114440Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2024-06-26T05:43:09.9115260Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2024-06-26T05:43:09.9117340Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2024-06-26T05:43:09.9119140Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2024-06-26T05:43:09.9123400Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2024-06-26T05:43:09.9124250Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2024-06-26T05:43:09.9126520Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2024-06-26T05:43:09.9127650Z adding 'torch/include/ATen/native/mps/Copy.h' 2024-06-26T05:43:09.9128870Z adding 'torch/include/ATen/native/mps/MPSGraphSonomaOps.h' 2024-06-26T05:43:09.9130630Z adding 'torch/include/ATen/native/mps/MPSGraphVenturaOps.h' 2024-06-26T05:43:09.9134110Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2024-06-26T05:43:09.9134970Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2024-06-26T05:43:09.9136260Z adding 'torch/include/ATen/native/mps/UnaryConstants.h' 2024-06-26T05:43:09.9137480Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2024-06-26T05:43:09.9137960Z adding 'torch/include/ATen/native/nested/NestedTensorFactories.h' 2024-06-26T05:43:09.9139420Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2024-06-26T05:43:09.9140680Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2024-06-26T05:43:09.9141520Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2024-06-26T05:43:09.9145060Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2024-06-26T05:43:09.9146550Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2024-06-26T05:43:09.9147740Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2024-06-26T05:43:09.9148560Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2024-06-26T05:43:09.9149400Z adding 'torch/include/ATen/native/quantized/Copy.h' 2024-06-26T05:43:09.9150490Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2024-06-26T05:43:09.9151090Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2024-06-26T05:43:09.9152610Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2024-06-26T05:43:09.9153800Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2024-06-26T05:43:09.9154730Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2024-06-26T05:43:09.9157370Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2024-06-26T05:43:09.9160880Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2024-06-26T05:43:09.9163300Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2024-06-26T05:43:09.9164960Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2024-06-26T05:43:09.9165810Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2024-06-26T05:43:09.9168390Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2024-06-26T05:43:09.9171100Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2024-06-26T05:43:09.9173360Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2024-06-26T05:43:09.9174180Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2024-06-26T05:43:09.9175350Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2024-06-26T05:43:09.9175850Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2024-06-26T05:43:09.9177370Z adding 'torch/include/ATen/native/transformers/attention.h' 2024-06-26T05:43:09.9180430Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2024-06-26T05:43:09.9181580Z adding 'torch/include/ATen/native/utils/Factory.h' 2024-06-26T05:43:09.9182480Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2024-06-26T05:43:09.9183770Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2024-06-26T05:43:09.9244300Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2024-06-26T05:43:09.9245880Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2024-06-26T05:43:09.9247390Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9248550Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2024-06-26T05:43:09.9249770Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2024-06-26T05:43:09.9250900Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h' 2024-06-26T05:43:09.9252050Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2024-06-26T05:43:09.9253370Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2024-06-26T05:43:09.9254720Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9255810Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2024-06-26T05:43:09.9257120Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2024-06-26T05:43:09.9258010Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h' 2024-06-26T05:43:09.9259250Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2024-06-26T05:43:09.9260530Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2024-06-26T05:43:09.9261880Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2024-06-26T05:43:09.9263150Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2024-06-26T05:43:09.9264490Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9265600Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2024-06-26T05:43:09.9266790Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2024-06-26T05:43:09.9267940Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2024-06-26T05:43:09.9269110Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2024-06-26T05:43:09.9270400Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9271500Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2024-06-26T05:43:09.9272400Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2024-06-26T05:43:09.9273740Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2024-06-26T05:43:09.9275760Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2024-06-26T05:43:09.9276940Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2024-06-26T05:43:09.9278280Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9279380Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2024-06-26T05:43:09.9280210Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2024-06-26T05:43:09.9281510Z adding 'torch/include/ATen/ops/_add_relu.h' 2024-06-26T05:43:09.9282620Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9283700Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2024-06-26T05:43:09.9284870Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2024-06-26T05:43:09.9285720Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2024-06-26T05:43:09.9287030Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2024-06-26T05:43:09.9288160Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2024-06-26T05:43:09.9289230Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:09.9290290Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2024-06-26T05:43:09.9291170Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2024-06-26T05:43:09.9292450Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2024-06-26T05:43:09.9293020Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2024-06-26T05:43:09.9295130Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2024-06-26T05:43:09.9296280Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2024-06-26T05:43:09.9297420Z adding 'torch/include/ATen/ops/_aminmax.h' 2024-06-26T05:43:09.9298610Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9299170Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2024-06-26T05:43:09.9300480Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2024-06-26T05:43:09.9301290Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2024-06-26T05:43:09.9302560Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2024-06-26T05:43:09.9303800Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2024-06-26T05:43:09.9304810Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9305960Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2024-06-26T05:43:09.9306480Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2024-06-26T05:43:09.9307730Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2024-06-26T05:43:09.9308940Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2024-06-26T05:43:09.9310020Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2024-06-26T05:43:09.9311020Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9312140Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2024-06-26T05:43:09.9312670Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2024-06-26T05:43:09.9313880Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2024-06-26T05:43:09.9314710Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2024-06-26T05:43:09.9316070Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2024-06-26T05:43:09.9316900Z adding 'torch/include/ATen/ops/_assert_async.h' 2024-06-26T05:43:09.9318060Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2024-06-26T05:43:09.9318920Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2024-06-26T05:43:09.9319780Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2024-06-26T05:43:09.9321100Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2024-06-26T05:43:09.9321710Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2024-06-26T05:43:09.9323130Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9323630Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2024-06-26T05:43:09.9324910Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2024-06-26T05:43:09.9326120Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2024-06-26T05:43:09.9327160Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9327760Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2024-06-26T05:43:09.9329040Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2024-06-26T05:43:09.9329890Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2024-06-26T05:43:09.9330990Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9332060Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2024-06-26T05:43:09.9332920Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2024-06-26T05:43:09.9333770Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2024-06-26T05:43:09.9335080Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9335560Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2024-06-26T05:43:09.9336830Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2024-06-26T05:43:09.9337630Z adding 'torch/include/ATen/ops/_backward.h' 2024-06-26T05:43:09.9338920Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9339330Z adding 'torch/include/ATen/ops/_backward_native.h' 2024-06-26T05:43:09.9340710Z adding 'torch/include/ATen/ops/_backward_ops.h' 2024-06-26T05:43:09.9341920Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2024-06-26T05:43:09.9342820Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2024-06-26T05:43:09.9344180Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9344650Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2024-06-26T05:43:09.9346040Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2024-06-26T05:43:09.9347290Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9347790Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2024-06-26T05:43:09.9349140Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2024-06-26T05:43:09.9350280Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2024-06-26T05:43:09.9351280Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9352370Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2024-06-26T05:43:09.9353520Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2024-06-26T05:43:09.9354680Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2024-06-26T05:43:09.9355670Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9356770Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2024-06-26T05:43:09.9357620Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2024-06-26T05:43:09.9358800Z adding 'torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h' 2024-06-26T05:43:09.9359680Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2024-06-26T05:43:09.9361020Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2024-06-26T05:43:09.9361820Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2024-06-26T05:43:09.9363120Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9363610Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2024-06-26T05:43:09.9368980Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2024-06-26T05:43:09.9369280Z adding 'torch/include/ATen/ops/_cast_Char.h' 2024-06-26T05:43:09.9369570Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9369720Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2024-06-26T05:43:09.9369860Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2024-06-26T05:43:09.9370040Z adding 'torch/include/ATen/ops/_cast_Double.h' 2024-06-26T05:43:09.9370490Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9371400Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2024-06-26T05:43:09.9372510Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2024-06-26T05:43:09.9373490Z adding 'torch/include/ATen/ops/_cast_Float.h' 2024-06-26T05:43:09.9374470Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9375530Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2024-06-26T05:43:09.9376380Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2024-06-26T05:43:09.9377360Z adding 'torch/include/ATen/ops/_cast_Half.h' 2024-06-26T05:43:09.9378350Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9379400Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2024-06-26T05:43:09.9379990Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2024-06-26T05:43:09.9381160Z adding 'torch/include/ATen/ops/_cast_Int.h' 2024-06-26T05:43:09.9382140Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9382890Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2024-06-26T05:43:09.9383980Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2024-06-26T05:43:09.9384850Z adding 'torch/include/ATen/ops/_cast_Long.h' 2024-06-26T05:43:09.9385850Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9386940Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2024-06-26T05:43:09.9387770Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2024-06-26T05:43:09.9388670Z adding 'torch/include/ATen/ops/_cast_Short.h' 2024-06-26T05:43:09.9389960Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9390360Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2024-06-26T05:43:09.9391570Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2024-06-26T05:43:09.9392570Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2024-06-26T05:43:09.9393560Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9394640Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2024-06-26T05:43:09.9395500Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2024-06-26T05:43:09.9396340Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2024-06-26T05:43:09.9397530Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2024-06-26T05:43:09.9398680Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2024-06-26T05:43:09.9399400Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9400510Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2024-06-26T05:43:09.9401380Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2024-06-26T05:43:09.9402240Z adding 'torch/include/ATen/ops/_cdist_forward_mps_dispatch.h' 2024-06-26T05:43:09.9403380Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2024-06-26T05:43:09.9404230Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2024-06-26T05:43:09.9405410Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2024-06-26T05:43:09.9406420Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9407510Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2024-06-26T05:43:09.9408020Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2024-06-26T05:43:09.9409230Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2024-06-26T05:43:09.9410370Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2024-06-26T05:43:09.9411230Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2024-06-26T05:43:09.9412540Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9412970Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2024-06-26T05:43:09.9414220Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2024-06-26T05:43:09.9415010Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2024-06-26T05:43:09.9416300Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9417080Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2024-06-26T05:43:09.9418220Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2024-06-26T05:43:09.9419210Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2024-06-26T05:43:09.9420190Z adding 'torch/include/ATen/ops/_coalesce.h' 2024-06-26T05:43:09.9421180Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9422220Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2024-06-26T05:43:09.9423210Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2024-06-26T05:43:09.9424200Z adding 'torch/include/ATen/ops/_coalesced.h' 2024-06-26T05:43:09.9425190Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9425960Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2024-06-26T05:43:09.9427100Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2024-06-26T05:43:09.9428110Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2024-06-26T05:43:09.9429190Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2024-06-26T05:43:09.9430100Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2024-06-26T05:43:09.9431270Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2024-06-26T05:43:09.9431770Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2024-06-26T05:43:09.9433080Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2024-06-26T05:43:09.9433850Z adding 'torch/include/ATen/ops/_conj.h' 2024-06-26T05:43:09.9435120Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9435860Z adding 'torch/include/ATen/ops/_conj_copy.h' 2024-06-26T05:43:09.9437150Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9437820Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:09.9438970Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2024-06-26T05:43:09.9439960Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2024-06-26T05:43:09.9440940Z adding 'torch/include/ATen/ops/_conj_native.h' 2024-06-26T05:43:09.9441790Z adding 'torch/include/ATen/ops/_conj_ops.h' 2024-06-26T05:43:09.9442690Z adding 'torch/include/ATen/ops/_conj_physical.h' 2024-06-26T05:43:09.9443950Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9444500Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2024-06-26T05:43:09.9445780Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2024-06-26T05:43:09.9447090Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2024-06-26T05:43:09.9448220Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2024-06-26T05:43:09.9449060Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2024-06-26T05:43:09.9450280Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2024-06-26T05:43:09.9451520Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2024-06-26T05:43:09.9452350Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:09.9453490Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2024-06-26T05:43:09.9454120Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2024-06-26T05:43:09.9455370Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2024-06-26T05:43:09.9456010Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2024-06-26T05:43:09.9457280Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2024-06-26T05:43:09.9458470Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2024-06-26T05:43:09.9459100Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2024-06-26T05:43:09.9460540Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:09.9461120Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2024-06-26T05:43:09.9462330Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2024-06-26T05:43:09.9463170Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2024-06-26T05:43:09.9464380Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2024-06-26T05:43:09.9464900Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2024-06-26T05:43:09.9466300Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2024-06-26T05:43:09.9467140Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2024-06-26T05:43:09.9468360Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cpu_dispatch.h' 2024-06-26T05:43:09.9468880Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2024-06-26T05:43:09.9470070Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h' 2024-06-26T05:43:09.9470920Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2024-06-26T05:43:09.9472080Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2024-06-26T05:43:09.9473570Z adding 'torch/include/ATen/ops/_convolution.h' 2024-06-26T05:43:09.9474920Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9475750Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9477100Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2024-06-26T05:43:09.9478400Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9478910Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2024-06-26T05:43:09.9480320Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2024-06-26T05:43:09.9481430Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2024-06-26T05:43:09.9482570Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9483070Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2024-06-26T05:43:09.9484380Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2024-06-26T05:43:09.9485260Z adding 'torch/include/ATen/ops/_convolution_native.h' 2024-06-26T05:43:09.9486670Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2024-06-26T05:43:09.9487790Z adding 'torch/include/ATen/ops/_copy_from.h' 2024-06-26T05:43:09.9488420Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2024-06-26T05:43:09.9489800Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9490440Z adding 'torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h' 2024-06-26T05:43:09.9491580Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2024-06-26T05:43:09.9492710Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2024-06-26T05:43:09.9493430Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9494580Z adding 'torch/include/ATen/ops/_copy_from_mps_dispatch.h' 2024-06-26T05:43:09.9495470Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2024-06-26T05:43:09.9496670Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2024-06-26T05:43:09.9497630Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2024-06-26T05:43:09.9498700Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2024-06-26T05:43:09.9499230Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2024-06-26T05:43:09.9500460Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2024-06-26T05:43:09.9501350Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2024-06-26T05:43:09.9502530Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2024-06-26T05:43:09.9503360Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2024-06-26T05:43:09.9504510Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2024-06-26T05:43:09.9505380Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2024-06-26T05:43:09.9506610Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2024-06-26T05:43:09.9507230Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2024-06-26T05:43:09.9508510Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2024-06-26T05:43:09.9509620Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2024-06-26T05:43:09.9510800Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2024-06-26T05:43:09.9511960Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9512610Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2024-06-26T05:43:09.9513830Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2024-06-26T05:43:09.9514660Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2024-06-26T05:43:09.9516000Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2024-06-26T05:43:09.9517260Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9517800Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2024-06-26T05:43:09.9519050Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2024-06-26T05:43:09.9519910Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2024-06-26T05:43:09.9521090Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2024-06-26T05:43:09.9522210Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2024-06-26T05:43:09.9523380Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2024-06-26T05:43:09.9524390Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9525470Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2024-06-26T05:43:09.9526730Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2024-06-26T05:43:09.9527920Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2024-06-26T05:43:09.9529120Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2024-06-26T05:43:09.9530120Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9534530Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2024-06-26T05:43:09.9534880Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2024-06-26T05:43:09.9535080Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2024-06-26T05:43:09.9535210Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2024-06-26T05:43:09.9536680Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2024-06-26T05:43:09.9538000Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9539080Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2024-06-26T05:43:09.9539910Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2024-06-26T05:43:09.9541300Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2024-06-26T05:43:09.9542580Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9543470Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2024-06-26T05:43:09.9544840Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2024-06-26T05:43:09.9546150Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9546690Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2024-06-26T05:43:09.9547930Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2024-06-26T05:43:09.9549080Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2024-06-26T05:43:09.9549900Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2024-06-26T05:43:09.9551370Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2024-06-26T05:43:09.9552230Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2024-06-26T05:43:09.9553530Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9554000Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2024-06-26T05:43:09.9555230Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2024-06-26T05:43:09.9556100Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2024-06-26T05:43:09.9557410Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9557860Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2024-06-26T05:43:09.9559100Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2024-06-26T05:43:09.9559930Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2024-06-26T05:43:09.9561250Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9561710Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2024-06-26T05:43:09.9562930Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2024-06-26T05:43:09.9563790Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2024-06-26T05:43:09.9565110Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9565510Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2024-06-26T05:43:09.9566850Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2024-06-26T05:43:09.9567610Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2024-06-26T05:43:09.9568700Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2024-06-26T05:43:09.9569580Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2024-06-26T05:43:09.9570410Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2024-06-26T05:43:09.9571580Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2024-06-26T05:43:09.9572580Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2024-06-26T05:43:09.9573620Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2024-06-26T05:43:09.9574130Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2024-06-26T05:43:09.9575320Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2024-06-26T05:43:09.9576480Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2024-06-26T05:43:09.9577110Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2024-06-26T05:43:09.9578590Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9579130Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2024-06-26T05:43:09.9580380Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2024-06-26T05:43:09.9581140Z adding 'torch/include/ATen/ops/_dimI.h' 2024-06-26T05:43:09.9581990Z adding 'torch/include/ATen/ops/_dimI_native.h' 2024-06-26T05:43:09.9583100Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2024-06-26T05:43:09.9583930Z adding 'torch/include/ATen/ops/_dimV.h' 2024-06-26T05:43:09.9584770Z adding 'torch/include/ATen/ops/_dimV_native.h' 2024-06-26T05:43:09.9585920Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2024-06-26T05:43:09.9586830Z adding 'torch/include/ATen/ops/_dim_arange.h' 2024-06-26T05:43:09.9587820Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9588900Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2024-06-26T05:43:09.9589790Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2024-06-26T05:43:09.9590790Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2024-06-26T05:43:09.9591930Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9592430Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2024-06-26T05:43:09.9593730Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2024-06-26T05:43:09.9594360Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2024-06-26T05:43:09.9595670Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2024-06-26T05:43:09.9597000Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2024-06-26T05:43:09.9598240Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2024-06-26T05:43:09.9599020Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2024-06-26T05:43:09.9600500Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2024-06-26T05:43:09.9601750Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2024-06-26T05:43:09.9603020Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2024-06-26T05:43:09.9603590Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2024-06-26T05:43:09.9605010Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2024-06-26T05:43:09.9606300Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2024-06-26T05:43:09.9607610Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9608180Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2024-06-26T05:43:09.9609440Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2024-06-26T05:43:09.9610110Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2024-06-26T05:43:09.9611350Z adding 'torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h' 2024-06-26T05:43:09.9612110Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2024-06-26T05:43:09.9613390Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2024-06-26T05:43:09.9614650Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2024-06-26T05:43:09.9615810Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2024-06-26T05:43:09.9617120Z adding 'torch/include/ATen/ops/_embedding_bag_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9617610Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2024-06-26T05:43:09.9618960Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2024-06-26T05:43:09.9619930Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9621030Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2024-06-26T05:43:09.9621890Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2024-06-26T05:43:09.9623330Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2024-06-26T05:43:09.9624640Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9625230Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2024-06-26T05:43:09.9626500Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2024-06-26T05:43:09.9627360Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2024-06-26T05:43:09.9628660Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2024-06-26T05:43:09.9629830Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2024-06-26T05:43:09.9631130Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9631620Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2024-06-26T05:43:09.9632810Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2024-06-26T05:43:09.9633960Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2024-06-26T05:43:09.9635110Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2024-06-26T05:43:09.9635950Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2024-06-26T05:43:09.9637190Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2024-06-26T05:43:09.9638370Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2024-06-26T05:43:09.9639720Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9640240Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2024-06-26T05:43:09.9641570Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2024-06-26T05:43:09.9642160Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2024-06-26T05:43:09.9643600Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2024-06-26T05:43:09.9644710Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2024-06-26T05:43:09.9645710Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:09.9646780Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2024-06-26T05:43:09.9647950Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2024-06-26T05:43:09.9649200Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2024-06-26T05:43:09.9650510Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9651080Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2024-06-26T05:43:09.9652320Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2024-06-26T05:43:09.9653510Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2024-06-26T05:43:09.9655040Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2024-06-26T05:43:09.9656380Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9656980Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2024-06-26T05:43:09.9658240Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2024-06-26T05:43:09.9659410Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2024-06-26T05:43:09.9660480Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2024-06-26T05:43:09.9661210Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9662300Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2024-06-26T05:43:09.9663460Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2024-06-26T05:43:09.9664420Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2024-06-26T05:43:09.9665620Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2024-06-26T05:43:09.9666330Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2024-06-26T05:43:09.9667610Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2024-06-26T05:43:09.9668260Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2024-06-26T05:43:09.9669590Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2024-06-26T05:43:09.9670530Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9671680Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2024-06-26T05:43:09.9672280Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2024-06-26T05:43:09.9673480Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2024-06-26T05:43:09.9674650Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2024-06-26T05:43:09.9675790Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2024-06-26T05:43:09.9676460Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2024-06-26T05:43:09.9677800Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2024-06-26T05:43:09.9678470Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2024-06-26T05:43:09.9679710Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2024-06-26T05:43:09.9680840Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2024-06-26T05:43:09.9681640Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9682790Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2024-06-26T05:43:09.9683450Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2024-06-26T05:43:09.9684650Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2024-06-26T05:43:09.9685810Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2024-06-26T05:43:09.9686760Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2024-06-26T05:43:09.9688060Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9688750Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2024-06-26T05:43:09.9689980Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2024-06-26T05:43:09.9690660Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2024-06-26T05:43:09.9692100Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2024-06-26T05:43:09.9693090Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2024-06-26T05:43:09.9694280Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2024-06-26T05:43:09.9694870Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2024-06-26T05:43:09.9696110Z adding 'torch/include/ATen/ops/_fft_c2c_mps_dispatch.h' 2024-06-26T05:43:09.9696970Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2024-06-26T05:43:09.9698130Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2024-06-26T05:43:09.9699300Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2024-06-26T05:43:09.9700280Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2024-06-26T05:43:09.9701460Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2024-06-26T05:43:09.9701970Z adding 'torch/include/ATen/ops/_fft_c2r_mps_dispatch.h' 2024-06-26T05:43:09.9706540Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2024-06-26T05:43:09.9706840Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2024-06-26T05:43:09.9706960Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2024-06-26T05:43:09.9707130Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2024-06-26T05:43:09.9707300Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2024-06-26T05:43:09.9707870Z adding 'torch/include/ATen/ops/_fft_r2c_mps_dispatch.h' 2024-06-26T05:43:09.9709210Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2024-06-26T05:43:09.9710200Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2024-06-26T05:43:09.9711310Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2024-06-26T05:43:09.9712410Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2024-06-26T05:43:09.9712890Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2024-06-26T05:43:09.9714090Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2024-06-26T05:43:09.9714930Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2024-06-26T05:43:09.9716300Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2024-06-26T05:43:09.9717520Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2024-06-26T05:43:09.9718360Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2024-06-26T05:43:09.9719560Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2024-06-26T05:43:09.9720840Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2024-06-26T05:43:09.9722020Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2024-06-26T05:43:09.9722660Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2024-06-26T05:43:09.9724100Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2024-06-26T05:43:09.9725200Z adding 'torch/include/ATen/ops/_foobar.h' 2024-06-26T05:43:09.9726500Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9727010Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2024-06-26T05:43:09.9728280Z adding 'torch/include/ATen/ops/_foobar_native.h' 2024-06-26T05:43:09.9729260Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2024-06-26T05:43:09.9730140Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2024-06-26T05:43:09.9731440Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9732060Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2024-06-26T05:43:09.9733250Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2024-06-26T05:43:09.9734430Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2024-06-26T05:43:09.9735420Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2024-06-26T05:43:09.9736420Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9737530Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2024-06-26T05:43:09.9738370Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2024-06-26T05:43:09.9739530Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2024-06-26T05:43:09.9740790Z adding 'torch/include/ATen/ops/_foreach_add.h' 2024-06-26T05:43:09.9742050Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9742640Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2024-06-26T05:43:09.9743970Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2024-06-26T05:43:09.9745470Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2024-06-26T05:43:09.9746730Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2024-06-26T05:43:09.9748020Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9749100Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2024-06-26T05:43:09.9750280Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2024-06-26T05:43:09.9751690Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2024-06-26T05:43:09.9753060Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2024-06-26T05:43:09.9754330Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9755410Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2024-06-26T05:43:09.9756270Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2024-06-26T05:43:09.9757760Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2024-06-26T05:43:09.9758610Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2024-06-26T05:43:09.9759910Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9760500Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2024-06-26T05:43:09.9761710Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2024-06-26T05:43:09.9762870Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2024-06-26T05:43:09.9763480Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2024-06-26T05:43:09.9764870Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9765430Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2024-06-26T05:43:09.9766670Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2024-06-26T05:43:09.9767520Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2024-06-26T05:43:09.9773870Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2024-06-26T05:43:09.9774910Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9775990Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2024-06-26T05:43:09.9776900Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2024-06-26T05:43:09.9778020Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2024-06-26T05:43:09.9779160Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2024-06-26T05:43:09.9780460Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9781050Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2024-06-26T05:43:09.9782340Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2024-06-26T05:43:09.9783700Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2024-06-26T05:43:09.9784950Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2024-06-26T05:43:09.9786120Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9786950Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2024-06-26T05:43:09.9788120Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2024-06-26T05:43:09.9789370Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2024-06-26T05:43:09.9790570Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2024-06-26T05:43:09.9791720Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9792200Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2024-06-26T05:43:09.9793370Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2024-06-26T05:43:09.9794540Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2024-06-26T05:43:09.9795550Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2024-06-26T05:43:09.9796530Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9797140Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2024-06-26T05:43:09.9798370Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2024-06-26T05:43:09.9799540Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2024-06-26T05:43:09.9800380Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2024-06-26T05:43:09.9801380Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9802170Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2024-06-26T05:43:09.9803300Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2024-06-26T05:43:09.9804160Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2024-06-26T05:43:09.9805490Z adding 'torch/include/ATen/ops/_foreach_div.h' 2024-06-26T05:43:09.9806790Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9807350Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2024-06-26T05:43:09.9808510Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2024-06-26T05:43:09.9810100Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2024-06-26T05:43:09.9811100Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2024-06-26T05:43:09.9812230Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9812840Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2024-06-26T05:43:09.9814020Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2024-06-26T05:43:09.9815050Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2024-06-26T05:43:09.9816030Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2024-06-26T05:43:09.9817030Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9817800Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2024-06-26T05:43:09.9818950Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2024-06-26T05:43:09.9819790Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2024-06-26T05:43:09.9820920Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2024-06-26T05:43:09.9822030Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9822600Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2024-06-26T05:43:09.9823790Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2024-06-26T05:43:09.9824650Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2024-06-26T05:43:09.9825720Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2024-06-26T05:43:09.9826850Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9827430Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2024-06-26T05:43:09.9828630Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2024-06-26T05:43:09.9829760Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2024-06-26T05:43:09.9830600Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2024-06-26T05:43:09.9831730Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9832340Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2024-06-26T05:43:09.9833500Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2024-06-26T05:43:09.9834660Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2024-06-26T05:43:09.9835490Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2024-06-26T05:43:09.9836660Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9837240Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2024-06-26T05:43:09.9838460Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2024-06-26T05:43:09.9839310Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2024-06-26T05:43:09.9840500Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2024-06-26T05:43:09.9841840Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9842310Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2024-06-26T05:43:09.9843570Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2024-06-26T05:43:09.9844850Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2024-06-26T05:43:09.9845720Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2024-06-26T05:43:09.9846980Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9848070Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2024-06-26T05:43:09.9848920Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2024-06-26T05:43:09.9850070Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2024-06-26T05:43:09.9850920Z adding 'torch/include/ATen/ops/_foreach_log.h' 2024-06-26T05:43:09.9852080Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2024-06-26T05:43:09.9853230Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9853710Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2024-06-26T05:43:09.9854870Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2024-06-26T05:43:09.9856030Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2024-06-26T05:43:09.9856650Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2024-06-26T05:43:09.9858050Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9858570Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2024-06-26T05:43:09.9859830Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2024-06-26T05:43:09.9860990Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2024-06-26T05:43:09.9861830Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2024-06-26T05:43:09.9862830Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9863910Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2024-06-26T05:43:09.9864410Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2024-06-26T05:43:09.9865740Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2024-06-26T05:43:09.9866860Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9867640Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2024-06-26T05:43:09.9868840Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2024-06-26T05:43:09.9869960Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2024-06-26T05:43:09.9870940Z adding 'torch/include/ATen/ops/_foreach_max.h' 2024-06-26T05:43:09.9871680Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9872920Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2024-06-26T05:43:09.9873440Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2024-06-26T05:43:09.9874740Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2024-06-26T05:43:09.9875920Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2024-06-26T05:43:09.9877110Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9877880Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2024-06-26T05:43:09.9882610Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2024-06-26T05:43:09.9882920Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2024-06-26T05:43:09.9883070Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2024-06-26T05:43:09.9883350Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9884150Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2024-06-26T05:43:09.9885470Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2024-06-26T05:43:09.9886770Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2024-06-26T05:43:09.9887990Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2024-06-26T05:43:09.9889180Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9890340Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2024-06-26T05:43:09.9891140Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2024-06-26T05:43:09.9892760Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2024-06-26T05:43:09.9893900Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2024-06-26T05:43:09.9894690Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9895890Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2024-06-26T05:43:09.9896410Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2024-06-26T05:43:09.9897750Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2024-06-26T05:43:09.9898750Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2024-06-26T05:43:09.9899880Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9900500Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2024-06-26T05:43:09.9901680Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2024-06-26T05:43:09.9902840Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2024-06-26T05:43:09.9903870Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2024-06-26T05:43:09.9905170Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9905730Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2024-06-26T05:43:09.9907080Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2024-06-26T05:43:09.9908360Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2024-06-26T05:43:09.9909370Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2024-06-26T05:43:09.9910380Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9911500Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2024-06-26T05:43:09.9912100Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2024-06-26T05:43:09.9913590Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2024-06-26T05:43:09.9914070Z adding 'torch/include/ATen/ops/_foreach_round.h' 2024-06-26T05:43:09.9915440Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9916010Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2024-06-26T05:43:09.9919010Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2024-06-26T05:43:09.9920340Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2024-06-26T05:43:09.9921660Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2024-06-26T05:43:09.9923170Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9924330Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2024-06-26T05:43:09.9925500Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2024-06-26T05:43:09.9926800Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2024-06-26T05:43:09.9928020Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2024-06-26T05:43:09.9929370Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9930450Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2024-06-26T05:43:09.9931600Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2024-06-26T05:43:09.9932930Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2024-06-26T05:43:09.9934140Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2024-06-26T05:43:09.9935450Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9936910Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2024-06-26T05:43:09.9937420Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2024-06-26T05:43:09.9938930Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2024-06-26T05:43:09.9940130Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2024-06-26T05:43:09.9941440Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9942610Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2024-06-26T05:43:09.9943730Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2024-06-26T05:43:09.9944940Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2024-06-26T05:43:09.9946140Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2024-06-26T05:43:09.9947440Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9948520Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2024-06-26T05:43:09.9949660Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2024-06-26T05:43:09.9950950Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2024-06-26T05:43:09.9952360Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2024-06-26T05:43:09.9953770Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9954880Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2024-06-26T05:43:09.9956110Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2024-06-26T05:43:09.9957670Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2024-06-26T05:43:09.9958880Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2024-06-26T05:43:09.9960200Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9961290Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2024-06-26T05:43:09.9962420Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2024-06-26T05:43:09.9963680Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2024-06-26T05:43:09.9964860Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2024-06-26T05:43:09.9966160Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9967240Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2024-06-26T05:43:09.9968380Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2024-06-26T05:43:09.9969630Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2024-06-26T05:43:09.9970810Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2024-06-26T05:43:09.9972100Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9973180Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2024-06-26T05:43:09.9974320Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2024-06-26T05:43:09.9975570Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2024-06-26T05:43:09.9976730Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2024-06-26T05:43:09.9978030Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9979110Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2024-06-26T05:43:09.9980250Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2024-06-26T05:43:09.9981480Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2024-06-26T05:43:09.9982700Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2024-06-26T05:43:09.9983940Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2024-06-26T05:43:09.9985220Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2024-06-26T05:43:09.9986500Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2024-06-26T05:43:09.9987630Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2024-06-26T05:43:09.9988920Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9989980Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2024-06-26T05:43:09.9991190Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2024-06-26T05:43:09.9992480Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2024-06-26T05:43:09.9993760Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9994860Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2024-06-26T05:43:09.9996200Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:09.9996910Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2024-06-26T05:43:09.9998390Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2024-06-26T05:43:09.9999540Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2024-06-26T05:43:10.0000800Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2024-06-26T05:43:10.0002020Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2024-06-26T05:43:10.0003440Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0004520Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2024-06-26T05:43:10.0005680Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2024-06-26T05:43:10.0007100Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2024-06-26T05:43:10.0008690Z adding 'torch/include/ATen/ops/_fused_adam.h' 2024-06-26T05:43:10.0010170Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0011330Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2024-06-26T05:43:10.0012550Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2024-06-26T05:43:10.0013810Z adding 'torch/include/ATen/ops/_fused_adam_mps_dispatch.h' 2024-06-26T05:43:10.0015110Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2024-06-26T05:43:10.0016930Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2024-06-26T05:43:10.0018560Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2024-06-26T05:43:10.0020050Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0021170Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2024-06-26T05:43:10.0022330Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2024-06-26T05:43:10.0023500Z adding 'torch/include/ATen/ops/_fused_adamw_mps_dispatch.h' 2024-06-26T05:43:10.0024810Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2024-06-26T05:43:10.0026590Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2024-06-26T05:43:10.0027870Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2024-06-26T05:43:10.0029200Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0030300Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2024-06-26T05:43:10.0031490Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2024-06-26T05:43:10.0033090Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2024-06-26T05:43:10.0034590Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2024-06-26T05:43:10.0036010Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0037160Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2024-06-26T05:43:10.0038380Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2024-06-26T05:43:10.0039260Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2024-06-26T05:43:10.0041190Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2024-06-26T05:43:10.0041980Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2024-06-26T05:43:10.0043260Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2024-06-26T05:43:10.0044620Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2024-06-26T05:43:10.0045460Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2024-06-26T05:43:10.0051250Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2024-06-26T05:43:10.0051700Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2024-06-26T05:43:10.0052070Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2024-06-26T05:43:10.0052540Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0053040Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2024-06-26T05:43:10.0053760Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2024-06-26T05:43:10.0054590Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2024-06-26T05:43:10.0056520Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2024-06-26T05:43:10.0057830Z adding 'torch/include/ATen/ops/_fw_primal.h' 2024-06-26T05:43:10.0058770Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0059870Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2024-06-26T05:43:10.0061840Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0062550Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0063630Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2024-06-26T05:43:10.0064910Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2024-06-26T05:43:10.0066150Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2024-06-26T05:43:10.0066980Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2024-06-26T05:43:10.0068440Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2024-06-26T05:43:10.0069850Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0070540Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2024-06-26T05:43:10.0072020Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2024-06-26T05:43:10.0073320Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2024-06-26T05:43:10.0074240Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2024-06-26T05:43:10.0075830Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0076620Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2024-06-26T05:43:10.0078150Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2024-06-26T05:43:10.0079150Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0080190Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2024-06-26T05:43:10.0081710Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2024-06-26T05:43:10.0082620Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2024-06-26T05:43:10.0084220Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0084990Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2024-06-26T05:43:10.0086560Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2024-06-26T05:43:10.0087310Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2024-06-26T05:43:10.0088890Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0089690Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2024-06-26T05:43:10.0091140Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2024-06-26T05:43:10.0092470Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2024-06-26T05:43:10.0093430Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0094870Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2024-06-26T05:43:10.0095690Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h' 2024-06-26T05:43:10.0097090Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2024-06-26T05:43:10.0098390Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2024-06-26T05:43:10.0099680Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2024-06-26T05:43:10.0100700Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0102160Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2024-06-26T05:43:10.0102870Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h' 2024-06-26T05:43:10.0104310Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2024-06-26T05:43:10.0105640Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2024-06-26T05:43:10.0106540Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2024-06-26T05:43:10.0108150Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0108980Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2024-06-26T05:43:10.0110430Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h' 2024-06-26T05:43:10.0111240Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2024-06-26T05:43:10.0112780Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2024-06-26T05:43:10.0114060Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2024-06-26T05:43:10.0115400Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0116120Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2024-06-26T05:43:10.0117490Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2024-06-26T05:43:10.0118330Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2024-06-26T05:43:10.0119680Z adding 'torch/include/ATen/ops/_index_put_impl_mps_dispatch.h' 2024-06-26T05:43:10.0120960Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2024-06-26T05:43:10.0122200Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2024-06-26T05:43:10.0123400Z adding 'torch/include/ATen/ops/_indices.h' 2024-06-26T05:43:10.0124580Z adding 'torch/include/ATen/ops/_indices_copy.h' 2024-06-26T05:43:10.0125920Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0126770Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0127680Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2024-06-26T05:43:10.0129170Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2024-06-26T05:43:10.0130380Z adding 'torch/include/ATen/ops/_indices_native.h' 2024-06-26T05:43:10.0131580Z adding 'torch/include/ATen/ops/_indices_ops.h' 2024-06-26T05:43:10.0132820Z adding 'torch/include/ATen/ops/_int_mm.h' 2024-06-26T05:43:10.0133630Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2024-06-26T05:43:10.0135060Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2024-06-26T05:43:10.0136280Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2024-06-26T05:43:10.0137470Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2024-06-26T05:43:10.0138660Z adding 'torch/include/ATen/ops/_is_all_true.h' 2024-06-26T05:43:10.0139560Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0140950Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2024-06-26T05:43:10.0141740Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2024-06-26T05:43:10.0143120Z adding 'torch/include/ATen/ops/_is_any_true.h' 2024-06-26T05:43:10.0144440Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0145180Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2024-06-26T05:43:10.0146610Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2024-06-26T05:43:10.0147820Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2024-06-26T05:43:10.0152780Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0153310Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2024-06-26T05:43:10.0153700Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2024-06-26T05:43:10.0154140Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2024-06-26T05:43:10.0154670Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2024-06-26T05:43:10.0155260Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2024-06-26T05:43:10.0156140Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2024-06-26T05:43:10.0156950Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2024-06-26T05:43:10.0158260Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2024-06-26T05:43:10.0159590Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0160300Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2024-06-26T05:43:10.0161720Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2024-06-26T05:43:10.0162950Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2024-06-26T05:43:10.0164330Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0164990Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2024-06-26T05:43:10.0166410Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2024-06-26T05:43:10.0167640Z adding 'torch/include/ATen/ops/_linalg_det.h' 2024-06-26T05:43:10.0169020Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0169720Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2024-06-26T05:43:10.0171130Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2024-06-26T05:43:10.0171980Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2024-06-26T05:43:10.0173410Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2024-06-26T05:43:10.0174660Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2024-06-26T05:43:10.0175880Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2024-06-26T05:43:10.0177080Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2024-06-26T05:43:10.0178460Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0179160Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2024-06-26T05:43:10.0180570Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2024-06-26T05:43:10.0181820Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2024-06-26T05:43:10.0182630Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2024-06-26T05:43:10.0184000Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2024-06-26T05:43:10.0185280Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2024-06-26T05:43:10.0186660Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2024-06-26T05:43:10.0187530Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2024-06-26T05:43:10.0188860Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2024-06-26T05:43:10.0189690Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2024-06-26T05:43:10.0191130Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2024-06-26T05:43:10.0192350Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2024-06-26T05:43:10.0193630Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0194470Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2024-06-26T05:43:10.0195880Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2024-06-26T05:43:10.0196720Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2024-06-26T05:43:10.0198130Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2024-06-26T05:43:10.0198990Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2024-06-26T05:43:10.0200520Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2024-06-26T05:43:10.0201780Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2024-06-26T05:43:10.0203190Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0203940Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2024-06-26T05:43:10.0205370Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2024-06-26T05:43:10.0206230Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2024-06-26T05:43:10.0207670Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2024-06-26T05:43:10.0208590Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2024-06-26T05:43:10.0210100Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2024-06-26T05:43:10.0211330Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2024-06-26T05:43:10.0212720Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0213490Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2024-06-26T05:43:10.0214900Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2024-06-26T05:43:10.0216140Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2024-06-26T05:43:10.0216920Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2024-06-26T05:43:10.0218330Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2024-06-26T05:43:10.0219720Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2024-06-26T05:43:10.0220950Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2024-06-26T05:43:10.0222230Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2024-06-26T05:43:10.0223100Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2024-06-26T05:43:10.0224470Z adding 'torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h' 2024-06-26T05:43:10.0225640Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2024-06-26T05:43:10.0226920Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2024-06-26T05:43:10.0227720Z adding 'torch/include/ATen/ops/_log_softmax.h' 2024-06-26T05:43:10.0229230Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2024-06-26T05:43:10.0230720Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0231500Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2024-06-26T05:43:10.0233050Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2024-06-26T05:43:10.0233740Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2024-06-26T05:43:10.0235170Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2024-06-26T05:43:10.0236010Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h' 2024-06-26T05:43:10.0237440Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2024-06-26T05:43:10.0238770Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2024-06-26T05:43:10.0239830Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0240790Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2024-06-26T05:43:10.0242190Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2024-06-26T05:43:10.0243440Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2024-06-26T05:43:10.0244200Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2024-06-26T05:43:10.0245580Z adding 'torch/include/ATen/ops/_log_softmax_mps_dispatch.h' 2024-06-26T05:43:10.0246830Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2024-06-26T05:43:10.0248060Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2024-06-26T05:43:10.0252040Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2024-06-26T05:43:10.0252450Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2024-06-26T05:43:10.0252900Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2024-06-26T05:43:10.0253690Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2024-06-26T05:43:10.0254970Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2024-06-26T05:43:10.0256220Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2024-06-26T05:43:10.0257100Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0258440Z adding 'torch/include/ATen/ops/_lstm_mps_mps_dispatch.h' 2024-06-26T05:43:10.0259070Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2024-06-26T05:43:10.0260720Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2024-06-26T05:43:10.0261330Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2024-06-26T05:43:10.0262940Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0263570Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2024-06-26T05:43:10.0264840Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2024-06-26T05:43:10.0265550Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2024-06-26T05:43:10.0267030Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2024-06-26T05:43:10.0267630Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2024-06-26T05:43:10.0269110Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2024-06-26T05:43:10.0269720Z adding 'torch/include/ATen/ops/_make_dual.h' 2024-06-26T05:43:10.0271260Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0271840Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2024-06-26T05:43:10.0273380Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0274180Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0275010Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2024-06-26T05:43:10.0276280Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2024-06-26T05:43:10.0277500Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2024-06-26T05:43:10.0278070Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2024-06-26T05:43:10.0279600Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2024-06-26T05:43:10.0280410Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0281460Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2024-06-26T05:43:10.0282320Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2024-06-26T05:43:10.0283770Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2024-06-26T05:43:10.0284450Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2024-06-26T05:43:10.0285890Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2024-06-26T05:43:10.0286700Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0288610Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2024-06-26T05:43:10.0289710Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2024-06-26T05:43:10.0290750Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2024-06-26T05:43:10.0292250Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2024-06-26T05:43:10.0292850Z adding 'torch/include/ATen/ops/_masked_scale.h' 2024-06-26T05:43:10.0294270Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0294970Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2024-06-26T05:43:10.0295770Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2024-06-26T05:43:10.0297080Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2024-06-26T05:43:10.0297800Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2024-06-26T05:43:10.0299110Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2024-06-26T05:43:10.0299960Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0300810Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2024-06-26T05:43:10.0302320Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2024-06-26T05:43:10.0302970Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2024-06-26T05:43:10.0304290Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2024-06-26T05:43:10.0305060Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0305880Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2024-06-26T05:43:10.0306790Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2024-06-26T05:43:10.0308110Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2024-06-26T05:43:10.0308740Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2024-06-26T05:43:10.0309990Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2024-06-26T05:43:10.0310670Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2024-06-26T05:43:10.0311540Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2024-06-26T05:43:10.0312830Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2024-06-26T05:43:10.0313440Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2024-06-26T05:43:10.0314870Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0315390Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2024-06-26T05:43:10.0316600Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2024-06-26T05:43:10.0317230Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2024-06-26T05:43:10.0318620Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0319200Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2024-06-26T05:43:10.0320200Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2024-06-26T05:43:10.0321010Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2024-06-26T05:43:10.0322550Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2024-06-26T05:43:10.0323450Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0324320Z adding 'torch/include/ATen/ops/_mps_convolution_mps_dispatch.h' 2024-06-26T05:43:10.0325620Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2024-06-26T05:43:10.0326260Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2024-06-26T05:43:10.0327800Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2024-06-26T05:43:10.0328690Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0329540Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h' 2024-06-26T05:43:10.0330430Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2024-06-26T05:43:10.0331760Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2024-06-26T05:43:10.0332660Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2024-06-26T05:43:10.0334100Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0334820Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2024-06-26T05:43:10.0335600Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2024-06-26T05:43:10.0336530Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h' 2024-06-26T05:43:10.0342340Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2024-06-26T05:43:10.0342870Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2024-06-26T05:43:10.0343520Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0344190Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2024-06-26T05:43:10.0344740Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2024-06-26T05:43:10.0345250Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2024-06-26T05:43:10.0345700Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2024-06-26T05:43:10.0346300Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0346940Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2024-06-26T05:43:10.0347500Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2024-06-26T05:43:10.0348080Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2024-06-26T05:43:10.0348960Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2024-06-26T05:43:10.0349830Z adding 'torch/include/ATen/ops/_neg_view.h' 2024-06-26T05:43:10.0351140Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0351670Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2024-06-26T05:43:10.0353330Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0354020Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0354640Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2024-06-26T05:43:10.0355320Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2024-06-26T05:43:10.0356540Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2024-06-26T05:43:10.0357080Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2024-06-26T05:43:10.0358380Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2024-06-26T05:43:10.0359110Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2024-06-26T05:43:10.0359960Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2024-06-26T05:43:10.0360800Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2024-06-26T05:43:10.0361740Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2024-06-26T05:43:10.0362610Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2024-06-26T05:43:10.0363930Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2024-06-26T05:43:10.0364700Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0365490Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2024-06-26T05:43:10.0366460Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2024-06-26T05:43:10.0367430Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0368240Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2024-06-26T05:43:10.0369090Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2024-06-26T05:43:10.0369990Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2024-06-26T05:43:10.0371270Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2024-06-26T05:43:10.0371920Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2024-06-26T05:43:10.0373220Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2024-06-26T05:43:10.0373880Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2024-06-26T05:43:10.0375150Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2024-06-26T05:43:10.0375660Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2024-06-26T05:43:10.0376930Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2024-06-26T05:43:10.0377590Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2024-06-26T05:43:10.0378470Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2024-06-26T05:43:10.0379760Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2024-06-26T05:43:10.0380250Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2024-06-26T05:43:10.0381520Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2024-06-26T05:43:10.0381980Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2024-06-26T05:43:10.0383230Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2024-06-26T05:43:10.0383710Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2024-06-26T05:43:10.0384970Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2024-06-26T05:43:10.0385550Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2024-06-26T05:43:10.0386340Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2024-06-26T05:43:10.0387620Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2024-06-26T05:43:10.0388200Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2024-06-26T05:43:10.0389520Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2024-06-26T05:43:10.0390150Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0391140Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0391870Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2024-06-26T05:43:10.0393410Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2024-06-26T05:43:10.0393860Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2024-06-26T05:43:10.0394840Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2024-06-26T05:43:10.0395510Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2024-06-26T05:43:10.0396800Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2024-06-26T05:43:10.0397380Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2024-06-26T05:43:10.0398640Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2024-06-26T05:43:10.0399090Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2024-06-26T05:43:10.0400360Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2024-06-26T05:43:10.0401010Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2024-06-26T05:43:10.0402430Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0403040Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2024-06-26T05:43:10.0404040Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2024-06-26T05:43:10.0404700Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2024-06-26T05:43:10.0405620Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2024-06-26T05:43:10.0406480Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2024-06-26T05:43:10.0407300Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2024-06-26T05:43:10.0408230Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2024-06-26T05:43:10.0409070Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2024-06-26T05:43:10.0410390Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2024-06-26T05:43:10.0411110Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2024-06-26T05:43:10.0412580Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0413220Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2024-06-26T05:43:10.0414250Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2024-06-26T05:43:10.0414890Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2024-06-26T05:43:10.0416310Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0420400Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2024-06-26T05:43:10.0421120Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2024-06-26T05:43:10.0421580Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2024-06-26T05:43:10.0422100Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2024-06-26T05:43:10.0422640Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2024-06-26T05:43:10.0423140Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2024-06-26T05:43:10.0423740Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0424360Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2024-06-26T05:43:10.0424870Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2024-06-26T05:43:10.0425330Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2024-06-26T05:43:10.0426020Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0426700Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2024-06-26T05:43:10.0427530Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2024-06-26T05:43:10.0428810Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2024-06-26T05:43:10.0429420Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2024-06-26T05:43:10.0430860Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0431650Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0432340Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2024-06-26T05:43:10.0433150Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2024-06-26T05:43:10.0434070Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2024-06-26T05:43:10.0434920Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2024-06-26T05:43:10.0435750Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2024-06-26T05:43:10.0437060Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2024-06-26T05:43:10.0437630Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2024-06-26T05:43:10.0438920Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2024-06-26T05:43:10.0439740Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0440740Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0441510Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2024-06-26T05:43:10.0442910Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2024-06-26T05:43:10.0443450Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2024-06-26T05:43:10.0444760Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2024-06-26T05:43:10.0445290Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2024-06-26T05:43:10.0446750Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0447390Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2024-06-26T05:43:10.0448170Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2024-06-26T05:43:10.0448950Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2024-06-26T05:43:10.0450310Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0450850Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2024-06-26T05:43:10.0451650Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2024-06-26T05:43:10.0453100Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2024-06-26T05:43:10.0453990Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0454790Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2024-06-26T05:43:10.0456120Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2024-06-26T05:43:10.0456570Z adding 'torch/include/ATen/ops/_nnz.h' 2024-06-26T05:43:10.0457770Z adding 'torch/include/ATen/ops/_nnz_native.h' 2024-06-26T05:43:10.0458390Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2024-06-26T05:43:10.0459700Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2024-06-26T05:43:10.0460450Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2024-06-26T05:43:10.0461680Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0462410Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2024-06-26T05:43:10.0463270Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2024-06-26T05:43:10.0464350Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0465070Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2024-06-26T05:43:10.0466350Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2024-06-26T05:43:10.0466980Z adding 'torch/include/ATen/ops/_pad_circular.h' 2024-06-26T05:43:10.0468370Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0468870Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2024-06-26T05:43:10.0469740Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2024-06-26T05:43:10.0470920Z adding 'torch/include/ATen/ops/_pad_enum.h' 2024-06-26T05:43:10.0471710Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0472460Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2024-06-26T05:43:10.0473670Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2024-06-26T05:43:10.0474320Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2024-06-26T05:43:10.0475760Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0476320Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2024-06-26T05:43:10.0477350Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2024-06-26T05:43:10.0478120Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2024-06-26T05:43:10.0479100Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2024-06-26T05:43:10.0479960Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2024-06-26T05:43:10.0480810Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2024-06-26T05:43:10.0481750Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2024-06-26T05:43:10.0482590Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2024-06-26T05:43:10.0483940Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0484590Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2024-06-26T05:43:10.0485300Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2024-06-26T05:43:10.0486170Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2024-06-26T05:43:10.0487410Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2024-06-26T05:43:10.0488110Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2024-06-26T05:43:10.0489460Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0490100Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2024-06-26T05:43:10.0490860Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2024-06-26T05:43:10.0491720Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2024-06-26T05:43:10.0492970Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2024-06-26T05:43:10.0493580Z adding 'torch/include/ATen/ops/_pin_memory.h' 2024-06-26T05:43:10.0495020Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0499410Z adding 'torch/include/ATen/ops/_pin_memory_cuda_dispatch.h' 2024-06-26T05:43:10.0499870Z adding 'torch/include/ATen/ops/_pin_memory_mps_dispatch.h' 2024-06-26T05:43:10.0500280Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2024-06-26T05:43:10.0500650Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2024-06-26T05:43:10.0501000Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2024-06-26T05:43:10.0501380Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2024-06-26T05:43:10.0501850Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2024-06-26T05:43:10.0502370Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2024-06-26T05:43:10.0503090Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h' 2024-06-26T05:43:10.0503580Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2024-06-26T05:43:10.0504360Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2024-06-26T05:43:10.0505280Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2024-06-26T05:43:10.0506070Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2024-06-26T05:43:10.0506890Z adding 'torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h' 2024-06-26T05:43:10.0507850Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2024-06-26T05:43:10.0508680Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2024-06-26T05:43:10.0509880Z adding 'torch/include/ATen/ops/_print.h' 2024-06-26T05:43:10.0510540Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0511270Z adding 'torch/include/ATen/ops/_print_native.h' 2024-06-26T05:43:10.0512460Z adding 'torch/include/ATen/ops/_print_ops.h' 2024-06-26T05:43:10.0513100Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2024-06-26T05:43:10.0514240Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0514910Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2024-06-26T05:43:10.0516410Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2024-06-26T05:43:10.0517020Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2024-06-26T05:43:10.0518470Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0519000Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2024-06-26T05:43:10.0519990Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2024-06-26T05:43:10.0520710Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2024-06-26T05:43:10.0522090Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2024-06-26T05:43:10.0522920Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0523890Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0524640Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2024-06-26T05:43:10.0525920Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2024-06-26T05:43:10.0526520Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2024-06-26T05:43:10.0527670Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2024-06-26T05:43:10.0528320Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2024-06-26T05:43:10.0529220Z adding 'torch/include/ATen/ops/_reshape_alias_mps_dispatch.h' 2024-06-26T05:43:10.0530010Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2024-06-26T05:43:10.0531280Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2024-06-26T05:43:10.0531860Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2024-06-26T05:43:10.0533180Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0533750Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2024-06-26T05:43:10.0534860Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2024-06-26T05:43:10.0535520Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2024-06-26T05:43:10.0536950Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0537510Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2024-06-26T05:43:10.0538470Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2024-06-26T05:43:10.0539730Z adding 'torch/include/ATen/ops/_resize_output.h' 2024-06-26T05:43:10.0540530Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0541400Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2024-06-26T05:43:10.0542670Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2024-06-26T05:43:10.0543390Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2024-06-26T05:43:10.0544640Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2024-06-26T05:43:10.0545450Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0546240Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2024-06-26T05:43:10.0547530Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2024-06-26T05:43:10.0548210Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2024-06-26T05:43:10.0549600Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0550260Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2024-06-26T05:43:10.0551130Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2024-06-26T05:43:10.0552430Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2024-06-26T05:43:10.0553060Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2024-06-26T05:43:10.0554380Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2024-06-26T05:43:10.0555160Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0555940Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2024-06-26T05:43:10.0557270Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2024-06-26T05:43:10.0557970Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2024-06-26T05:43:10.0559450Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0560110Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2024-06-26T05:43:10.0560860Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2024-06-26T05:43:10.0562100Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2024-06-26T05:43:10.0563310Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2024-06-26T05:43:10.0564060Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2024-06-26T05:43:10.0565270Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2024-06-26T05:43:10.0566440Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2024-06-26T05:43:10.0567050Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2024-06-26T05:43:10.0568340Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2024-06-26T05:43:10.0569190Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2024-06-26T05:43:10.0570400Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2024-06-26T05:43:10.0571120Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2024-06-26T05:43:10.0572430Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2024-06-26T05:43:10.0573090Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2024-06-26T05:43:10.0574450Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2024-06-26T05:43:10.0575180Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2024-06-26T05:43:10.0576380Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2024-06-26T05:43:10.0577530Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2024-06-26T05:43:10.0578130Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2024-06-26T05:43:10.0579590Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2024-06-26T05:43:10.0580840Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2024-06-26T05:43:10.0581320Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2024-06-26T05:43:10.0582700Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2024-06-26T05:43:10.0583400Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2024-06-26T05:43:10.0584620Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2024-06-26T05:43:10.0585550Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2024-06-26T05:43:10.0586490Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2024-06-26T05:43:10.0587380Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2024-06-26T05:43:10.0588540Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2024-06-26T05:43:10.0592620Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2024-06-26T05:43:10.0592900Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2024-06-26T05:43:10.0593160Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2024-06-26T05:43:10.0593410Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2024-06-26T05:43:10.0593650Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2024-06-26T05:43:10.0593980Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2024-06-26T05:43:10.0595280Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2024-06-26T05:43:10.0596130Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2024-06-26T05:43:10.0597430Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2024-06-26T05:43:10.0598520Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2024-06-26T05:43:10.0599820Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0600270Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2024-06-26T05:43:10.0601470Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2024-06-26T05:43:10.0602300Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2024-06-26T05:43:10.0603500Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2024-06-26T05:43:10.0604330Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2024-06-26T05:43:10.0605640Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0605990Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2024-06-26T05:43:10.0607250Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2024-06-26T05:43:10.0608920Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2024-06-26T05:43:10.0610350Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0610960Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.0612210Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.0613040Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2024-06-26T05:43:10.0614310Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2024-06-26T05:43:10.0615520Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2024-06-26T05:43:10.0616440Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2024-06-26T05:43:10.0617610Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2024-06-26T05:43:10.0618090Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2024-06-26T05:43:10.0619410Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2024-06-26T05:43:10.0620240Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2024-06-26T05:43:10.0621240Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0622300Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2024-06-26T05:43:10.0622900Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2024-06-26T05:43:10.0624150Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2024-06-26T05:43:10.0624810Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0625880Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2024-06-26T05:43:10.0626730Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2024-06-26T05:43:10.0627670Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2024-06-26T05:43:10.0628630Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0629260Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2024-06-26T05:43:10.0630450Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2024-06-26T05:43:10.0631040Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2024-06-26T05:43:10.0632440Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0632770Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2024-06-26T05:43:10.0633980Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2024-06-26T05:43:10.0634780Z adding 'torch/include/ATen/ops/_softmax.h' 2024-06-26T05:43:10.0635980Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2024-06-26T05:43:10.0636660Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0637720Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2024-06-26T05:43:10.0638360Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2024-06-26T05:43:10.0639580Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2024-06-26T05:43:10.0640090Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2024-06-26T05:43:10.0641250Z adding 'torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h' 2024-06-26T05:43:10.0642080Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2024-06-26T05:43:10.0643260Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2024-06-26T05:43:10.0643950Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0645030Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2024-06-26T05:43:10.0645500Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2024-06-26T05:43:10.0646660Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2024-06-26T05:43:10.0647680Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2024-06-26T05:43:10.0648110Z adding 'torch/include/ATen/ops/_softmax_mps_dispatch.h' 2024-06-26T05:43:10.0649260Z adding 'torch/include/ATen/ops/_softmax_native.h' 2024-06-26T05:43:10.0650240Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2024-06-26T05:43:10.0651230Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2024-06-26T05:43:10.0652410Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0652740Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2024-06-26T05:43:10.0654040Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2024-06-26T05:43:10.0655040Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2024-06-26T05:43:10.0655640Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2024-06-26T05:43:10.0656930Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0657620Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0658450Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2024-06-26T05:43:10.0659600Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2024-06-26T05:43:10.0660170Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2024-06-26T05:43:10.0661330Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2024-06-26T05:43:10.0662190Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2024-06-26T05:43:10.0663500Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0663910Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2024-06-26T05:43:10.0665130Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2024-06-26T05:43:10.0665980Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2024-06-26T05:43:10.0667320Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0667640Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2024-06-26T05:43:10.0668900Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2024-06-26T05:43:10.0670090Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2024-06-26T05:43:10.0671090Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0671740Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2024-06-26T05:43:10.0672980Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2024-06-26T05:43:10.0673820Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2024-06-26T05:43:10.0675130Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0675590Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2024-06-26T05:43:10.0676830Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2024-06-26T05:43:10.0677940Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2024-06-26T05:43:10.0678930Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0679990Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2024-06-26T05:43:10.0680580Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2024-06-26T05:43:10.0681870Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2024-06-26T05:43:10.0683320Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2024-06-26T05:43:10.0684620Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0685110Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2024-06-26T05:43:10.0686360Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2024-06-26T05:43:10.0687230Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2024-06-26T05:43:10.0688450Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0688920Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2024-06-26T05:43:10.0690080Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2024-06-26T05:43:10.0690930Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2024-06-26T05:43:10.0692110Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2024-06-26T05:43:10.0692890Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0694000Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2024-06-26T05:43:10.0694850Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2024-06-26T05:43:10.0695970Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2024-06-26T05:43:10.0697030Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0697550Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2024-06-26T05:43:10.0698820Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2024-06-26T05:43:10.0699690Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2024-06-26T05:43:10.0700980Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0701440Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2024-06-26T05:43:10.0702680Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2024-06-26T05:43:10.0703560Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2024-06-26T05:43:10.0704860Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0705220Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2024-06-26T05:43:10.0706530Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2024-06-26T05:43:10.0707310Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2024-06-26T05:43:10.0708540Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2024-06-26T05:43:10.0709280Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0710350Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2024-06-26T05:43:10.0711200Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2024-06-26T05:43:10.0712150Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0713320Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0713690Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2024-06-26T05:43:10.0715050Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2024-06-26T05:43:10.0715910Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2024-06-26T05:43:10.0716900Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0717640Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2024-06-26T05:43:10.0718790Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2024-06-26T05:43:10.0719600Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2024-06-26T05:43:10.0720580Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0721170Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2024-06-26T05:43:10.0722390Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2024-06-26T05:43:10.0723400Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2024-06-26T05:43:10.0723970Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2024-06-26T05:43:10.0725160Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2024-06-26T05:43:10.0726010Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2024-06-26T05:43:10.0726830Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2024-06-26T05:43:10.0727990Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2024-06-26T05:43:10.0728570Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2024-06-26T05:43:10.0729840Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2024-06-26T05:43:10.0730370Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2024-06-26T05:43:10.0731650Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2024-06-26T05:43:10.0732260Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2024-06-26T05:43:10.0733420Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2024-06-26T05:43:10.0734010Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2024-06-26T05:43:10.0735330Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2024-06-26T05:43:10.0735760Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2024-06-26T05:43:10.0737340Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2024-06-26T05:43:10.0737940Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2024-06-26T05:43:10.0739210Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2024-06-26T05:43:10.0739800Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2024-06-26T05:43:10.0741020Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2024-06-26T05:43:10.0741620Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2024-06-26T05:43:10.0742910Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2024-06-26T05:43:10.0743480Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2024-06-26T05:43:10.0744700Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2024-06-26T05:43:10.0745240Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2024-06-26T05:43:10.0749800Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2024-06-26T05:43:10.0750150Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2024-06-26T05:43:10.0750400Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2024-06-26T05:43:10.0750620Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2024-06-26T05:43:10.0750840Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2024-06-26T05:43:10.0750980Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2024-06-26T05:43:10.0751570Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2024-06-26T05:43:10.0752890Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0753400Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2024-06-26T05:43:10.0754680Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2024-06-26T05:43:10.0755370Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0756670Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0757020Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2024-06-26T05:43:10.0758370Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2024-06-26T05:43:10.0759240Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2024-06-26T05:43:10.0760240Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0760880Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2024-06-26T05:43:10.0762120Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2024-06-26T05:43:10.0763000Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2024-06-26T05:43:10.0763880Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2024-06-26T05:43:10.0765200Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0765570Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2024-06-26T05:43:10.0766810Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2024-06-26T05:43:10.0767790Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0768470Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0769570Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2024-06-26T05:43:10.0770720Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2024-06-26T05:43:10.0771270Z adding 'torch/include/ATen/ops/_spdiags.h' 2024-06-26T05:43:10.0772580Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0773120Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2024-06-26T05:43:10.0774340Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2024-06-26T05:43:10.0775330Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2024-06-26T05:43:10.0775890Z adding 'torch/include/ATen/ops/_stack.h' 2024-06-26T05:43:10.0777190Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0777730Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2024-06-26T05:43:10.0778970Z adding 'torch/include/ATen/ops/_stack_native.h' 2024-06-26T05:43:10.0779940Z adding 'torch/include/ATen/ops/_stack_ops.h' 2024-06-26T05:43:10.0780480Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2024-06-26T05:43:10.0781800Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0782360Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2024-06-26T05:43:10.0783320Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2024-06-26T05:43:10.0784480Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2024-06-26T05:43:10.0785190Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0786250Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2024-06-26T05:43:10.0786740Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2024-06-26T05:43:10.0787880Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2024-06-26T05:43:10.0788740Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2024-06-26T05:43:10.0789590Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2024-06-26T05:43:10.0790850Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2024-06-26T05:43:10.0791370Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2024-06-26T05:43:10.0792670Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0793170Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2024-06-26T05:43:10.0794450Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2024-06-26T05:43:10.0795070Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2024-06-26T05:43:10.0796430Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0797050Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0798010Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2024-06-26T05:43:10.0799190Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2024-06-26T05:43:10.0799780Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2024-06-26T05:43:10.0801060Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0801680Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2024-06-26T05:43:10.0803000Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0803680Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0804390Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2024-06-26T05:43:10.0805630Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2024-06-26T05:43:10.0806240Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2024-06-26T05:43:10.0807510Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2024-06-26T05:43:10.0807890Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2024-06-26T05:43:10.0809200Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0809690Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2024-06-26T05:43:10.0810850Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2024-06-26T05:43:10.0811740Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2024-06-26T05:43:10.0812730Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0813350Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2024-06-26T05:43:10.0814550Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2024-06-26T05:43:10.0815160Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2024-06-26T05:43:10.0816440Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2024-06-26T05:43:10.0817190Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0818350Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2024-06-26T05:43:10.0818820Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2024-06-26T05:43:10.0820040Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2024-06-26T05:43:10.0820870Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2024-06-26T05:43:10.0821890Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0822560Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2024-06-26T05:43:10.0823720Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2024-06-26T05:43:10.0824380Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2024-06-26T05:43:10.0825700Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2024-06-26T05:43:10.0826330Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0827400Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2024-06-26T05:43:10.0828000Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2024-06-26T05:43:10.0829180Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2024-06-26T05:43:10.0830040Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2024-06-26T05:43:10.0831040Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0831620Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2024-06-26T05:43:10.0832850Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2024-06-26T05:43:10.0833430Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2024-06-26T05:43:10.0834870Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0835220Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2024-06-26T05:43:10.0836400Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2024-06-26T05:43:10.0837010Z adding 'torch/include/ATen/ops/_test_string_default.h' 2024-06-26T05:43:10.0838410Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0838740Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2024-06-26T05:43:10.0839960Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2024-06-26T05:43:10.0840810Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2024-06-26T05:43:10.0841810Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0842390Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2024-06-26T05:43:10.0843620Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2024-06-26T05:43:10.0844500Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2024-06-26T05:43:10.0845490Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0846150Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2024-06-26T05:43:10.0847400Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2024-06-26T05:43:10.0848070Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2024-06-26T05:43:10.0849380Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0849890Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2024-06-26T05:43:10.0851160Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2024-06-26T05:43:10.0851930Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2024-06-26T05:43:10.0853130Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2024-06-26T05:43:10.0854130Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0854740Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2024-06-26T05:43:10.0855950Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2024-06-26T05:43:10.0856790Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2024-06-26T05:43:10.0858080Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0858540Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2024-06-26T05:43:10.0859690Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2024-06-26T05:43:10.0860840Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2024-06-26T05:43:10.0861690Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2024-06-26T05:43:10.0862880Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2024-06-26T05:43:10.0863540Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0864780Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2024-06-26T05:43:10.0865630Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0866740Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2024-06-26T05:43:10.0867240Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2024-06-26T05:43:10.0868580Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2024-06-26T05:43:10.0869190Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2024-06-26T05:43:10.0870460Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2024-06-26T05:43:10.0871200Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0872200Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2024-06-26T05:43:10.0873020Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2024-06-26T05:43:10.0874200Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2024-06-26T05:43:10.0875300Z adding 'torch/include/ATen/ops/_to_copy.h' 2024-06-26T05:43:10.0876300Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0876870Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2024-06-26T05:43:10.0878180Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2024-06-26T05:43:10.0879160Z adding 'torch/include/ATen/ops/_to_cpu.h' 2024-06-26T05:43:10.0879810Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0880820Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2024-06-26T05:43:10.0881710Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2024-06-26T05:43:10.0882520Z adding 'torch/include/ATen/ops/_to_dense.h' 2024-06-26T05:43:10.0883800Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0884230Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2024-06-26T05:43:10.0885470Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2024-06-26T05:43:10.0886410Z adding 'torch/include/ATen/ops/_to_sparse.h' 2024-06-26T05:43:10.0887270Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2024-06-26T05:43:10.0888450Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0889000Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2024-06-26T05:43:10.0890270Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2024-06-26T05:43:10.0890680Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2024-06-26T05:43:10.0892010Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2024-06-26T05:43:10.0892860Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2024-06-26T05:43:10.0893880Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0894410Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2024-06-26T05:43:10.0895380Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2024-06-26T05:43:10.0896510Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2024-06-26T05:43:10.0900290Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2024-06-26T05:43:10.0900710Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0900920Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2024-06-26T05:43:10.0901070Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2024-06-26T05:43:10.0901340Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0901530Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2024-06-26T05:43:10.0902870Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2024-06-26T05:43:10.0903290Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2024-06-26T05:43:10.0904520Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2024-06-26T05:43:10.0905340Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2024-06-26T05:43:10.0906520Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0907020Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2024-06-26T05:43:10.0908130Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2024-06-26T05:43:10.0908740Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2024-06-26T05:43:10.0909980Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2024-06-26T05:43:10.0910860Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2024-06-26T05:43:10.0911700Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2024-06-26T05:43:10.0912870Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2024-06-26T05:43:10.0913780Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2024-06-26T05:43:10.0914690Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2024-06-26T05:43:10.0915550Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2024-06-26T05:43:10.0916680Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2024-06-26T05:43:10.0917280Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2024-06-26T05:43:10.0918610Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0919180Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2024-06-26T05:43:10.0920140Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2024-06-26T05:43:10.0921280Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2024-06-26T05:43:10.0921930Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2024-06-26T05:43:10.0923350Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2024-06-26T05:43:10.0924630Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0925040Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2024-06-26T05:43:10.0926270Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2024-06-26T05:43:10.0926900Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2024-06-26T05:43:10.0928360Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2024-06-26T05:43:10.0929130Z adding 'torch/include/ATen/ops/_trilinear.h' 2024-06-26T05:43:10.0930420Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0931060Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0932050Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2024-06-26T05:43:10.0933070Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2024-06-26T05:43:10.0934140Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2024-06-26T05:43:10.0935140Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0935830Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2024-06-26T05:43:10.0937000Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2024-06-26T05:43:10.0938150Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2024-06-26T05:43:10.0938720Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2024-06-26T05:43:10.0940050Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0940550Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2024-06-26T05:43:10.0941800Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2024-06-26T05:43:10.0942840Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2024-06-26T05:43:10.0943300Z adding 'torch/include/ATen/ops/_unique.h' 2024-06-26T05:43:10.0944510Z adding 'torch/include/ATen/ops/_unique2.h' 2024-06-26T05:43:10.0945480Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0946270Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2024-06-26T05:43:10.0947180Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2024-06-26T05:43:10.0948020Z adding 'torch/include/ATen/ops/_unique2_mps_dispatch.h' 2024-06-26T05:43:10.0948870Z adding 'torch/include/ATen/ops/_unique2_native.h' 2024-06-26T05:43:10.0950320Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2024-06-26T05:43:10.0951290Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0952060Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2024-06-26T05:43:10.0952920Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2024-06-26T05:43:10.0953760Z adding 'torch/include/ATen/ops/_unique_native.h' 2024-06-26T05:43:10.0954840Z adding 'torch/include/ATen/ops/_unique_ops.h' 2024-06-26T05:43:10.0955690Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2024-06-26T05:43:10.0956680Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0957420Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2024-06-26T05:43:10.0958590Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2024-06-26T05:43:10.0959110Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2024-06-26T05:43:10.0960410Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0960890Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2024-06-26T05:43:10.0962150Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2024-06-26T05:43:10.0962750Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2024-06-26T05:43:10.0964190Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0964590Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2024-06-26T05:43:10.0965740Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2024-06-26T05:43:10.0966600Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2024-06-26T05:43:10.0967610Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0968190Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2024-06-26T05:43:10.0969390Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2024-06-26T05:43:10.0970290Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2024-06-26T05:43:10.0971290Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0971880Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2024-06-26T05:43:10.0973100Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2024-06-26T05:43:10.0974170Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2024-06-26T05:43:10.0975160Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.0975670Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2024-06-26T05:43:10.0976910Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2024-06-26T05:43:10.0978210Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2024-06-26T05:43:10.0979540Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2024-06-26T05:43:10.0980630Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0981330Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2024-06-26T05:43:10.0982500Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2024-06-26T05:43:10.0983110Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2024-06-26T05:43:10.0984410Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2024-06-26T05:43:10.0985100Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2024-06-26T05:43:10.0986380Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2024-06-26T05:43:10.0987080Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0988220Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.0988800Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2024-06-26T05:43:10.0990060Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2024-06-26T05:43:10.0990600Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2024-06-26T05:43:10.0991790Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2024-06-26T05:43:10.0992610Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2024-06-26T05:43:10.0993790Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2024-06-26T05:43:10.0995080Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2024-06-26T05:43:10.0996390Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2024-06-26T05:43:10.0997440Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.0998140Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2024-06-26T05:43:10.0999350Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2024-06-26T05:43:10.0999960Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2024-06-26T05:43:10.1001250Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2024-06-26T05:43:10.1001810Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2024-06-26T05:43:10.1003110Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2024-06-26T05:43:10.1003950Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1005080Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1006150Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2024-06-26T05:43:10.1006660Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2024-06-26T05:43:10.1007770Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2024-06-26T05:43:10.1008670Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2024-06-26T05:43:10.1009500Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2024-06-26T05:43:10.1010690Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2024-06-26T05:43:10.1011910Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2024-06-26T05:43:10.1013170Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2024-06-26T05:43:10.1014230Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1014890Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.1016090Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.1016680Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2024-06-26T05:43:10.1017990Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2024-06-26T05:43:10.1018520Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h' 2024-06-26T05:43:10.1019720Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2024-06-26T05:43:10.1020840Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2024-06-26T05:43:10.1021470Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1022640Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1023220Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2024-06-26T05:43:10.1024400Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2024-06-26T05:43:10.1024950Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2024-06-26T05:43:10.1026180Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2024-06-26T05:43:10.1026810Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h' 2024-06-26T05:43:10.1027960Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2024-06-26T05:43:10.1029110Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2024-06-26T05:43:10.1030270Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2024-06-26T05:43:10.1031570Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2024-06-26T05:43:10.1032630Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1033290Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.1034490Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.1035100Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2024-06-26T05:43:10.1036320Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2024-06-26T05:43:10.1036970Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h' 2024-06-26T05:43:10.1038160Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2024-06-26T05:43:10.1039310Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2024-06-26T05:43:10.1040000Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1041200Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1041710Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2024-06-26T05:43:10.1042960Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2024-06-26T05:43:10.1043440Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2024-06-26T05:43:10.1044680Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2024-06-26T05:43:10.1045330Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h' 2024-06-26T05:43:10.1046580Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2024-06-26T05:43:10.1047740Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2024-06-26T05:43:10.1048880Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2024-06-26T05:43:10.1050230Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2024-06-26T05:43:10.1051280Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1052390Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.1052920Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.1054050Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2024-06-26T05:43:10.1058220Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2024-06-26T05:43:10.1058590Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2024-06-26T05:43:10.1058860Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2024-06-26T05:43:10.1059250Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1059570Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1059810Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2024-06-26T05:43:10.1060320Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2024-06-26T05:43:10.1061490Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2024-06-26T05:43:10.1062380Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2024-06-26T05:43:10.1063220Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2024-06-26T05:43:10.1064440Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2024-06-26T05:43:10.1065270Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2024-06-26T05:43:10.1066180Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2024-06-26T05:43:10.1067320Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2024-06-26T05:43:10.1068180Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2024-06-26T05:43:10.1069050Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2024-06-26T05:43:10.1070060Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1070640Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2024-06-26T05:43:10.1071860Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2024-06-26T05:43:10.1072470Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2024-06-26T05:43:10.1073810Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2024-06-26T05:43:10.1074280Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2024-06-26T05:43:10.1075390Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2024-06-26T05:43:10.1076240Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2024-06-26T05:43:10.1077070Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2024-06-26T05:43:10.1078410Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1078720Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2024-06-26T05:43:10.1079960Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2024-06-26T05:43:10.1080590Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2024-06-26T05:43:10.1082000Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1082330Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2024-06-26T05:43:10.1083570Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2024-06-26T05:43:10.1084240Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2024-06-26T05:43:10.1085640Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1086030Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2024-06-26T05:43:10.1087250Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2024-06-26T05:43:10.1087870Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2024-06-26T05:43:10.1089240Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1089660Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2024-06-26T05:43:10.1090870Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2024-06-26T05:43:10.1091490Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2024-06-26T05:43:10.1092920Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1093270Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2024-06-26T05:43:10.1094460Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2024-06-26T05:43:10.1095090Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2024-06-26T05:43:10.1096490Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1096850Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2024-06-26T05:43:10.1098070Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2024-06-26T05:43:10.1098560Z adding 'torch/include/ATen/ops/_values.h' 2024-06-26T05:43:10.1099850Z adding 'torch/include/ATen/ops/_values_copy.h' 2024-06-26T05:43:10.1100510Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1101750Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1102170Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2024-06-26T05:43:10.1103380Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2024-06-26T05:43:10.1104220Z adding 'torch/include/ATen/ops/_values_native.h' 2024-06-26T05:43:10.1105080Z adding 'torch/include/ATen/ops/_values_ops.h' 2024-06-26T05:43:10.1106210Z adding 'torch/include/ATen/ops/_version.h' 2024-06-26T05:43:10.1106830Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1107830Z adding 'torch/include/ATen/ops/_version_native.h' 2024-06-26T05:43:10.1108830Z adding 'torch/include/ATen/ops/_version_ops.h' 2024-06-26T05:43:10.1109390Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2024-06-26T05:43:10.1110600Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cpu_dispatch.h' 2024-06-26T05:43:10.1111170Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2024-06-26T05:43:10.1112320Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h' 2024-06-26T05:43:10.1112910Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2024-06-26T05:43:10.1114150Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2024-06-26T05:43:10.1114780Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2024-06-26T05:43:10.1115790Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2024-06-26T05:43:10.1116650Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h' 2024-06-26T05:43:10.1117490Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2024-06-26T05:43:10.1118640Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2024-06-26T05:43:10.1119110Z adding 'torch/include/ATen/ops/_weight_norm.h' 2024-06-26T05:43:10.1120450Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1121030Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2024-06-26T05:43:10.1122470Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1122840Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2024-06-26T05:43:10.1124090Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2024-06-26T05:43:10.1124870Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2024-06-26T05:43:10.1126050Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2024-06-26T05:43:10.1127030Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1127640Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2024-06-26T05:43:10.1128910Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2024-06-26T05:43:10.1129350Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h' 2024-06-26T05:43:10.1130560Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2024-06-26T05:43:10.1131670Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2024-06-26T05:43:10.1132290Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1133400Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2024-06-26T05:43:10.1133930Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2024-06-26T05:43:10.1135090Z adding 'torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h' 2024-06-26T05:43:10.1135770Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2024-06-26T05:43:10.1137040Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2024-06-26T05:43:10.1137630Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2024-06-26T05:43:10.1138900Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2024-06-26T05:43:10.1139870Z adding 'torch/include/ATen/ops/abs.h' 2024-06-26T05:43:10.1140450Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1141530Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2024-06-26T05:43:10.1142130Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2024-06-26T05:43:10.1143290Z adding 'torch/include/ATen/ops/abs_mps_dispatch.h' 2024-06-26T05:43:10.1143870Z adding 'torch/include/ATen/ops/abs_native.h' 2024-06-26T05:43:10.1145100Z adding 'torch/include/ATen/ops/abs_ops.h' 2024-06-26T05:43:10.1145940Z adding 'torch/include/ATen/ops/absolute.h' 2024-06-26T05:43:10.1146910Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1147650Z adding 'torch/include/ATen/ops/absolute_native.h' 2024-06-26T05:43:10.1148770Z adding 'torch/include/ATen/ops/absolute_ops.h' 2024-06-26T05:43:10.1149610Z adding 'torch/include/ATen/ops/acos.h' 2024-06-26T05:43:10.1150680Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1151250Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2024-06-26T05:43:10.1152430Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2024-06-26T05:43:10.1152950Z adding 'torch/include/ATen/ops/acos_meta.h' 2024-06-26T05:43:10.1154090Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2024-06-26T05:43:10.1154620Z adding 'torch/include/ATen/ops/acos_mps_dispatch.h' 2024-06-26T05:43:10.1155830Z adding 'torch/include/ATen/ops/acos_native.h' 2024-06-26T05:43:10.1156720Z adding 'torch/include/ATen/ops/acos_ops.h' 2024-06-26T05:43:10.1158530Z adding 'torch/include/ATen/ops/acosh.h' 2024-06-26T05:43:10.1160040Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1161070Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2024-06-26T05:43:10.1161940Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2024-06-26T05:43:10.1163020Z adding 'torch/include/ATen/ops/acosh_meta.h' 2024-06-26T05:43:10.1163890Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2024-06-26T05:43:10.1165050Z adding 'torch/include/ATen/ops/acosh_mps_dispatch.h' 2024-06-26T05:43:10.1166040Z adding 'torch/include/ATen/ops/acosh_native.h' 2024-06-26T05:43:10.1167370Z adding 'torch/include/ATen/ops/acosh_ops.h' 2024-06-26T05:43:10.1168550Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2024-06-26T05:43:10.1169300Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1170510Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2024-06-26T05:43:10.1171360Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2024-06-26T05:43:10.1172570Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2024-06-26T05:43:10.1173580Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1174670Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2024-06-26T05:43:10.1175540Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2024-06-26T05:43:10.1176730Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h' 2024-06-26T05:43:10.1177290Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2024-06-26T05:43:10.1178640Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2024-06-26T05:43:10.1179920Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2024-06-26T05:43:10.1180820Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2024-06-26T05:43:10.1181730Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.1182910Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.1183480Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2024-06-26T05:43:10.1184790Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2024-06-26T05:43:10.1185750Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1186620Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2024-06-26T05:43:10.1187780Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2024-06-26T05:43:10.1188400Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2024-06-26T05:43:10.1189640Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2024-06-26T05:43:10.1190480Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2024-06-26T05:43:10.1191710Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1192280Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2024-06-26T05:43:10.1193550Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2024-06-26T05:43:10.1194400Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2024-06-26T05:43:10.1195610Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2024-06-26T05:43:10.1196690Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1197780Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.1198320Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.1199470Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2024-06-26T05:43:10.1200380Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2024-06-26T05:43:10.1201280Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h' 2024-06-26T05:43:10.1202380Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2024-06-26T05:43:10.1203530Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2024-06-26T05:43:10.1204280Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1205370Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2024-06-26T05:43:10.1206040Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2024-06-26T05:43:10.1207250Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2024-06-26T05:43:10.1208140Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2024-06-26T05:43:10.1209000Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h' 2024-06-26T05:43:10.1213370Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2024-06-26T05:43:10.1213680Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2024-06-26T05:43:10.1213840Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2024-06-26T05:43:10.1215180Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2024-06-26T05:43:10.1215630Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1215880Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.1216130Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.1216710Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2024-06-26T05:43:10.1217940Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2024-06-26T05:43:10.1218780Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2024-06-26T05:43:10.1219940Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2024-06-26T05:43:10.1220960Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1221620Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2024-06-26T05:43:10.1222820Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2024-06-26T05:43:10.1223650Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2024-06-26T05:43:10.1224540Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2024-06-26T05:43:10.1225680Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2024-06-26T05:43:10.1226530Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2024-06-26T05:43:10.1227680Z adding 'torch/include/ATen/ops/add.h' 2024-06-26T05:43:10.1228940Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1229600Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1230650Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2024-06-26T05:43:10.1231650Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2024-06-26T05:43:10.1232610Z adding 'torch/include/ATen/ops/add_meta.h' 2024-06-26T05:43:10.1233270Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2024-06-26T05:43:10.1234500Z adding 'torch/include/ATen/ops/add_mps_dispatch.h' 2024-06-26T05:43:10.1235480Z adding 'torch/include/ATen/ops/add_native.h' 2024-06-26T05:43:10.1236750Z adding 'torch/include/ATen/ops/add_ops.h' 2024-06-26T05:43:10.1237790Z adding 'torch/include/ATen/ops/addbmm.h' 2024-06-26T05:43:10.1238970Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2024-06-26T05:43:10.1239590Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2024-06-26T05:43:10.1240770Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2024-06-26T05:43:10.1241620Z adding 'torch/include/ATen/ops/addbmm_mps_dispatch.h' 2024-06-26T05:43:10.1242770Z adding 'torch/include/ATen/ops/addbmm_native.h' 2024-06-26T05:43:10.1243960Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2024-06-26T05:43:10.1244730Z adding 'torch/include/ATen/ops/addcdiv.h' 2024-06-26T05:43:10.1246080Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1246620Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2024-06-26T05:43:10.1247890Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2024-06-26T05:43:10.1248740Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2024-06-26T05:43:10.1249950Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2024-06-26T05:43:10.1250410Z adding 'torch/include/ATen/ops/addcdiv_mps_dispatch.h' 2024-06-26T05:43:10.1251650Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2024-06-26T05:43:10.1252750Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2024-06-26T05:43:10.1253900Z adding 'torch/include/ATen/ops/addcmul.h' 2024-06-26T05:43:10.1254680Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1255700Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2024-06-26T05:43:10.1256580Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2024-06-26T05:43:10.1257410Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2024-06-26T05:43:10.1258590Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2024-06-26T05:43:10.1259450Z adding 'torch/include/ATen/ops/addcmul_mps_dispatch.h' 2024-06-26T05:43:10.1260290Z adding 'torch/include/ATen/ops/addcmul_native.h' 2024-06-26T05:43:10.1261520Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2024-06-26T05:43:10.1262660Z adding 'torch/include/ATen/ops/addmm.h' 2024-06-26T05:43:10.1263490Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1264640Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2024-06-26T05:43:10.1265180Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2024-06-26T05:43:10.1266380Z adding 'torch/include/ATen/ops/addmm_meta.h' 2024-06-26T05:43:10.1267290Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2024-06-26T05:43:10.1268190Z adding 'torch/include/ATen/ops/addmm_mps_dispatch.h' 2024-06-26T05:43:10.1269340Z adding 'torch/include/ATen/ops/addmm_native.h' 2024-06-26T05:43:10.1270530Z adding 'torch/include/ATen/ops/addmm_ops.h' 2024-06-26T05:43:10.1271660Z adding 'torch/include/ATen/ops/addmv.h' 2024-06-26T05:43:10.1272710Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1273310Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2024-06-26T05:43:10.1274530Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2024-06-26T05:43:10.1275430Z adding 'torch/include/ATen/ops/addmv_meta.h' 2024-06-26T05:43:10.1276460Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2024-06-26T05:43:10.1277460Z adding 'torch/include/ATen/ops/addmv_mps_dispatch.h' 2024-06-26T05:43:10.1278470Z adding 'torch/include/ATen/ops/addmv_native.h' 2024-06-26T05:43:10.1279350Z adding 'torch/include/ATen/ops/addmv_ops.h' 2024-06-26T05:43:10.1280610Z adding 'torch/include/ATen/ops/addr.h' 2024-06-26T05:43:10.1281890Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1282390Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2024-06-26T05:43:10.1283590Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2024-06-26T05:43:10.1284440Z adding 'torch/include/ATen/ops/addr_mps_dispatch.h' 2024-06-26T05:43:10.1285480Z adding 'torch/include/ATen/ops/addr_native.h' 2024-06-26T05:43:10.1286800Z adding 'torch/include/ATen/ops/addr_ops.h' 2024-06-26T05:43:10.1287270Z adding 'torch/include/ATen/ops/adjoint.h' 2024-06-26T05:43:10.1288650Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1289210Z adding 'torch/include/ATen/ops/adjoint_native.h' 2024-06-26T05:43:10.1290450Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2024-06-26T05:43:10.1291670Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2024-06-26T05:43:10.1292610Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2024-06-26T05:43:10.1294060Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1294470Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2024-06-26T05:43:10.1295740Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2024-06-26T05:43:10.1297000Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1297440Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2024-06-26T05:43:10.1298730Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2024-06-26T05:43:10.1299520Z adding 'torch/include/ATen/ops/alias.h' 2024-06-26T05:43:10.1300800Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1301330Z adding 'torch/include/ATen/ops/alias_copy.h' 2024-06-26T05:43:10.1302710Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1303460Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1304520Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2024-06-26T05:43:10.1305510Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2024-06-26T05:43:10.1306500Z adding 'torch/include/ATen/ops/alias_native.h' 2024-06-26T05:43:10.1307340Z adding 'torch/include/ATen/ops/alias_ops.h' 2024-06-26T05:43:10.1308180Z adding 'torch/include/ATen/ops/align_as.h' 2024-06-26T05:43:10.1309490Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1309950Z adding 'torch/include/ATen/ops/align_as_native.h' 2024-06-26T05:43:10.1311200Z adding 'torch/include/ATen/ops/align_as_ops.h' 2024-06-26T05:43:10.1312090Z adding 'torch/include/ATen/ops/align_tensors.h' 2024-06-26T05:43:10.1313370Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1313760Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2024-06-26T05:43:10.1315080Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2024-06-26T05:43:10.1315930Z adding 'torch/include/ATen/ops/align_to.h' 2024-06-26T05:43:10.1316910Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1317980Z adding 'torch/include/ATen/ops/align_to_native.h' 2024-06-26T05:43:10.1318970Z adding 'torch/include/ATen/ops/align_to_ops.h' 2024-06-26T05:43:10.1320110Z adding 'torch/include/ATen/ops/all.h' 2024-06-26T05:43:10.1321080Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1322300Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1322880Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1324060Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2024-06-26T05:43:10.1325060Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2024-06-26T05:43:10.1326030Z adding 'torch/include/ATen/ops/all_meta.h' 2024-06-26T05:43:10.1326890Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2024-06-26T05:43:10.1327960Z adding 'torch/include/ATen/ops/all_mps_dispatch.h' 2024-06-26T05:43:10.1328970Z adding 'torch/include/ATen/ops/all_native.h' 2024-06-26T05:43:10.1330260Z adding 'torch/include/ATen/ops/all_ops.h' 2024-06-26T05:43:10.1331420Z adding 'torch/include/ATen/ops/allclose.h' 2024-06-26T05:43:10.1332150Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1333360Z adding 'torch/include/ATen/ops/allclose_native.h' 2024-06-26T05:43:10.1334350Z adding 'torch/include/ATen/ops/allclose_ops.h' 2024-06-26T05:43:10.1335210Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2024-06-26T05:43:10.1336230Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1337270Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2024-06-26T05:43:10.1338130Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2024-06-26T05:43:10.1339150Z adding 'torch/include/ATen/ops/amax.h' 2024-06-26T05:43:10.1340510Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1340900Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2024-06-26T05:43:10.1342110Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2024-06-26T05:43:10.1342970Z adding 'torch/include/ATen/ops/amax_meta.h' 2024-06-26T05:43:10.1344040Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2024-06-26T05:43:10.1344640Z adding 'torch/include/ATen/ops/amax_mps_dispatch.h' 2024-06-26T05:43:10.1345860Z adding 'torch/include/ATen/ops/amax_native.h' 2024-06-26T05:43:10.1347000Z adding 'torch/include/ATen/ops/amax_ops.h' 2024-06-26T05:43:10.1348140Z adding 'torch/include/ATen/ops/amin.h' 2024-06-26T05:43:10.1349160Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1350250Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2024-06-26T05:43:10.1350780Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2024-06-26T05:43:10.1351940Z adding 'torch/include/ATen/ops/amin_meta.h' 2024-06-26T05:43:10.1352820Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2024-06-26T05:43:10.1353680Z adding 'torch/include/ATen/ops/amin_mps_dispatch.h' 2024-06-26T05:43:10.1354840Z adding 'torch/include/ATen/ops/amin_native.h' 2024-06-26T05:43:10.1355680Z adding 'torch/include/ATen/ops/amin_ops.h' 2024-06-26T05:43:10.1356810Z adding 'torch/include/ATen/ops/aminmax.h' 2024-06-26T05:43:10.1357970Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1359010Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2024-06-26T05:43:10.1359680Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2024-06-26T05:43:10.1360890Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2024-06-26T05:43:10.1361770Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2024-06-26T05:43:10.1362970Z adding 'torch/include/ATen/ops/aminmax_mps_dispatch.h' 2024-06-26T05:43:10.1364020Z adding 'torch/include/ATen/ops/aminmax_native.h' 2024-06-26T05:43:10.1365190Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2024-06-26T05:43:10.1365760Z adding 'torch/include/ATen/ops/and.h' 2024-06-26T05:43:10.1367190Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1367700Z adding 'torch/include/ATen/ops/and_native.h' 2024-06-26T05:43:10.1369090Z adding 'torch/include/ATen/ops/and_ops.h' 2024-06-26T05:43:10.1369920Z adding 'torch/include/ATen/ops/angle.h' 2024-06-26T05:43:10.1371100Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2024-06-26T05:43:10.1371960Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2024-06-26T05:43:10.1372950Z adding 'torch/include/ATen/ops/angle_native.h' 2024-06-26T05:43:10.1377290Z adding 'torch/include/ATen/ops/angle_ops.h' 2024-06-26T05:43:10.1377560Z adding 'torch/include/ATen/ops/any.h' 2024-06-26T05:43:10.1377810Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1378110Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1378350Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1378690Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2024-06-26T05:43:10.1379990Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2024-06-26T05:43:10.1380970Z adding 'torch/include/ATen/ops/any_meta.h' 2024-06-26T05:43:10.1381830Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2024-06-26T05:43:10.1383000Z adding 'torch/include/ATen/ops/any_mps_dispatch.h' 2024-06-26T05:43:10.1383990Z adding 'torch/include/ATen/ops/any_native.h' 2024-06-26T05:43:10.1385140Z adding 'torch/include/ATen/ops/any_ops.h' 2024-06-26T05:43:10.1386440Z adding 'torch/include/ATen/ops/arange.h' 2024-06-26T05:43:10.1387420Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1388470Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2024-06-26T05:43:10.1389330Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2024-06-26T05:43:10.1390230Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2024-06-26T05:43:10.1391060Z adding 'torch/include/ATen/ops/arange_mps_dispatch.h' 2024-06-26T05:43:10.1392130Z adding 'torch/include/ATen/ops/arange_native.h' 2024-06-26T05:43:10.1393370Z adding 'torch/include/ATen/ops/arange_ops.h' 2024-06-26T05:43:10.1394510Z adding 'torch/include/ATen/ops/arccos.h' 2024-06-26T05:43:10.1395860Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1396440Z adding 'torch/include/ATen/ops/arccos_native.h' 2024-06-26T05:43:10.1397770Z adding 'torch/include/ATen/ops/arccos_ops.h' 2024-06-26T05:43:10.1398770Z adding 'torch/include/ATen/ops/arccosh.h' 2024-06-26T05:43:10.1399770Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1400510Z adding 'torch/include/ATen/ops/arccosh_native.h' 2024-06-26T05:43:10.1401720Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2024-06-26T05:43:10.1402860Z adding 'torch/include/ATen/ops/arcsin.h' 2024-06-26T05:43:10.1403630Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1404780Z adding 'torch/include/ATen/ops/arcsin_native.h' 2024-06-26T05:43:10.1405760Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2024-06-26T05:43:10.1406600Z adding 'torch/include/ATen/ops/arcsinh.h' 2024-06-26T05:43:10.1407880Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1408300Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2024-06-26T05:43:10.1409580Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2024-06-26T05:43:10.1410410Z adding 'torch/include/ATen/ops/arctan.h' 2024-06-26T05:43:10.1411580Z adding 'torch/include/ATen/ops/arctan2.h' 2024-06-26T05:43:10.1412690Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1413190Z adding 'torch/include/ATen/ops/arctan2_native.h' 2024-06-26T05:43:10.1414520Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2024-06-26T05:43:10.1415490Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1416240Z adding 'torch/include/ATen/ops/arctan_native.h' 2024-06-26T05:43:10.1417400Z adding 'torch/include/ATen/ops/arctan_ops.h' 2024-06-26T05:43:10.1418230Z adding 'torch/include/ATen/ops/arctanh.h' 2024-06-26T05:43:10.1419550Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1419960Z adding 'torch/include/ATen/ops/arctanh_native.h' 2024-06-26T05:43:10.1421240Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2024-06-26T05:43:10.1422060Z adding 'torch/include/ATen/ops/argmax.h' 2024-06-26T05:43:10.1423400Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1423950Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2024-06-26T05:43:10.1425170Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2024-06-26T05:43:10.1425990Z adding 'torch/include/ATen/ops/argmax_meta.h' 2024-06-26T05:43:10.1427170Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2024-06-26T05:43:10.1427680Z adding 'torch/include/ATen/ops/argmax_mps_dispatch.h' 2024-06-26T05:43:10.1428910Z adding 'torch/include/ATen/ops/argmax_native.h' 2024-06-26T05:43:10.1430060Z adding 'torch/include/ATen/ops/argmax_ops.h' 2024-06-26T05:43:10.1430890Z adding 'torch/include/ATen/ops/argmin.h' 2024-06-26T05:43:10.1432240Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1432650Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2024-06-26T05:43:10.1433820Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2024-06-26T05:43:10.1434660Z adding 'torch/include/ATen/ops/argmin_meta.h' 2024-06-26T05:43:10.1435840Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2024-06-26T05:43:10.1436350Z adding 'torch/include/ATen/ops/argmin_mps_dispatch.h' 2024-06-26T05:43:10.1437570Z adding 'torch/include/ATen/ops/argmin_native.h' 2024-06-26T05:43:10.1438730Z adding 'torch/include/ATen/ops/argmin_ops.h' 2024-06-26T05:43:10.1439610Z adding 'torch/include/ATen/ops/argsort.h' 2024-06-26T05:43:10.1440880Z adding 'torch/include/ATen/ops/argsort_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1441550Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1442800Z adding 'torch/include/ATen/ops/argsort_cpu_dispatch.h' 2024-06-26T05:43:10.1443450Z adding 'torch/include/ATen/ops/argsort_cuda_dispatch.h' 2024-06-26T05:43:10.1444560Z adding 'torch/include/ATen/ops/argsort_mps_dispatch.h' 2024-06-26T05:43:10.1445400Z adding 'torch/include/ATen/ops/argsort_native.h' 2024-06-26T05:43:10.1446650Z adding 'torch/include/ATen/ops/argsort_ops.h' 2024-06-26T05:43:10.1447490Z adding 'torch/include/ATen/ops/argwhere.h' 2024-06-26T05:43:10.1448780Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1449240Z adding 'torch/include/ATen/ops/argwhere_native.h' 2024-06-26T05:43:10.1450470Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2024-06-26T05:43:10.1451630Z adding 'torch/include/ATen/ops/as_strided.h' 2024-06-26T05:43:10.1452670Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1453890Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2024-06-26T05:43:10.1455210Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1455830Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1456880Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2024-06-26T05:43:10.1458080Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2024-06-26T05:43:10.1459200Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2024-06-26T05:43:10.1460090Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2024-06-26T05:43:10.1460970Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2024-06-26T05:43:10.1461820Z adding 'torch/include/ATen/ops/as_strided_mps_dispatch.h' 2024-06-26T05:43:10.1462970Z adding 'torch/include/ATen/ops/as_strided_native.h' 2024-06-26T05:43:10.1463980Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2024-06-26T05:43:10.1465180Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2024-06-26T05:43:10.1466180Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1467420Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1467890Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2024-06-26T05:43:10.1469120Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2024-06-26T05:43:10.1469920Z adding 'torch/include/ATen/ops/asin.h' 2024-06-26T05:43:10.1470940Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1471950Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2024-06-26T05:43:10.1472430Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2024-06-26T05:43:10.1473540Z adding 'torch/include/ATen/ops/asin_meta.h' 2024-06-26T05:43:10.1474410Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2024-06-26T05:43:10.1475260Z adding 'torch/include/ATen/ops/asin_mps_dispatch.h' 2024-06-26T05:43:10.1476240Z adding 'torch/include/ATen/ops/asin_native.h' 2024-06-26T05:43:10.1477070Z adding 'torch/include/ATen/ops/asin_ops.h' 2024-06-26T05:43:10.1478210Z adding 'torch/include/ATen/ops/asinh.h' 2024-06-26T05:43:10.1478940Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1479950Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2024-06-26T05:43:10.1480570Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2024-06-26T05:43:10.1481610Z adding 'torch/include/ATen/ops/asinh_meta.h' 2024-06-26T05:43:10.1482260Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2024-06-26T05:43:10.1483190Z adding 'torch/include/ATen/ops/asinh_mps_dispatch.h' 2024-06-26T05:43:10.1484250Z adding 'torch/include/ATen/ops/asinh_native.h' 2024-06-26T05:43:10.1485080Z adding 'torch/include/ATen/ops/asinh_ops.h' 2024-06-26T05:43:10.1486180Z adding 'torch/include/ATen/ops/atan.h' 2024-06-26T05:43:10.1486790Z adding 'torch/include/ATen/ops/atan2.h' 2024-06-26T05:43:10.1488110Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1488620Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2024-06-26T05:43:10.1489850Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2024-06-26T05:43:10.1490330Z adding 'torch/include/ATen/ops/atan2_meta.h' 2024-06-26T05:43:10.1491490Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2024-06-26T05:43:10.1492060Z adding 'torch/include/ATen/ops/atan2_mps_dispatch.h' 2024-06-26T05:43:10.1493230Z adding 'torch/include/ATen/ops/atan2_native.h' 2024-06-26T05:43:10.1494220Z adding 'torch/include/ATen/ops/atan2_ops.h' 2024-06-26T05:43:10.1495240Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1495730Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2024-06-26T05:43:10.1496970Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2024-06-26T05:43:10.1497410Z adding 'torch/include/ATen/ops/atan_meta.h' 2024-06-26T05:43:10.1498540Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2024-06-26T05:43:10.1499100Z adding 'torch/include/ATen/ops/atan_mps_dispatch.h' 2024-06-26T05:43:10.1500240Z adding 'torch/include/ATen/ops/atan_native.h' 2024-06-26T05:43:10.1501380Z adding 'torch/include/ATen/ops/atan_ops.h' 2024-06-26T05:43:10.1501880Z adding 'torch/include/ATen/ops/atanh.h' 2024-06-26T05:43:10.1503280Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1503690Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2024-06-26T05:43:10.1504780Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2024-06-26T05:43:10.1505610Z adding 'torch/include/ATen/ops/atanh_meta.h' 2024-06-26T05:43:10.1506260Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2024-06-26T05:43:10.1507210Z adding 'torch/include/ATen/ops/atanh_mps_dispatch.h' 2024-06-26T05:43:10.1508200Z adding 'torch/include/ATen/ops/atanh_native.h' 2024-06-26T05:43:10.1509040Z adding 'torch/include/ATen/ops/atanh_ops.h' 2024-06-26T05:43:10.1510190Z adding 'torch/include/ATen/ops/atleast_1d.h' 2024-06-26T05:43:10.1510950Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1511800Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2024-06-26T05:43:10.1512880Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2024-06-26T05:43:10.1513850Z adding 'torch/include/ATen/ops/atleast_2d.h' 2024-06-26T05:43:10.1514570Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1515560Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2024-06-26T05:43:10.1516540Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2024-06-26T05:43:10.1517520Z adding 'torch/include/ATen/ops/atleast_3d.h' 2024-06-26T05:43:10.1518140Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1519150Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2024-06-26T05:43:10.1520140Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2024-06-26T05:43:10.1521120Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2024-06-26T05:43:10.1521780Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1522820Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2024-06-26T05:43:10.1523810Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2024-06-26T05:43:10.1524800Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2024-06-26T05:43:10.1525700Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2024-06-26T05:43:10.1527000Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1527520Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.1528800Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.1529330Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2024-06-26T05:43:10.1530510Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2024-06-26T05:43:10.1531120Z adding 'torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h' 2024-06-26T05:43:10.1535520Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2024-06-26T05:43:10.1535900Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2024-06-26T05:43:10.1536230Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1536400Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2024-06-26T05:43:10.1536580Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2024-06-26T05:43:10.1537000Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2024-06-26T05:43:10.1538300Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2024-06-26T05:43:10.1538770Z adding 'torch/include/ATen/ops/avg_pool2d_mps_dispatch.h' 2024-06-26T05:43:10.1540030Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2024-06-26T05:43:10.1541080Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2024-06-26T05:43:10.1542070Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2024-06-26T05:43:10.1543240Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2024-06-26T05:43:10.1543980Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1545040Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.1545930Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.1546730Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2024-06-26T05:43:10.1547620Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2024-06-26T05:43:10.1548760Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2024-06-26T05:43:10.1549610Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2024-06-26T05:43:10.1550920Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1551260Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2024-06-26T05:43:10.1552460Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2024-06-26T05:43:10.1553080Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2024-06-26T05:43:10.1554080Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2024-06-26T05:43:10.1555220Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2024-06-26T05:43:10.1556200Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2024-06-26T05:43:10.1557170Z adding 'torch/include/ATen/ops/baddbmm.h' 2024-06-26T05:43:10.1558210Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1558780Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2024-06-26T05:43:10.1559990Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2024-06-26T05:43:10.1560550Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2024-06-26T05:43:10.1561710Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2024-06-26T05:43:10.1562570Z adding 'torch/include/ATen/ops/baddbmm_mps_dispatch.h' 2024-06-26T05:43:10.1563690Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2024-06-26T05:43:10.1564680Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2024-06-26T05:43:10.1565860Z adding 'torch/include/ATen/ops/bartlett_window.h' 2024-06-26T05:43:10.1566860Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1567460Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2024-06-26T05:43:10.1568830Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2024-06-26T05:43:10.1569510Z adding 'torch/include/ATen/ops/batch_norm.h' 2024-06-26T05:43:10.1570820Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2024-06-26T05:43:10.1571740Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2024-06-26T05:43:10.1572970Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2024-06-26T05:43:10.1573610Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2024-06-26T05:43:10.1574960Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1575520Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2024-06-26T05:43:10.1576780Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2024-06-26T05:43:10.1577620Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2024-06-26T05:43:10.1578490Z adding 'torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h' 2024-06-26T05:43:10.1579640Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2024-06-26T05:43:10.1580480Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2024-06-26T05:43:10.1581710Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2024-06-26T05:43:10.1582710Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1583350Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2024-06-26T05:43:10.1584530Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2024-06-26T05:43:10.1585680Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2024-06-26T05:43:10.1586340Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1587410Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2024-06-26T05:43:10.1588430Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2024-06-26T05:43:10.1589050Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2024-06-26T05:43:10.1590300Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2024-06-26T05:43:10.1591170Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2024-06-26T05:43:10.1592280Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1593360Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2024-06-26T05:43:10.1593810Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2024-06-26T05:43:10.1595200Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2024-06-26T05:43:10.1596090Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2024-06-26T05:43:10.1597390Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1597910Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2024-06-26T05:43:10.1599020Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2024-06-26T05:43:10.1600180Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2024-06-26T05:43:10.1600580Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2024-06-26T05:43:10.1601830Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2024-06-26T05:43:10.1602760Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2024-06-26T05:43:10.1603890Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1604360Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2024-06-26T05:43:10.1605490Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2024-06-26T05:43:10.1606640Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2024-06-26T05:43:10.1607260Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2024-06-26T05:43:10.1608680Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1609090Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2024-06-26T05:43:10.1610250Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2024-06-26T05:43:10.1610830Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2024-06-26T05:43:10.1612140Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2024-06-26T05:43:10.1613290Z adding 'torch/include/ATen/ops/bernoulli.h' 2024-06-26T05:43:10.1614700Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1615410Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1616540Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2024-06-26T05:43:10.1617080Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2024-06-26T05:43:10.1618250Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2024-06-26T05:43:10.1618840Z adding 'torch/include/ATen/ops/bernoulli_mps_dispatch.h' 2024-06-26T05:43:10.1620120Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2024-06-26T05:43:10.1621320Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2024-06-26T05:43:10.1622290Z adding 'torch/include/ATen/ops/bilinear.h' 2024-06-26T05:43:10.1623280Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1623840Z adding 'torch/include/ATen/ops/bilinear_native.h' 2024-06-26T05:43:10.1625060Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2024-06-26T05:43:10.1625940Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2024-06-26T05:43:10.1627140Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2024-06-26T05:43:10.1627830Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2024-06-26T05:43:10.1628850Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2024-06-26T05:43:10.1630000Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h' 2024-06-26T05:43:10.1630620Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2024-06-26T05:43:10.1631860Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2024-06-26T05:43:10.1632750Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2024-06-26T05:43:10.1633430Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2024-06-26T05:43:10.1634420Z adding 'torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h' 2024-06-26T05:43:10.1635590Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2024-06-26T05:43:10.1636250Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2024-06-26T05:43:10.1637510Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2024-06-26T05:43:10.1638750Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1639150Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2024-06-26T05:43:10.1640430Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2024-06-26T05:43:10.1641200Z adding 'torch/include/ATen/ops/bincount.h' 2024-06-26T05:43:10.1642480Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1642890Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2024-06-26T05:43:10.1643980Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2024-06-26T05:43:10.1644560Z adding 'torch/include/ATen/ops/bincount_mps_dispatch.h' 2024-06-26T05:43:10.1645720Z adding 'torch/include/ATen/ops/bincount_native.h' 2024-06-26T05:43:10.1646730Z adding 'torch/include/ATen/ops/bincount_ops.h' 2024-06-26T05:43:10.1647700Z adding 'torch/include/ATen/ops/binomial.h' 2024-06-26T05:43:10.1648670Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1649240Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2024-06-26T05:43:10.1650480Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2024-06-26T05:43:10.1650910Z adding 'torch/include/ATen/ops/binomial_native.h' 2024-06-26T05:43:10.1652200Z adding 'torch/include/ATen/ops/binomial_ops.h' 2024-06-26T05:43:10.1653360Z adding 'torch/include/ATen/ops/bitwise_and.h' 2024-06-26T05:43:10.1654110Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1655330Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1655760Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2024-06-26T05:43:10.1656740Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2024-06-26T05:43:10.1657860Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2024-06-26T05:43:10.1658370Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2024-06-26T05:43:10.1659540Z adding 'torch/include/ATen/ops/bitwise_and_mps_dispatch.h' 2024-06-26T05:43:10.1660130Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2024-06-26T05:43:10.1661630Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2024-06-26T05:43:10.1662750Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2024-06-26T05:43:10.1665430Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1666660Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1667840Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2024-06-26T05:43:10.1668720Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2024-06-26T05:43:10.1670010Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2024-06-26T05:43:10.1670910Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2024-06-26T05:43:10.1672180Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2024-06-26T05:43:10.1673490Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2024-06-26T05:43:10.1674700Z adding 'torch/include/ATen/ops/bitwise_not.h' 2024-06-26T05:43:10.1675770Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1676960Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2024-06-26T05:43:10.1677570Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2024-06-26T05:43:10.1678970Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2024-06-26T05:43:10.1680010Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2024-06-26T05:43:10.1681200Z adding 'torch/include/ATen/ops/bitwise_not_mps_dispatch.h' 2024-06-26T05:43:10.1682060Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2024-06-26T05:43:10.1683400Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2024-06-26T05:43:10.1684550Z adding 'torch/include/ATen/ops/bitwise_or.h' 2024-06-26T05:43:10.1685990Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1686730Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1687970Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2024-06-26T05:43:10.1688850Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2024-06-26T05:43:10.1690000Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2024-06-26T05:43:10.1691040Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2024-06-26T05:43:10.1691900Z adding 'torch/include/ATen/ops/bitwise_or_mps_dispatch.h' 2024-06-26T05:43:10.1692910Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2024-06-26T05:43:10.1694400Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2024-06-26T05:43:10.1699100Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2024-06-26T05:43:10.1699590Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1699970Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1700230Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2024-06-26T05:43:10.1700460Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2024-06-26T05:43:10.1700640Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2024-06-26T05:43:10.1701310Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2024-06-26T05:43:10.1702710Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2024-06-26T05:43:10.1703990Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2024-06-26T05:43:10.1705300Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2024-06-26T05:43:10.1706290Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1707590Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1708070Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2024-06-26T05:43:10.1709440Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2024-06-26T05:43:10.1710270Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2024-06-26T05:43:10.1711460Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2024-06-26T05:43:10.1712080Z adding 'torch/include/ATen/ops/bitwise_xor_mps_dispatch.h' 2024-06-26T05:43:10.1713500Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2024-06-26T05:43:10.1714760Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2024-06-26T05:43:10.1716110Z adding 'torch/include/ATen/ops/blackman_window.h' 2024-06-26T05:43:10.1717270Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1718310Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2024-06-26T05:43:10.1719470Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2024-06-26T05:43:10.1720620Z adding 'torch/include/ATen/ops/block_diag.h' 2024-06-26T05:43:10.1721620Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1722700Z adding 'torch/include/ATen/ops/block_diag_native.h' 2024-06-26T05:43:10.1723690Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2024-06-26T05:43:10.1724880Z adding 'torch/include/ATen/ops/bmm.h' 2024-06-26T05:43:10.1725820Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1726960Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2024-06-26T05:43:10.1727810Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2024-06-26T05:43:10.1728920Z adding 'torch/include/ATen/ops/bmm_meta.h' 2024-06-26T05:43:10.1729780Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2024-06-26T05:43:10.1730910Z adding 'torch/include/ATen/ops/bmm_mps_dispatch.h' 2024-06-26T05:43:10.1731880Z adding 'torch/include/ATen/ops/bmm_native.h' 2024-06-26T05:43:10.1733080Z adding 'torch/include/ATen/ops/bmm_ops.h' 2024-06-26T05:43:10.1733940Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2024-06-26T05:43:10.1735330Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1735830Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2024-06-26T05:43:10.1737270Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2024-06-26T05:43:10.1738100Z adding 'torch/include/ATen/ops/broadcast_to.h' 2024-06-26T05:43:10.1739500Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1739980Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2024-06-26T05:43:10.1741420Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2024-06-26T05:43:10.1742430Z adding 'torch/include/ATen/ops/bucketize.h' 2024-06-26T05:43:10.1743750Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1744320Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2024-06-26T05:43:10.1745690Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2024-06-26T05:43:10.1746310Z adding 'torch/include/ATen/ops/bucketize_mps_dispatch.h' 2024-06-26T05:43:10.1747740Z adding 'torch/include/ATen/ops/bucketize_native.h' 2024-06-26T05:43:10.1748910Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2024-06-26T05:43:10.1750000Z adding 'torch/include/ATen/ops/can_cast.h' 2024-06-26T05:43:10.1750990Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1752040Z adding 'torch/include/ATen/ops/can_cast_native.h' 2024-06-26T05:43:10.1753030Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2024-06-26T05:43:10.1754200Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2024-06-26T05:43:10.1755410Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1755940Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2024-06-26T05:43:10.1757150Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2024-06-26T05:43:10.1758340Z adding 'torch/include/ATen/ops/cat.h' 2024-06-26T05:43:10.1759360Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1760550Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1761140Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2024-06-26T05:43:10.1762510Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2024-06-26T05:43:10.1764100Z adding 'torch/include/ATen/ops/cat_meta.h' 2024-06-26T05:43:10.1765400Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2024-06-26T05:43:10.1766560Z adding 'torch/include/ATen/ops/cat_mps_dispatch.h' 2024-06-26T05:43:10.1767430Z adding 'torch/include/ATen/ops/cat_native.h' 2024-06-26T05:43:10.1768610Z adding 'torch/include/ATen/ops/cat_ops.h' 2024-06-26T05:43:10.1769760Z adding 'torch/include/ATen/ops/cauchy.h' 2024-06-26T05:43:10.1770790Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1771410Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2024-06-26T05:43:10.1772620Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2024-06-26T05:43:10.1773120Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2024-06-26T05:43:10.1774130Z adding 'torch/include/ATen/ops/cauchy_native.h' 2024-06-26T05:43:10.1775420Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2024-06-26T05:43:10.1776020Z adding 'torch/include/ATen/ops/ccol_indices.h' 2024-06-26T05:43:10.1777460Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1777900Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2024-06-26T05:43:10.1779230Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1779950Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1781080Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2024-06-26T05:43:10.1781660Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2024-06-26T05:43:10.1782790Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2024-06-26T05:43:10.1783810Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2024-06-26T05:43:10.1784420Z adding 'torch/include/ATen/ops/cdist.h' 2024-06-26T05:43:10.1785660Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1786150Z adding 'torch/include/ATen/ops/cdist_native.h' 2024-06-26T05:43:10.1787370Z adding 'torch/include/ATen/ops/cdist_ops.h' 2024-06-26T05:43:10.1788210Z adding 'torch/include/ATen/ops/ceil.h' 2024-06-26T05:43:10.1789250Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1790250Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2024-06-26T05:43:10.1790690Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2024-06-26T05:43:10.1791820Z adding 'torch/include/ATen/ops/ceil_meta.h' 2024-06-26T05:43:10.1792480Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2024-06-26T05:43:10.1793460Z adding 'torch/include/ATen/ops/ceil_mps_dispatch.h' 2024-06-26T05:43:10.1794450Z adding 'torch/include/ATen/ops/ceil_native.h' 2024-06-26T05:43:10.1795470Z adding 'torch/include/ATen/ops/ceil_ops.h' 2024-06-26T05:43:10.1796330Z adding 'torch/include/ATen/ops/celu.h' 2024-06-26T05:43:10.1797600Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1797960Z adding 'torch/include/ATen/ops/celu_native.h' 2024-06-26T05:43:10.1799240Z adding 'torch/include/ATen/ops/celu_ops.h' 2024-06-26T05:43:10.1800090Z adding 'torch/include/ATen/ops/chain_matmul.h' 2024-06-26T05:43:10.1801410Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1801710Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2024-06-26T05:43:10.1803010Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2024-06-26T05:43:10.1803550Z adding 'torch/include/ATen/ops/chalf.h' 2024-06-26T05:43:10.1804950Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1805300Z adding 'torch/include/ATen/ops/chalf_native.h' 2024-06-26T05:43:10.1806530Z adding 'torch/include/ATen/ops/chalf_ops.h' 2024-06-26T05:43:10.1807710Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2024-06-26T05:43:10.1808440Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1809540Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2024-06-26T05:43:10.1810090Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2024-06-26T05:43:10.1811230Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2024-06-26T05:43:10.1812080Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2024-06-26T05:43:10.1813220Z adding 'torch/include/ATen/ops/cholesky.h' 2024-06-26T05:43:10.1813790Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2024-06-26T05:43:10.1814910Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2024-06-26T05:43:10.1815740Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2024-06-26T05:43:10.1816800Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2024-06-26T05:43:10.1817310Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2024-06-26T05:43:10.1818440Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2024-06-26T05:43:10.1819290Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2024-06-26T05:43:10.1820190Z adding 'torch/include/ATen/ops/cholesky_native.h' 2024-06-26T05:43:10.1821310Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2024-06-26T05:43:10.1821910Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2024-06-26T05:43:10.1823970Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1824470Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2024-06-26T05:43:10.1825720Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2024-06-26T05:43:10.1826610Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2024-06-26T05:43:10.1827620Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1828250Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2024-06-26T05:43:10.1829460Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2024-06-26T05:43:10.1830230Z adding 'torch/include/ATen/ops/chunk.h' 2024-06-26T05:43:10.1831510Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1831850Z adding 'torch/include/ATen/ops/chunk_native.h' 2024-06-26T05:43:10.1833050Z adding 'torch/include/ATen/ops/chunk_ops.h' 2024-06-26T05:43:10.1834190Z adding 'torch/include/ATen/ops/clamp.h' 2024-06-26T05:43:10.1835040Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1835990Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2024-06-26T05:43:10.1836880Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2024-06-26T05:43:10.1837800Z adding 'torch/include/ATen/ops/clamp_max.h' 2024-06-26T05:43:10.1839080Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1839590Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2024-06-26T05:43:10.1840840Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2024-06-26T05:43:10.1841340Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2024-06-26T05:43:10.1842510Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2024-06-26T05:43:10.1843110Z adding 'torch/include/ATen/ops/clamp_max_mps_dispatch.h' 2024-06-26T05:43:10.1844360Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2024-06-26T05:43:10.1845780Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2024-06-26T05:43:10.1846770Z adding 'torch/include/ATen/ops/clamp_meta.h' 2024-06-26T05:43:10.1847460Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2024-06-26T05:43:10.1848660Z adding 'torch/include/ATen/ops/clamp_min.h' 2024-06-26T05:43:10.1849710Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1850230Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2024-06-26T05:43:10.1851470Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2024-06-26T05:43:10.1851940Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2024-06-26T05:43:10.1853140Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2024-06-26T05:43:10.1853760Z adding 'torch/include/ATen/ops/clamp_min_mps_dispatch.h' 2024-06-26T05:43:10.1855000Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2024-06-26T05:43:10.1856040Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2024-06-26T05:43:10.1856800Z adding 'torch/include/ATen/ops/clamp_mps_dispatch.h' 2024-06-26T05:43:10.1857930Z adding 'torch/include/ATen/ops/clamp_native.h' 2024-06-26T05:43:10.1863140Z adding 'torch/include/ATen/ops/clamp_ops.h' 2024-06-26T05:43:10.1863460Z adding 'torch/include/ATen/ops/clip.h' 2024-06-26T05:43:10.1864860Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1865190Z adding 'torch/include/ATen/ops/clip_native.h' 2024-06-26T05:43:10.1865320Z adding 'torch/include/ATen/ops/clip_ops.h' 2024-06-26T05:43:10.1865430Z adding 'torch/include/ATen/ops/clone.h' 2024-06-26T05:43:10.1867030Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1867400Z adding 'torch/include/ATen/ops/clone_native.h' 2024-06-26T05:43:10.1868670Z adding 'torch/include/ATen/ops/clone_ops.h' 2024-06-26T05:43:10.1869550Z adding 'torch/include/ATen/ops/coalesce.h' 2024-06-26T05:43:10.1870840Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1871460Z adding 'torch/include/ATen/ops/coalesce_native.h' 2024-06-26T05:43:10.1872690Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2024-06-26T05:43:10.1873930Z adding 'torch/include/ATen/ops/col2im.h' 2024-06-26T05:43:10.1875110Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2024-06-26T05:43:10.1876010Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2024-06-26T05:43:10.1877160Z adding 'torch/include/ATen/ops/col2im_native.h' 2024-06-26T05:43:10.1878320Z adding 'torch/include/ATen/ops/col2im_ops.h' 2024-06-26T05:43:10.1878880Z adding 'torch/include/ATen/ops/col_indices.h' 2024-06-26T05:43:10.1880300Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1881050Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2024-06-26T05:43:10.1882310Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1883060Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1884120Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2024-06-26T05:43:10.1885280Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2024-06-26T05:43:10.1885810Z adding 'torch/include/ATen/ops/col_indices_native.h' 2024-06-26T05:43:10.1887030Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2024-06-26T05:43:10.1888020Z adding 'torch/include/ATen/ops/column_stack.h' 2024-06-26T05:43:10.1889020Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1890080Z adding 'torch/include/ATen/ops/column_stack_native.h' 2024-06-26T05:43:10.1890940Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2024-06-26T05:43:10.1892070Z adding 'torch/include/ATen/ops/combinations.h' 2024-06-26T05:43:10.1893190Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1893660Z adding 'torch/include/ATen/ops/combinations_native.h' 2024-06-26T05:43:10.1894920Z adding 'torch/include/ATen/ops/combinations_ops.h' 2024-06-26T05:43:10.1895740Z adding 'torch/include/ATen/ops/complex.h' 2024-06-26T05:43:10.1897070Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1897600Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2024-06-26T05:43:10.1898840Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2024-06-26T05:43:10.1899550Z adding 'torch/include/ATen/ops/complex_mps_dispatch.h' 2024-06-26T05:43:10.1900750Z adding 'torch/include/ATen/ops/complex_native.h' 2024-06-26T05:43:10.1901600Z adding 'torch/include/ATen/ops/complex_ops.h' 2024-06-26T05:43:10.1902790Z adding 'torch/include/ATen/ops/concat.h' 2024-06-26T05:43:10.1903760Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1904810Z adding 'torch/include/ATen/ops/concat_native.h' 2024-06-26T05:43:10.1905870Z adding 'torch/include/ATen/ops/concat_ops.h' 2024-06-26T05:43:10.1907020Z adding 'torch/include/ATen/ops/concatenate.h' 2024-06-26T05:43:10.1908010Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1909060Z adding 'torch/include/ATen/ops/concatenate_native.h' 2024-06-26T05:43:10.1909910Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2024-06-26T05:43:10.1910970Z adding 'torch/include/ATen/ops/conj.h' 2024-06-26T05:43:10.1911940Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1912980Z adding 'torch/include/ATen/ops/conj_native.h' 2024-06-26T05:43:10.1913820Z adding 'torch/include/ATen/ops/conj_ops.h' 2024-06-26T05:43:10.1914980Z adding 'torch/include/ATen/ops/conj_physical.h' 2024-06-26T05:43:10.1915770Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1917090Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1917540Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2024-06-26T05:43:10.1918730Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2024-06-26T05:43:10.1919590Z adding 'torch/include/ATen/ops/conj_physical_mps_dispatch.h' 2024-06-26T05:43:10.1920430Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2024-06-26T05:43:10.1921640Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2024-06-26T05:43:10.1922800Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2024-06-26T05:43:10.1924020Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1924580Z adding 'torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h' 2024-06-26T05:43:10.1925640Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2024-06-26T05:43:10.1926840Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2024-06-26T05:43:10.1927670Z adding 'torch/include/ATen/ops/contiguous.h' 2024-06-26T05:43:10.1928980Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1929370Z adding 'torch/include/ATen/ops/contiguous_native.h' 2024-06-26T05:43:10.1930620Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2024-06-26T05:43:10.1931780Z adding 'torch/include/ATen/ops/conv1d.h' 2024-06-26T05:43:10.1933060Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1933560Z adding 'torch/include/ATen/ops/conv1d_native.h' 2024-06-26T05:43:10.1934920Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2024-06-26T05:43:10.1936120Z adding 'torch/include/ATen/ops/conv2d.h' 2024-06-26T05:43:10.1937390Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1937890Z adding 'torch/include/ATen/ops/conv2d_native.h' 2024-06-26T05:43:10.1939240Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2024-06-26T05:43:10.1940400Z adding 'torch/include/ATen/ops/conv3d.h' 2024-06-26T05:43:10.1941680Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1942180Z adding 'torch/include/ATen/ops/conv3d_native.h' 2024-06-26T05:43:10.1943500Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2024-06-26T05:43:10.1944840Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2024-06-26T05:43:10.1946090Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1946720Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2024-06-26T05:43:10.1947950Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2024-06-26T05:43:10.1949150Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2024-06-26T05:43:10.1949960Z adding 'torch/include/ATen/ops/conv_tbc.h' 2024-06-26T05:43:10.1951160Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2024-06-26T05:43:10.1952330Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1952730Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2024-06-26T05:43:10.1954080Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2024-06-26T05:43:10.1955050Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1956100Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2024-06-26T05:43:10.1957090Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2024-06-26T05:43:10.1958300Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2024-06-26T05:43:10.1959500Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1959960Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2024-06-26T05:43:10.1961350Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2024-06-26T05:43:10.1962530Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2024-06-26T05:43:10.1963550Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1964170Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2024-06-26T05:43:10.1965510Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2024-06-26T05:43:10.1966640Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2024-06-26T05:43:10.1967940Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.1968320Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2024-06-26T05:43:10.1969610Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2024-06-26T05:43:10.1970910Z adding 'torch/include/ATen/ops/convolution.h' 2024-06-26T05:43:10.1972570Z adding 'torch/include/ATen/ops/convolution_backward.h' 2024-06-26T05:43:10.1973920Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1974990Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2024-06-26T05:43:10.1975590Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2024-06-26T05:43:10.1977060Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2024-06-26T05:43:10.1978580Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2024-06-26T05:43:10.1979890Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1980530Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2024-06-26T05:43:10.1981960Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2024-06-26T05:43:10.1983160Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1983670Z adding 'torch/include/ATen/ops/convolution_native.h' 2024-06-26T05:43:10.1985050Z adding 'torch/include/ATen/ops/convolution_ops.h' 2024-06-26T05:43:10.1986480Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2024-06-26T05:43:10.1987770Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1988260Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2024-06-26T05:43:10.1989700Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2024-06-26T05:43:10.1990480Z adding 'torch/include/ATen/ops/copy.h' 2024-06-26T05:43:10.1991740Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1992480Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.1993670Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2024-06-26T05:43:10.1994460Z adding 'torch/include/ATen/ops/copy_native.h' 2024-06-26T05:43:10.1995600Z adding 'torch/include/ATen/ops/copy_ops.h' 2024-06-26T05:43:10.1996770Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2024-06-26T05:43:10.1997780Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.1998440Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2024-06-26T05:43:10.1999600Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2024-06-26T05:43:10.2000730Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2024-06-26T05:43:10.2001530Z adding 'torch/include/ATen/ops/copysign.h' 2024-06-26T05:43:10.2002830Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2003730Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2004730Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2024-06-26T05:43:10.2005360Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2024-06-26T05:43:10.2006640Z adding 'torch/include/ATen/ops/copysign_meta.h' 2024-06-26T05:43:10.2007240Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2024-06-26T05:43:10.2008490Z adding 'torch/include/ATen/ops/copysign_mps_dispatch.h' 2024-06-26T05:43:10.2009320Z adding 'torch/include/ATen/ops/copysign_native.h' 2024-06-26T05:43:10.2010660Z adding 'torch/include/ATen/ops/copysign_ops.h' 2024-06-26T05:43:10.2011500Z adding 'torch/include/ATen/ops/corrcoef.h' 2024-06-26T05:43:10.2012840Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2013240Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2024-06-26T05:43:10.2014500Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2024-06-26T05:43:10.2015450Z adding 'torch/include/ATen/ops/cos.h' 2024-06-26T05:43:10.2016750Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2017160Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2024-06-26T05:43:10.2018320Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2024-06-26T05:43:10.2019290Z adding 'torch/include/ATen/ops/cos_meta.h' 2024-06-26T05:43:10.2020140Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2024-06-26T05:43:10.2020990Z adding 'torch/include/ATen/ops/cos_mps_dispatch.h' 2024-06-26T05:43:10.2022150Z adding 'torch/include/ATen/ops/cos_native.h' 2024-06-26T05:43:10.2022980Z adding 'torch/include/ATen/ops/cos_ops.h' 2024-06-26T05:43:10.2024130Z adding 'torch/include/ATen/ops/cosh.h' 2024-06-26T05:43:10.2025160Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2025780Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2024-06-26T05:43:10.2027090Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2024-06-26T05:43:10.2027590Z adding 'torch/include/ATen/ops/cosh_meta.h' 2024-06-26T05:43:10.2032140Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2024-06-26T05:43:10.2032450Z adding 'torch/include/ATen/ops/cosh_mps_dispatch.h' 2024-06-26T05:43:10.2032580Z adding 'torch/include/ATen/ops/cosh_native.h' 2024-06-26T05:43:10.2032700Z adding 'torch/include/ATen/ops/cosh_ops.h' 2024-06-26T05:43:10.2032870Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2024-06-26T05:43:10.2033740Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2034330Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2024-06-26T05:43:10.2035590Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2024-06-26T05:43:10.2036400Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2024-06-26T05:43:10.2037700Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2038170Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2024-06-26T05:43:10.2039420Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2024-06-26T05:43:10.2040650Z adding 'torch/include/ATen/ops/count_nonzero.h' 2024-06-26T05:43:10.2041390Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2042530Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2024-06-26T05:43:10.2043160Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2024-06-26T05:43:10.2044390Z adding 'torch/include/ATen/ops/count_nonzero_mps_dispatch.h' 2024-06-26T05:43:10.2045000Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2024-06-26T05:43:10.2046370Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2024-06-26T05:43:10.2047320Z adding 'torch/include/ATen/ops/cov.h' 2024-06-26T05:43:10.2048270Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2049300Z adding 'torch/include/ATen/ops/cov_native.h' 2024-06-26T05:43:10.2050130Z adding 'torch/include/ATen/ops/cov_ops.h' 2024-06-26T05:43:10.2051300Z adding 'torch/include/ATen/ops/cross.h' 2024-06-26T05:43:10.2052270Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2053350Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2024-06-26T05:43:10.2054360Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2055380Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2024-06-26T05:43:10.2056520Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2024-06-26T05:43:10.2057060Z adding 'torch/include/ATen/ops/cross_native.h' 2024-06-26T05:43:10.2058380Z adding 'torch/include/ATen/ops/cross_ops.h' 2024-06-26T05:43:10.2059260Z adding 'torch/include/ATen/ops/crow_indices.h' 2024-06-26T05:43:10.2060540Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2061010Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2024-06-26T05:43:10.2062440Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2063150Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2064230Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2024-06-26T05:43:10.2065050Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2024-06-26T05:43:10.2066190Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2024-06-26T05:43:10.2067030Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2024-06-26T05:43:10.2068110Z adding 'torch/include/ATen/ops/ctc_loss.h' 2024-06-26T05:43:10.2069390Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2069820Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2024-06-26T05:43:10.2071160Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2024-06-26T05:43:10.2072660Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2024-06-26T05:43:10.2074550Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2024-06-26T05:43:10.2075870Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2077010Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2024-06-26T05:43:10.2077560Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2024-06-26T05:43:10.2079100Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2024-06-26T05:43:10.2079920Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2081610Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2024-06-26T05:43:10.2082230Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2024-06-26T05:43:10.2083750Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2024-06-26T05:43:10.2084860Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2024-06-26T05:43:10.2086140Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2024-06-26T05:43:10.2087460Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2088150Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2024-06-26T05:43:10.2089340Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2024-06-26T05:43:10.2090730Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2024-06-26T05:43:10.2091580Z adding 'torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2092900Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2024-06-26T05:43:10.2093730Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2024-06-26T05:43:10.2095170Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2024-06-26T05:43:10.2096460Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2024-06-26T05:43:10.2098030Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2024-06-26T05:43:10.2099350Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2100450Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2024-06-26T05:43:10.2101020Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2024-06-26T05:43:10.2102610Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2024-06-26T05:43:10.2103470Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2024-06-26T05:43:10.2104750Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2024-06-26T05:43:10.2105900Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2024-06-26T05:43:10.2107320Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2024-06-26T05:43:10.2108310Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2109560Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2024-06-26T05:43:10.2110410Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2024-06-26T05:43:10.2111740Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2024-06-26T05:43:10.2113070Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2024-06-26T05:43:10.2114480Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2115090Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2024-06-26T05:43:10.2116500Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2024-06-26T05:43:10.2117690Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2024-06-26T05:43:10.2118810Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2024-06-26T05:43:10.2119710Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2024-06-26T05:43:10.2121030Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2121610Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2024-06-26T05:43:10.2122980Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2024-06-26T05:43:10.2124130Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2024-06-26T05:43:10.2125390Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2125800Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2024-06-26T05:43:10.2127190Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2024-06-26T05:43:10.2128350Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2024-06-26T05:43:10.2129200Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2024-06-26T05:43:10.2130720Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2131140Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2024-06-26T05:43:10.2132360Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2024-06-26T05:43:10.2133570Z adding 'torch/include/ATen/ops/cummax.h' 2024-06-26T05:43:10.2134590Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2135810Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2136340Z adding 'torch/include/ATen/ops/cummax_native.h' 2024-06-26T05:43:10.2137950Z adding 'torch/include/ATen/ops/cummax_ops.h' 2024-06-26T05:43:10.2138850Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2024-06-26T05:43:10.2140340Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2140680Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2024-06-26T05:43:10.2142160Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2024-06-26T05:43:10.2143040Z adding 'torch/include/ATen/ops/cummin.h' 2024-06-26T05:43:10.2144430Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2145090Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2146380Z adding 'torch/include/ATen/ops/cummin_native.h' 2024-06-26T05:43:10.2147600Z adding 'torch/include/ATen/ops/cummin_ops.h' 2024-06-26T05:43:10.2148780Z adding 'torch/include/ATen/ops/cumprod.h' 2024-06-26T05:43:10.2149660Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2024-06-26T05:43:10.2151070Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2151530Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2024-06-26T05:43:10.2152950Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2024-06-26T05:43:10.2153860Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2155220Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2155750Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2024-06-26T05:43:10.2157160Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2024-06-26T05:43:10.2158030Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2024-06-26T05:43:10.2159240Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2024-06-26T05:43:10.2159890Z adding 'torch/include/ATen/ops/cumprod_mps_dispatch.h' 2024-06-26T05:43:10.2161210Z adding 'torch/include/ATen/ops/cumprod_native.h' 2024-06-26T05:43:10.2162380Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2024-06-26T05:43:10.2163620Z adding 'torch/include/ATen/ops/cumsum.h' 2024-06-26T05:43:10.2164660Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2165850Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2166390Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2024-06-26T05:43:10.2167770Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2024-06-26T05:43:10.2168610Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2024-06-26T05:43:10.2169790Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2024-06-26T05:43:10.2170660Z adding 'torch/include/ATen/ops/cumsum_mps_dispatch.h' 2024-06-26T05:43:10.2171840Z adding 'torch/include/ATen/ops/cumsum_native.h' 2024-06-26T05:43:10.2173100Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2024-06-26T05:43:10.2174310Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2024-06-26T05:43:10.2175330Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2176400Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2024-06-26T05:43:10.2177250Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2024-06-26T05:43:10.2178430Z adding 'torch/include/ATen/ops/data.h' 2024-06-26T05:43:10.2179390Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2180440Z adding 'torch/include/ATen/ops/data_native.h' 2024-06-26T05:43:10.2181280Z adding 'torch/include/ATen/ops/data_ops.h' 2024-06-26T05:43:10.2182570Z adding 'torch/include/ATen/ops/deg2rad.h' 2024-06-26T05:43:10.2183690Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2184870Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2024-06-26T05:43:10.2185370Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2024-06-26T05:43:10.2186720Z adding 'torch/include/ATen/ops/dense_dim.h' 2024-06-26T05:43:10.2187720Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2188770Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2024-06-26T05:43:10.2189720Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2024-06-26T05:43:10.2190940Z adding 'torch/include/ATen/ops/dequantize.h' 2024-06-26T05:43:10.2191930Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2193120Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2024-06-26T05:43:10.2193760Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2024-06-26T05:43:10.2195100Z adding 'torch/include/ATen/ops/dequantize_native.h' 2024-06-26T05:43:10.2196260Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2024-06-26T05:43:10.2197270Z adding 'torch/include/ATen/ops/det.h' 2024-06-26T05:43:10.2198230Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2199290Z adding 'torch/include/ATen/ops/det_native.h' 2024-06-26T05:43:10.2200120Z adding 'torch/include/ATen/ops/det_ops.h' 2024-06-26T05:43:10.2201370Z adding 'torch/include/ATen/ops/detach.h' 2024-06-26T05:43:10.2202340Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2203440Z adding 'torch/include/ATen/ops/detach_copy.h' 2024-06-26T05:43:10.2208060Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2208590Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2208760Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2024-06-26T05:43:10.2209560Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2024-06-26T05:43:10.2209770Z adding 'torch/include/ATen/ops/detach_native.h' 2024-06-26T05:43:10.2209900Z adding 'torch/include/ATen/ops/detach_ops.h' 2024-06-26T05:43:10.2211000Z adding 'torch/include/ATen/ops/diag.h' 2024-06-26T05:43:10.2211500Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2212590Z adding 'torch/include/ATen/ops/diag_embed.h' 2024-06-26T05:43:10.2213900Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2214590Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2215790Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2024-06-26T05:43:10.2216780Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2024-06-26T05:43:10.2217870Z adding 'torch/include/ATen/ops/diag_native.h' 2024-06-26T05:43:10.2218710Z adding 'torch/include/ATen/ops/diag_ops.h' 2024-06-26T05:43:10.2219960Z adding 'torch/include/ATen/ops/diagflat.h' 2024-06-26T05:43:10.2220940Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2221990Z adding 'torch/include/ATen/ops/diagflat_native.h' 2024-06-26T05:43:10.2222970Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2024-06-26T05:43:10.2224120Z adding 'torch/include/ATen/ops/diagonal.h' 2024-06-26T05:43:10.2225290Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2024-06-26T05:43:10.2226620Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2227150Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2024-06-26T05:43:10.2228640Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2024-06-26T05:43:10.2229600Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2230810Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2231380Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2024-06-26T05:43:10.2232930Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2233670Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2234880Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2024-06-26T05:43:10.2235740Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2024-06-26T05:43:10.2236990Z adding 'torch/include/ATen/ops/diagonal_native.h' 2024-06-26T05:43:10.2238000Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2024-06-26T05:43:10.2239210Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2024-06-26T05:43:10.2240340Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2241550Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2241920Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2024-06-26T05:43:10.2243400Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2024-06-26T05:43:10.2244240Z adding 'torch/include/ATen/ops/diff.h' 2024-06-26T05:43:10.2245650Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2246200Z adding 'torch/include/ATen/ops/diff_native.h' 2024-06-26T05:43:10.2247710Z adding 'torch/include/ATen/ops/diff_ops.h' 2024-06-26T05:43:10.2248710Z adding 'torch/include/ATen/ops/digamma.h' 2024-06-26T05:43:10.2250030Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2250430Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2024-06-26T05:43:10.2251780Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2024-06-26T05:43:10.2252600Z adding 'torch/include/ATen/ops/digamma_meta.h' 2024-06-26T05:43:10.2253830Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2024-06-26T05:43:10.2254380Z adding 'torch/include/ATen/ops/digamma_mps_dispatch.h' 2024-06-26T05:43:10.2255720Z adding 'torch/include/ATen/ops/digamma_native.h' 2024-06-26T05:43:10.2256840Z adding 'torch/include/ATen/ops/digamma_ops.h' 2024-06-26T05:43:10.2258000Z adding 'torch/include/ATen/ops/dist.h' 2024-06-26T05:43:10.2258770Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2259980Z adding 'torch/include/ATen/ops/dist_native.h' 2024-06-26T05:43:10.2260970Z adding 'torch/include/ATen/ops/dist_ops.h' 2024-06-26T05:43:10.2262290Z adding 'torch/include/ATen/ops/div.h' 2024-06-26T05:43:10.2263550Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2264770Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2265190Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2024-06-26T05:43:10.2266570Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2024-06-26T05:43:10.2267420Z adding 'torch/include/ATen/ops/div_meta.h' 2024-06-26T05:43:10.2268630Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2024-06-26T05:43:10.2269620Z adding 'torch/include/ATen/ops/div_mps_dispatch.h' 2024-06-26T05:43:10.2270840Z adding 'torch/include/ATen/ops/div_native.h' 2024-06-26T05:43:10.2272250Z adding 'torch/include/ATen/ops/div_ops.h' 2024-06-26T05:43:10.2273520Z adding 'torch/include/ATen/ops/divide.h' 2024-06-26T05:43:10.2274790Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2275850Z adding 'torch/include/ATen/ops/divide_native.h' 2024-06-26T05:43:10.2277110Z adding 'torch/include/ATen/ops/divide_ops.h' 2024-06-26T05:43:10.2278350Z adding 'torch/include/ATen/ops/dot.h' 2024-06-26T05:43:10.2279350Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2280440Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2024-06-26T05:43:10.2281090Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2024-06-26T05:43:10.2282340Z adding 'torch/include/ATen/ops/dot_mps_dispatch.h' 2024-06-26T05:43:10.2283330Z adding 'torch/include/ATen/ops/dot_native.h' 2024-06-26T05:43:10.2284470Z adding 'torch/include/ATen/ops/dot_ops.h' 2024-06-26T05:43:10.2285100Z adding 'torch/include/ATen/ops/dropout.h' 2024-06-26T05:43:10.2286620Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2287100Z adding 'torch/include/ATen/ops/dropout_native.h' 2024-06-26T05:43:10.2288580Z adding 'torch/include/ATen/ops/dropout_ops.h' 2024-06-26T05:43:10.2289230Z adding 'torch/include/ATen/ops/dsplit.h' 2024-06-26T05:43:10.2290760Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2291280Z adding 'torch/include/ATen/ops/dsplit_native.h' 2024-06-26T05:43:10.2292740Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2024-06-26T05:43:10.2293580Z adding 'torch/include/ATen/ops/dstack.h' 2024-06-26T05:43:10.2294950Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2295460Z adding 'torch/include/ATen/ops/dstack_native.h' 2024-06-26T05:43:10.2296950Z adding 'torch/include/ATen/ops/dstack_ops.h' 2024-06-26T05:43:10.2297790Z adding 'torch/include/ATen/ops/einsum.h' 2024-06-26T05:43:10.2299130Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2299960Z adding 'torch/include/ATen/ops/einsum_native.h' 2024-06-26T05:43:10.2301080Z adding 'torch/include/ATen/ops/einsum_ops.h' 2024-06-26T05:43:10.2301910Z adding 'torch/include/ATen/ops/elu.h' 2024-06-26T05:43:10.2303320Z adding 'torch/include/ATen/ops/elu_backward.h' 2024-06-26T05:43:10.2304510Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2305550Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2024-06-26T05:43:10.2306090Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2024-06-26T05:43:10.2307460Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2024-06-26T05:43:10.2308330Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2024-06-26T05:43:10.2309470Z adding 'torch/include/ATen/ops/elu_backward_mps_dispatch.h' 2024-06-26T05:43:10.2310310Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2024-06-26T05:43:10.2311680Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2024-06-26T05:43:10.2312670Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2313790Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2024-06-26T05:43:10.2314790Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2024-06-26T05:43:10.2315620Z adding 'torch/include/ATen/ops/elu_meta.h' 2024-06-26T05:43:10.2316800Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2024-06-26T05:43:10.2317800Z adding 'torch/include/ATen/ops/elu_mps_dispatch.h' 2024-06-26T05:43:10.2318440Z adding 'torch/include/ATen/ops/elu_native.h' 2024-06-26T05:43:10.2319900Z adding 'torch/include/ATen/ops/elu_ops.h' 2024-06-26T05:43:10.2321060Z adding 'torch/include/ATen/ops/embedding.h' 2024-06-26T05:43:10.2322350Z adding 'torch/include/ATen/ops/embedding_backward.h' 2024-06-26T05:43:10.2323380Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2324450Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2024-06-26T05:43:10.2325290Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2024-06-26T05:43:10.2326610Z adding 'torch/include/ATen/ops/embedding_bag.h' 2024-06-26T05:43:10.2328060Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2329110Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2024-06-26T05:43:10.2330190Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2024-06-26T05:43:10.2331540Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2332680Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2024-06-26T05:43:10.2334020Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2334580Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2024-06-26T05:43:10.2335970Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2024-06-26T05:43:10.2336610Z adding 'torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h' 2024-06-26T05:43:10.2337950Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2024-06-26T05:43:10.2339100Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2024-06-26T05:43:10.2340220Z adding 'torch/include/ATen/ops/embedding_native.h' 2024-06-26T05:43:10.2341060Z adding 'torch/include/ATen/ops/embedding_ops.h' 2024-06-26T05:43:10.2342320Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2024-06-26T05:43:10.2343330Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2344440Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2024-06-26T05:43:10.2345070Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2024-06-26T05:43:10.2346430Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2024-06-26T05:43:10.2347280Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2024-06-26T05:43:10.2348600Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2024-06-26T05:43:10.2349460Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2024-06-26T05:43:10.2350860Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2351370Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2024-06-26T05:43:10.2352800Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2024-06-26T05:43:10.2354170Z adding 'torch/include/ATen/ops/empty.h' 2024-06-26T05:43:10.2355550Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2356270Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2357620Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2024-06-26T05:43:10.2358270Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2024-06-26T05:43:10.2359770Z adding 'torch/include/ATen/ops/empty_like.h' 2024-06-26T05:43:10.2360790Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2361960Z adding 'torch/include/ATen/ops/empty_like_native.h' 2024-06-26T05:43:10.2363000Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2024-06-26T05:43:10.2364170Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2024-06-26T05:43:10.2365030Z adding 'torch/include/ATen/ops/empty_mps_dispatch.h' 2024-06-26T05:43:10.2366330Z adding 'torch/include/ATen/ops/empty_native.h' 2024-06-26T05:43:10.2367510Z adding 'torch/include/ATen/ops/empty_ops.h' 2024-06-26T05:43:10.2369040Z adding 'torch/include/ATen/ops/empty_permuted.h' 2024-06-26T05:43:10.2370060Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2371230Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2024-06-26T05:43:10.2372400Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2024-06-26T05:43:10.2373550Z adding 'torch/include/ATen/ops/empty_quantized.h' 2024-06-26T05:43:10.2374960Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2375570Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2024-06-26T05:43:10.2376940Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2024-06-26T05:43:10.2378220Z adding 'torch/include/ATen/ops/empty_strided.h' 2024-06-26T05:43:10.2379360Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2379970Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2024-06-26T05:43:10.2384810Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2024-06-26T05:43:10.2385140Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2024-06-26T05:43:10.2385340Z adding 'torch/include/ATen/ops/empty_strided_mps_dispatch.h' 2024-06-26T05:43:10.2385500Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2024-06-26T05:43:10.2385650Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2024-06-26T05:43:10.2386130Z adding 'torch/include/ATen/ops/eq.h' 2024-06-26T05:43:10.2386810Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2387410Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2024-06-26T05:43:10.2388600Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2024-06-26T05:43:10.2389170Z adding 'torch/include/ATen/ops/eq_meta.h' 2024-06-26T05:43:10.2390400Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2024-06-26T05:43:10.2390960Z adding 'torch/include/ATen/ops/eq_mps_dispatch.h' 2024-06-26T05:43:10.2392170Z adding 'torch/include/ATen/ops/eq_native.h' 2024-06-26T05:43:10.2393330Z adding 'torch/include/ATen/ops/eq_ops.h' 2024-06-26T05:43:10.2394160Z adding 'torch/include/ATen/ops/equal.h' 2024-06-26T05:43:10.2395030Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2024-06-26T05:43:10.2395900Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2024-06-26T05:43:10.2396760Z adding 'torch/include/ATen/ops/equal_mps_dispatch.h' 2024-06-26T05:43:10.2397750Z adding 'torch/include/ATen/ops/equal_native.h' 2024-06-26T05:43:10.2398590Z adding 'torch/include/ATen/ops/equal_ops.h' 2024-06-26T05:43:10.2399730Z adding 'torch/include/ATen/ops/erf.h' 2024-06-26T05:43:10.2400460Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2401490Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2024-06-26T05:43:10.2402340Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2024-06-26T05:43:10.2402890Z adding 'torch/include/ATen/ops/erf_meta.h' 2024-06-26T05:43:10.2404060Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2024-06-26T05:43:10.2404630Z adding 'torch/include/ATen/ops/erf_mps_dispatch.h' 2024-06-26T05:43:10.2405830Z adding 'torch/include/ATen/ops/erf_native.h' 2024-06-26T05:43:10.2406640Z adding 'torch/include/ATen/ops/erf_ops.h' 2024-06-26T05:43:10.2407780Z adding 'torch/include/ATen/ops/erfc.h' 2024-06-26T05:43:10.2408580Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2409420Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2024-06-26T05:43:10.2410440Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2024-06-26T05:43:10.2410910Z adding 'torch/include/ATen/ops/erfc_meta.h' 2024-06-26T05:43:10.2412080Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2024-06-26T05:43:10.2412930Z adding 'torch/include/ATen/ops/erfc_native.h' 2024-06-26T05:43:10.2414070Z adding 'torch/include/ATen/ops/erfc_ops.h' 2024-06-26T05:43:10.2414560Z adding 'torch/include/ATen/ops/erfinv.h' 2024-06-26T05:43:10.2415910Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2416360Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2024-06-26T05:43:10.2417640Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2024-06-26T05:43:10.2418060Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2024-06-26T05:43:10.2419200Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2024-06-26T05:43:10.2419840Z adding 'torch/include/ATen/ops/erfinv_mps_dispatch.h' 2024-06-26T05:43:10.2420950Z adding 'torch/include/ATen/ops/erfinv_native.h' 2024-06-26T05:43:10.2421940Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2024-06-26T05:43:10.2422780Z adding 'torch/include/ATen/ops/exp.h' 2024-06-26T05:43:10.2423750Z adding 'torch/include/ATen/ops/exp2.h' 2024-06-26T05:43:10.2424770Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2425380Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2024-06-26T05:43:10.2426560Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2024-06-26T05:43:10.2427060Z adding 'torch/include/ATen/ops/exp2_meta.h' 2024-06-26T05:43:10.2428210Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2024-06-26T05:43:10.2428780Z adding 'torch/include/ATen/ops/exp2_mps_dispatch.h' 2024-06-26T05:43:10.2429900Z adding 'torch/include/ATen/ops/exp2_native.h' 2024-06-26T05:43:10.2430910Z adding 'torch/include/ATen/ops/exp2_ops.h' 2024-06-26T05:43:10.2431910Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2432470Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2024-06-26T05:43:10.2433640Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2024-06-26T05:43:10.2434100Z adding 'torch/include/ATen/ops/exp_meta.h' 2024-06-26T05:43:10.2435250Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2024-06-26T05:43:10.2435790Z adding 'torch/include/ATen/ops/exp_mps_dispatch.h' 2024-06-26T05:43:10.2436950Z adding 'torch/include/ATen/ops/exp_native.h' 2024-06-26T05:43:10.2437800Z adding 'torch/include/ATen/ops/exp_ops.h' 2024-06-26T05:43:10.2438970Z adding 'torch/include/ATen/ops/expand.h' 2024-06-26T05:43:10.2439470Z adding 'torch/include/ATen/ops/expand_as.h' 2024-06-26T05:43:10.2440760Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2441230Z adding 'torch/include/ATen/ops/expand_as_native.h' 2024-06-26T05:43:10.2442520Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2024-06-26T05:43:10.2443210Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2444420Z adding 'torch/include/ATen/ops/expand_copy.h' 2024-06-26T05:43:10.2445480Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2446210Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2447290Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2024-06-26T05:43:10.2448140Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2024-06-26T05:43:10.2449130Z adding 'torch/include/ATen/ops/expand_native.h' 2024-06-26T05:43:10.2449690Z adding 'torch/include/ATen/ops/expand_ops.h' 2024-06-26T05:43:10.2450890Z adding 'torch/include/ATen/ops/expm1.h' 2024-06-26T05:43:10.2451910Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2452400Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2024-06-26T05:43:10.2453630Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2024-06-26T05:43:10.2454100Z adding 'torch/include/ATen/ops/expm1_meta.h' 2024-06-26T05:43:10.2455270Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2024-06-26T05:43:10.2455870Z adding 'torch/include/ATen/ops/expm1_mps_dispatch.h' 2024-06-26T05:43:10.2457000Z adding 'torch/include/ATen/ops/expm1_native.h' 2024-06-26T05:43:10.2457990Z adding 'torch/include/ATen/ops/expm1_ops.h' 2024-06-26T05:43:10.2458830Z adding 'torch/include/ATen/ops/exponential.h' 2024-06-26T05:43:10.2460140Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2460590Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2024-06-26T05:43:10.2461690Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2024-06-26T05:43:10.2462270Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2024-06-26T05:43:10.2463340Z adding 'torch/include/ATen/ops/exponential_mps_dispatch.h' 2024-06-26T05:43:10.2464170Z adding 'torch/include/ATen/ops/exponential_native.h' 2024-06-26T05:43:10.2465330Z adding 'torch/include/ATen/ops/exponential_ops.h' 2024-06-26T05:43:10.2466630Z adding 'torch/include/ATen/ops/eye.h' 2024-06-26T05:43:10.2467890Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2468360Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2024-06-26T05:43:10.2469510Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2024-06-26T05:43:10.2470370Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2024-06-26T05:43:10.2471230Z adding 'torch/include/ATen/ops/eye_mps_dispatch.h' 2024-06-26T05:43:10.2472200Z adding 'torch/include/ATen/ops/eye_native.h' 2024-06-26T05:43:10.2473340Z adding 'torch/include/ATen/ops/eye_ops.h' 2024-06-26T05:43:10.2474270Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2024-06-26T05:43:10.2475450Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2024-06-26T05:43:10.2476140Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2024-06-26T05:43:10.2477590Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2477930Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2024-06-26T05:43:10.2479150Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2024-06-26T05:43:10.2479950Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2481090Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2024-06-26T05:43:10.2481650Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2024-06-26T05:43:10.2482790Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2024-06-26T05:43:10.2483950Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2024-06-26T05:43:10.2484620Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2485700Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2024-06-26T05:43:10.2486340Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2024-06-26T05:43:10.2487610Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2024-06-26T05:43:10.2488530Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2024-06-26T05:43:10.2489410Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2024-06-26T05:43:10.2490600Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2491100Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2024-06-26T05:43:10.2492180Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2024-06-26T05:43:10.2493420Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2493920Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2024-06-26T05:43:10.2495050Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2024-06-26T05:43:10.2495630Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2024-06-26T05:43:10.2496940Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2024-06-26T05:43:10.2497700Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2498840Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2024-06-26T05:43:10.2499500Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2024-06-26T05:43:10.2500700Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2024-06-26T05:43:10.2501420Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2502510Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2024-06-26T05:43:10.2503260Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2504150Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2024-06-26T05:43:10.2505300Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2024-06-26T05:43:10.2505740Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2024-06-26T05:43:10.2506970Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2024-06-26T05:43:10.2507800Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2024-06-26T05:43:10.2509120Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2509600Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2024-06-26T05:43:10.2510900Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2511380Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2024-06-26T05:43:10.2512680Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2024-06-26T05:43:10.2513220Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2024-06-26T05:43:10.2514430Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2024-06-26T05:43:10.2515280Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2024-06-26T05:43:10.2516290Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2516870Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2024-06-26T05:43:10.2518100Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2024-06-26T05:43:10.2518670Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2024-06-26T05:43:10.2519960Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2520440Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2024-06-26T05:43:10.2521600Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2024-06-26T05:43:10.2522240Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2024-06-26T05:43:10.2523630Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2524050Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2024-06-26T05:43:10.2525240Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2024-06-26T05:43:10.2526070Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2024-06-26T05:43:10.2527070Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2527690Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2024-06-26T05:43:10.2528910Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2024-06-26T05:43:10.2529490Z adding 'torch/include/ATen/ops/feature_dropout.h' 2024-06-26T05:43:10.2530890Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2534560Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2024-06-26T05:43:10.2534860Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2024-06-26T05:43:10.2534990Z adding 'torch/include/ATen/ops/fft_fft.h' 2024-06-26T05:43:10.2536320Z adding 'torch/include/ATen/ops/fft_fft2.h' 2024-06-26T05:43:10.2536640Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2536790Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2024-06-26T05:43:10.2537300Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2024-06-26T05:43:10.2538680Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2539180Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2024-06-26T05:43:10.2540440Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2024-06-26T05:43:10.2541290Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2024-06-26T05:43:10.2542590Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2543070Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2024-06-26T05:43:10.2544320Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2024-06-26T05:43:10.2545440Z adding 'torch/include/ATen/ops/fft_fftn.h' 2024-06-26T05:43:10.2546420Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2547470Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2024-06-26T05:43:10.2551480Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2024-06-26T05:43:10.2552330Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2024-06-26T05:43:10.2553330Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2553970Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2024-06-26T05:43:10.2555100Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2024-06-26T05:43:10.2556180Z adding 'torch/include/ATen/ops/fft_hfft.h' 2024-06-26T05:43:10.2557340Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2024-06-26T05:43:10.2558330Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2559370Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2024-06-26T05:43:10.2560350Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2024-06-26T05:43:10.2561470Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2561850Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2024-06-26T05:43:10.2563080Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2024-06-26T05:43:10.2564240Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2024-06-26T05:43:10.2565220Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2566270Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2024-06-26T05:43:10.2567250Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2024-06-26T05:43:10.2568220Z adding 'torch/include/ATen/ops/fft_ifft.h' 2024-06-26T05:43:10.2569370Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2024-06-26T05:43:10.2570340Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2571090Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2024-06-26T05:43:10.2572240Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2024-06-26T05:43:10.2573270Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2573910Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2024-06-26T05:43:10.2575100Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2024-06-26T05:43:10.2576340Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2024-06-26T05:43:10.2577390Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2577970Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2024-06-26T05:43:10.2579220Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2024-06-26T05:43:10.2580070Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2024-06-26T05:43:10.2581070Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2581660Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2024-06-26T05:43:10.2582840Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2024-06-26T05:43:10.2583900Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2024-06-26T05:43:10.2585050Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2024-06-26T05:43:10.2586040Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2586840Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2024-06-26T05:43:10.2587970Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2024-06-26T05:43:10.2589080Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2589470Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2024-06-26T05:43:10.2590780Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2024-06-26T05:43:10.2591990Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2024-06-26T05:43:10.2592970Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2593530Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2024-06-26T05:43:10.2594790Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2024-06-26T05:43:10.2595880Z adding 'torch/include/ATen/ops/fft_irfft.h' 2024-06-26T05:43:10.2597020Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2024-06-26T05:43:10.2598010Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2598870Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2024-06-26T05:43:10.2599880Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2024-06-26T05:43:10.2600990Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2601490Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2024-06-26T05:43:10.2602680Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2024-06-26T05:43:10.2603840Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2024-06-26T05:43:10.2604820Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2605570Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2024-06-26T05:43:10.2606740Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2024-06-26T05:43:10.2607910Z adding 'torch/include/ATen/ops/fft_rfft.h' 2024-06-26T05:43:10.2609050Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2024-06-26T05:43:10.2610030Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2610610Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2024-06-26T05:43:10.2611860Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2024-06-26T05:43:10.2612970Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2613440Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2024-06-26T05:43:10.2614650Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2024-06-26T05:43:10.2615500Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2024-06-26T05:43:10.2616810Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2617210Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2024-06-26T05:43:10.2618470Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2024-06-26T05:43:10.2619610Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2024-06-26T05:43:10.2620610Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2621240Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2024-06-26T05:43:10.2622460Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2024-06-26T05:43:10.2623390Z adding 'torch/include/ATen/ops/fill.h' 2024-06-26T05:43:10.2624660Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2625000Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2024-06-26T05:43:10.2626150Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2024-06-26T05:43:10.2626990Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2024-06-26T05:43:10.2627990Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2628520Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2024-06-26T05:43:10.2629750Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2024-06-26T05:43:10.2630320Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2024-06-26T05:43:10.2631410Z adding 'torch/include/ATen/ops/fill_mps_dispatch.h' 2024-06-26T05:43:10.2632380Z adding 'torch/include/ATen/ops/fill_native.h' 2024-06-26T05:43:10.2633520Z adding 'torch/include/ATen/ops/fill_ops.h' 2024-06-26T05:43:10.2634340Z adding 'torch/include/ATen/ops/fix.h' 2024-06-26T05:43:10.2635300Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2636350Z adding 'torch/include/ATen/ops/fix_native.h' 2024-06-26T05:43:10.2637170Z adding 'torch/include/ATen/ops/fix_ops.h' 2024-06-26T05:43:10.2638310Z adding 'torch/include/ATen/ops/flatten.h' 2024-06-26T05:43:10.2638990Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2640060Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2024-06-26T05:43:10.2641080Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2641630Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2024-06-26T05:43:10.2642860Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2024-06-26T05:43:10.2643450Z adding 'torch/include/ATen/ops/flatten_native.h' 2024-06-26T05:43:10.2644750Z adding 'torch/include/ATen/ops/flatten_ops.h' 2024-06-26T05:43:10.2645580Z adding 'torch/include/ATen/ops/flip.h' 2024-06-26T05:43:10.2646850Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2647220Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2024-06-26T05:43:10.2648310Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2024-06-26T05:43:10.2648920Z adding 'torch/include/ATen/ops/flip_mps_dispatch.h' 2024-06-26T05:43:10.2649870Z adding 'torch/include/ATen/ops/flip_native.h' 2024-06-26T05:43:10.2651010Z adding 'torch/include/ATen/ops/flip_ops.h' 2024-06-26T05:43:10.2651840Z adding 'torch/include/ATen/ops/fliplr.h' 2024-06-26T05:43:10.2652850Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2653370Z adding 'torch/include/ATen/ops/fliplr_native.h' 2024-06-26T05:43:10.2654610Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2024-06-26T05:43:10.2655090Z adding 'torch/include/ATen/ops/flipud.h' 2024-06-26T05:43:10.2656380Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2656840Z adding 'torch/include/ATen/ops/flipud_native.h' 2024-06-26T05:43:10.2657980Z adding 'torch/include/ATen/ops/flipud_ops.h' 2024-06-26T05:43:10.2659130Z adding 'torch/include/ATen/ops/float_power.h' 2024-06-26T05:43:10.2659870Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2660770Z adding 'torch/include/ATen/ops/float_power_native.h' 2024-06-26T05:43:10.2662110Z adding 'torch/include/ATen/ops/float_power_ops.h' 2024-06-26T05:43:10.2663070Z adding 'torch/include/ATen/ops/floor.h' 2024-06-26T05:43:10.2663920Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2664960Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2024-06-26T05:43:10.2665450Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2024-06-26T05:43:10.2666730Z adding 'torch/include/ATen/ops/floor_divide.h' 2024-06-26T05:43:10.2667680Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2668310Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2024-06-26T05:43:10.2669520Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2024-06-26T05:43:10.2670050Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2024-06-26T05:43:10.2671160Z adding 'torch/include/ATen/ops/floor_divide_mps_dispatch.h' 2024-06-26T05:43:10.2671990Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2024-06-26T05:43:10.2673200Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2024-06-26T05:43:10.2674030Z adding 'torch/include/ATen/ops/floor_meta.h' 2024-06-26T05:43:10.2674910Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2024-06-26T05:43:10.2675760Z adding 'torch/include/ATen/ops/floor_mps_dispatch.h' 2024-06-26T05:43:10.2676890Z adding 'torch/include/ATen/ops/floor_native.h' 2024-06-26T05:43:10.2677740Z adding 'torch/include/ATen/ops/floor_ops.h' 2024-06-26T05:43:10.2678860Z adding 'torch/include/ATen/ops/fmax.h' 2024-06-26T05:43:10.2679520Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2680550Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2024-06-26T05:43:10.2681240Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2024-06-26T05:43:10.2682370Z adding 'torch/include/ATen/ops/fmax_meta.h' 2024-06-26T05:43:10.2682870Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2024-06-26T05:43:10.2683950Z adding 'torch/include/ATen/ops/fmax_mps_dispatch.h' 2024-06-26T05:43:10.2684920Z adding 'torch/include/ATen/ops/fmax_native.h' 2024-06-26T05:43:10.2685530Z adding 'torch/include/ATen/ops/fmax_ops.h' 2024-06-26T05:43:10.2686590Z adding 'torch/include/ATen/ops/fmin.h' 2024-06-26T05:43:10.2687590Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2688300Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2024-06-26T05:43:10.2689150Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2024-06-26T05:43:10.2690290Z adding 'torch/include/ATen/ops/fmin_meta.h' 2024-06-26T05:43:10.2690720Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2024-06-26T05:43:10.2695410Z adding 'torch/include/ATen/ops/fmin_mps_dispatch.h' 2024-06-26T05:43:10.2695730Z adding 'torch/include/ATen/ops/fmin_native.h' 2024-06-26T05:43:10.2697310Z adding 'torch/include/ATen/ops/fmin_ops.h' 2024-06-26T05:43:10.2697680Z adding 'torch/include/ATen/ops/fmod.h' 2024-06-26T05:43:10.2698360Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2698710Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2698910Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2024-06-26T05:43:10.2699070Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2024-06-26T05:43:10.2699190Z adding 'torch/include/ATen/ops/fmod_meta.h' 2024-06-26T05:43:10.2699710Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2024-06-26T05:43:10.2700720Z adding 'torch/include/ATen/ops/fmod_mps_dispatch.h' 2024-06-26T05:43:10.2701560Z adding 'torch/include/ATen/ops/fmod_native.h' 2024-06-26T05:43:10.2702720Z adding 'torch/include/ATen/ops/fmod_ops.h' 2024-06-26T05:43:10.2703550Z adding 'torch/include/ATen/ops/frac.h' 2024-06-26T05:43:10.2704880Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2705190Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2024-06-26T05:43:10.2706290Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2024-06-26T05:43:10.2707110Z adding 'torch/include/ATen/ops/frac_meta.h' 2024-06-26T05:43:10.2708000Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2024-06-26T05:43:10.2708850Z adding 'torch/include/ATen/ops/frac_mps_dispatch.h' 2024-06-26T05:43:10.2709830Z adding 'torch/include/ATen/ops/frac_native.h' 2024-06-26T05:43:10.2710700Z adding 'torch/include/ATen/ops/frac_ops.h' 2024-06-26T05:43:10.2711870Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2024-06-26T05:43:10.2712770Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2024-06-26T05:43:10.2713840Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2714500Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.2715670Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.2716240Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2024-06-26T05:43:10.2717270Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2024-06-26T05:43:10.2718400Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2024-06-26T05:43:10.2719060Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2024-06-26T05:43:10.2720470Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2720910Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2024-06-26T05:43:10.2722210Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2024-06-26T05:43:10.2722650Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2024-06-26T05:43:10.2723840Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2024-06-26T05:43:10.2724450Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2024-06-26T05:43:10.2725740Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2024-06-26T05:43:10.2726590Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2024-06-26T05:43:10.2727790Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2024-06-26T05:43:10.2728480Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.2729460Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.2730380Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2024-06-26T05:43:10.2731530Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2024-06-26T05:43:10.2732350Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2733500Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2024-06-26T05:43:10.2733980Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2024-06-26T05:43:10.2735790Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2024-06-26T05:43:10.2736680Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2024-06-26T05:43:10.2737510Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2024-06-26T05:43:10.2738700Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2024-06-26T05:43:10.2739500Z adding 'torch/include/ATen/ops/frexp.h' 2024-06-26T05:43:10.2740770Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2741140Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2024-06-26T05:43:10.2742300Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2024-06-26T05:43:10.2743140Z adding 'torch/include/ATen/ops/frexp_native.h' 2024-06-26T05:43:10.2744290Z adding 'torch/include/ATen/ops/frexp_ops.h' 2024-06-26T05:43:10.2744800Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2024-06-26T05:43:10.2746150Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2746630Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2024-06-26T05:43:10.2747900Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2024-06-26T05:43:10.2749150Z adding 'torch/include/ATen/ops/from_blob.h' 2024-06-26T05:43:10.2750300Z adding 'torch/include/ATen/ops/from_file.h' 2024-06-26T05:43:10.2751020Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2752160Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2024-06-26T05:43:10.2752790Z adding 'torch/include/ATen/ops/from_file_native.h' 2024-06-26T05:43:10.2754090Z adding 'torch/include/ATen/ops/from_file_ops.h' 2024-06-26T05:43:10.2755380Z adding 'torch/include/ATen/ops/full.h' 2024-06-26T05:43:10.2756660Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2757390Z adding 'torch/include/ATen/ops/full_like.h' 2024-06-26T05:43:10.2758670Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2759160Z adding 'torch/include/ATen/ops/full_like_native.h' 2024-06-26T05:43:10.2760480Z adding 'torch/include/ATen/ops/full_like_ops.h' 2024-06-26T05:43:10.2761470Z adding 'torch/include/ATen/ops/full_native.h' 2024-06-26T05:43:10.2762620Z adding 'torch/include/ATen/ops/full_ops.h' 2024-06-26T05:43:10.2763540Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2024-06-26T05:43:10.2764550Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2765230Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2024-06-26T05:43:10.2766490Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2024-06-26T05:43:10.2767250Z adding 'torch/include/ATen/ops/gather.h' 2024-06-26T05:43:10.2768420Z adding 'torch/include/ATen/ops/gather_backward.h' 2024-06-26T05:43:10.2769750Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2770270Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2024-06-26T05:43:10.2771510Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2024-06-26T05:43:10.2772530Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2773190Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2774340Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2024-06-26T05:43:10.2774860Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2024-06-26T05:43:10.2775980Z adding 'torch/include/ATen/ops/gather_meta.h' 2024-06-26T05:43:10.2777370Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2024-06-26T05:43:10.2779370Z adding 'torch/include/ATen/ops/gather_mps_dispatch.h' 2024-06-26T05:43:10.2780660Z adding 'torch/include/ATen/ops/gather_native.h' 2024-06-26T05:43:10.2781800Z adding 'torch/include/ATen/ops/gather_ops.h' 2024-06-26T05:43:10.2782940Z adding 'torch/include/ATen/ops/gcd.h' 2024-06-26T05:43:10.2784270Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2784770Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2024-06-26T05:43:10.2786250Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2024-06-26T05:43:10.2786820Z adding 'torch/include/ATen/ops/gcd_meta.h' 2024-06-26T05:43:10.2788230Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2024-06-26T05:43:10.2789200Z adding 'torch/include/ATen/ops/gcd_native.h' 2024-06-26T05:43:10.2790410Z adding 'torch/include/ATen/ops/gcd_ops.h' 2024-06-26T05:43:10.2791550Z adding 'torch/include/ATen/ops/ge.h' 2024-06-26T05:43:10.2793020Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2793420Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2024-06-26T05:43:10.2794810Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2024-06-26T05:43:10.2795660Z adding 'torch/include/ATen/ops/ge_meta.h' 2024-06-26T05:43:10.2796870Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2024-06-26T05:43:10.2797860Z adding 'torch/include/ATen/ops/ge_mps_dispatch.h' 2024-06-26T05:43:10.2798930Z adding 'torch/include/ATen/ops/ge_native.h' 2024-06-26T05:43:10.2800130Z adding 'torch/include/ATen/ops/ge_ops.h' 2024-06-26T05:43:10.2801380Z adding 'torch/include/ATen/ops/gelu.h' 2024-06-26T05:43:10.2802340Z adding 'torch/include/ATen/ops/gelu_backward.h' 2024-06-26T05:43:10.2803780Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2804270Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2024-06-26T05:43:10.2805640Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2024-06-26T05:43:10.2806470Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2024-06-26T05:43:10.2807680Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2024-06-26T05:43:10.2808270Z adding 'torch/include/ATen/ops/gelu_backward_mps_dispatch.h' 2024-06-26T05:43:10.2809640Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2024-06-26T05:43:10.2810810Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2024-06-26T05:43:10.2812140Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2812470Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2024-06-26T05:43:10.2813840Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2024-06-26T05:43:10.2814670Z adding 'torch/include/ATen/ops/gelu_meta.h' 2024-06-26T05:43:10.2815890Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2024-06-26T05:43:10.2816750Z adding 'torch/include/ATen/ops/gelu_mps_dispatch.h' 2024-06-26T05:43:10.2817910Z adding 'torch/include/ATen/ops/gelu_native.h' 2024-06-26T05:43:10.2819050Z adding 'torch/include/ATen/ops/gelu_ops.h' 2024-06-26T05:43:10.2820200Z adding 'torch/include/ATen/ops/geometric.h' 2024-06-26T05:43:10.2821190Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2822310Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2024-06-26T05:43:10.2822930Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2024-06-26T05:43:10.2824280Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2024-06-26T05:43:10.2825130Z adding 'torch/include/ATen/ops/geometric_native.h' 2024-06-26T05:43:10.2826480Z adding 'torch/include/ATen/ops/geometric_ops.h' 2024-06-26T05:43:10.2827320Z adding 'torch/include/ATen/ops/geqrf.h' 2024-06-26T05:43:10.2828600Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2024-06-26T05:43:10.2829600Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2024-06-26T05:43:10.2830440Z adding 'torch/include/ATen/ops/geqrf_native.h' 2024-06-26T05:43:10.2831590Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2024-06-26T05:43:10.2832740Z adding 'torch/include/ATen/ops/ger.h' 2024-06-26T05:43:10.2833720Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2834790Z adding 'torch/include/ATen/ops/ger_native.h' 2024-06-26T05:43:10.2835920Z adding 'torch/include/ATen/ops/ger_ops.h' 2024-06-26T05:43:10.2837050Z adding 'torch/include/ATen/ops/glu.h' 2024-06-26T05:43:10.2837900Z adding 'torch/include/ATen/ops/glu_backward.h' 2024-06-26T05:43:10.2839190Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2024-06-26T05:43:10.2839830Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2024-06-26T05:43:10.2841260Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2024-06-26T05:43:10.2842400Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2843480Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2024-06-26T05:43:10.2844000Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2024-06-26T05:43:10.2845340Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2024-06-26T05:43:10.2846500Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2024-06-26T05:43:10.2847690Z adding 'torch/include/ATen/ops/glu_backward_mps_dispatch.h' 2024-06-26T05:43:10.2848150Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2024-06-26T05:43:10.2849630Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2024-06-26T05:43:10.2850790Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2851800Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2024-06-26T05:43:10.2852310Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2024-06-26T05:43:10.2853700Z adding 'torch/include/ATen/ops/glu_jvp.h' 2024-06-26T05:43:10.2854710Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2855830Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2024-06-26T05:43:10.2856690Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2024-06-26T05:43:10.2861190Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2024-06-26T05:43:10.2861500Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2024-06-26T05:43:10.2861630Z adding 'torch/include/ATen/ops/glu_meta.h' 2024-06-26T05:43:10.2861780Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2024-06-26T05:43:10.2861930Z adding 'torch/include/ATen/ops/glu_mps_dispatch.h' 2024-06-26T05:43:10.2862480Z adding 'torch/include/ATen/ops/glu_native.h' 2024-06-26T05:43:10.2864000Z adding 'torch/include/ATen/ops/glu_ops.h' 2024-06-26T05:43:10.2865150Z adding 'torch/include/ATen/ops/gradient.h' 2024-06-26T05:43:10.2866450Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2867010Z adding 'torch/include/ATen/ops/gradient_native.h' 2024-06-26T05:43:10.2868770Z adding 'torch/include/ATen/ops/gradient_ops.h' 2024-06-26T05:43:10.2869610Z adding 'torch/include/ATen/ops/greater.h' 2024-06-26T05:43:10.2871100Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2871830Z adding 'torch/include/ATen/ops/greater_equal.h' 2024-06-26T05:43:10.2873290Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2873810Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2024-06-26T05:43:10.2875460Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2024-06-26T05:43:10.2876300Z adding 'torch/include/ATen/ops/greater_native.h' 2024-06-26T05:43:10.2877730Z adding 'torch/include/ATen/ops/greater_ops.h' 2024-06-26T05:43:10.2878880Z adding 'torch/include/ATen/ops/grid_sampler.h' 2024-06-26T05:43:10.2880050Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2024-06-26T05:43:10.2881080Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2024-06-26T05:43:10.2882400Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2882970Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.2884330Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.2885210Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2024-06-26T05:43:10.2886650Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2024-06-26T05:43:10.2887350Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2888630Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2024-06-26T05:43:10.2889250Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2024-06-26T05:43:10.2890600Z adding 'torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h' 2024-06-26T05:43:10.2891450Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2024-06-26T05:43:10.2892760Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2024-06-26T05:43:10.2893600Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2024-06-26T05:43:10.2895000Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2024-06-26T05:43:10.2896010Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2897220Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.2897840Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.2899240Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2024-06-26T05:43:10.2900390Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2024-06-26T05:43:10.2901650Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2902090Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2024-06-26T05:43:10.2903450Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2024-06-26T05:43:10.2904310Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2024-06-26T05:43:10.2905590Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2024-06-26T05:43:10.2906570Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2907630Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2024-06-26T05:43:10.2908490Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2024-06-26T05:43:10.2909730Z adding 'torch/include/ATen/ops/group_norm.h' 2024-06-26T05:43:10.2910720Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2911800Z adding 'torch/include/ATen/ops/group_norm_native.h' 2024-06-26T05:43:10.2912790Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2024-06-26T05:43:10.2913950Z adding 'torch/include/ATen/ops/gru.h' 2024-06-26T05:43:10.2914780Z adding 'torch/include/ATen/ops/gru_cell.h' 2024-06-26T05:43:10.2916190Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2916700Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2024-06-26T05:43:10.2918180Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2024-06-26T05:43:10.2919150Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.2920270Z adding 'torch/include/ATen/ops/gru_native.h' 2024-06-26T05:43:10.2921420Z adding 'torch/include/ATen/ops/gru_ops.h' 2024-06-26T05:43:10.2922550Z adding 'torch/include/ATen/ops/gt.h' 2024-06-26T05:43:10.2923560Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2924690Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2024-06-26T05:43:10.2925690Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2024-06-26T05:43:10.2926700Z adding 'torch/include/ATen/ops/gt_meta.h' 2024-06-26T05:43:10.2927740Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2024-06-26T05:43:10.2928730Z adding 'torch/include/ATen/ops/gt_mps_dispatch.h' 2024-06-26T05:43:10.2929720Z adding 'torch/include/ATen/ops/gt_native.h' 2024-06-26T05:43:10.2931090Z adding 'torch/include/ATen/ops/gt_ops.h' 2024-06-26T05:43:10.2932390Z adding 'torch/include/ATen/ops/hamming_window.h' 2024-06-26T05:43:10.2933850Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2934490Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2024-06-26T05:43:10.2936270Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2024-06-26T05:43:10.2937410Z adding 'torch/include/ATen/ops/hann_window.h' 2024-06-26T05:43:10.2938720Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2939270Z adding 'torch/include/ATen/ops/hann_window_native.h' 2024-06-26T05:43:10.2940880Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2024-06-26T05:43:10.2941880Z adding 'torch/include/ATen/ops/hardshrink.h' 2024-06-26T05:43:10.2942900Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2024-06-26T05:43:10.2944280Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2944930Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2024-06-26T05:43:10.2946120Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2024-06-26T05:43:10.2947470Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2024-06-26T05:43:10.2950560Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2024-06-26T05:43:10.2951180Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2024-06-26T05:43:10.2952440Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2024-06-26T05:43:10.2953460Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2953980Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2024-06-26T05:43:10.2955220Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2024-06-26T05:43:10.2955650Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2024-06-26T05:43:10.2956880Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2024-06-26T05:43:10.2957430Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2024-06-26T05:43:10.2958690Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2024-06-26T05:43:10.2959680Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2024-06-26T05:43:10.2960310Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2024-06-26T05:43:10.2961820Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2962170Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2024-06-26T05:43:10.2963290Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2024-06-26T05:43:10.2963850Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2024-06-26T05:43:10.2964860Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2024-06-26T05:43:10.2965710Z adding 'torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h' 2024-06-26T05:43:10.2966550Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2024-06-26T05:43:10.2967720Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2024-06-26T05:43:10.2968480Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.2969370Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2024-06-26T05:43:10.2970230Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2024-06-26T05:43:10.2971070Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2024-06-26T05:43:10.2972100Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2024-06-26T05:43:10.2972660Z adding 'torch/include/ATen/ops/hardsigmoid_mps_dispatch.h' 2024-06-26T05:43:10.2973770Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2024-06-26T05:43:10.2974620Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2024-06-26T05:43:10.2975660Z adding 'torch/include/ATen/ops/hardswish.h' 2024-06-26T05:43:10.2976530Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2024-06-26T05:43:10.2977540Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.2978620Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2024-06-26T05:43:10.2978990Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2024-06-26T05:43:10.2980130Z adding 'torch/include/ATen/ops/hardswish_backward_mps_dispatch.h' 2024-06-26T05:43:10.2980680Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2024-06-26T05:43:10.2981930Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2024-06-26T05:43:10.2982770Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2024-06-26T05:43:10.2983630Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2024-06-26T05:43:10.2984490Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2024-06-26T05:43:10.2985330Z adding 'torch/include/ATen/ops/hardswish_mps_dispatch.h' 2024-06-26T05:43:10.2986260Z adding 'torch/include/ATen/ops/hardswish_native.h' 2024-06-26T05:43:10.2987400Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2024-06-26T05:43:10.2988360Z adding 'torch/include/ATen/ops/hardtanh.h' 2024-06-26T05:43:10.2989210Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2024-06-26T05:43:10.2990260Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2024-06-26T05:43:10.2990850Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2024-06-26T05:43:10.2991940Z adding 'torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h' 2024-06-26T05:43:10.2992560Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2024-06-26T05:43:10.2993800Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2024-06-26T05:43:10.2994660Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2024-06-26T05:43:10.2995520Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2024-06-26T05:43:10.2996390Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2024-06-26T05:43:10.2997250Z adding 'torch/include/ATen/ops/hardtanh_mps_dispatch.h' 2024-06-26T05:43:10.2998140Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2024-06-26T05:43:10.2999260Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2024-06-26T05:43:10.3000110Z adding 'torch/include/ATen/ops/heaviside.h' 2024-06-26T05:43:10.3001150Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3001760Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2024-06-26T05:43:10.3002850Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2024-06-26T05:43:10.3003440Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2024-06-26T05:43:10.3004410Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2024-06-26T05:43:10.3005250Z adding 'torch/include/ATen/ops/heaviside_native.h' 2024-06-26T05:43:10.3006390Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2024-06-26T05:43:10.3007660Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2024-06-26T05:43:10.3008670Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3009200Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2024-06-26T05:43:10.3010450Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2024-06-26T05:43:10.3011240Z adding 'torch/include/ATen/ops/histc.h' 2024-06-26T05:43:10.3012110Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2024-06-26T05:43:10.3012970Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2024-06-26T05:43:10.3013830Z adding 'torch/include/ATen/ops/histc_mps_dispatch.h' 2024-06-26T05:43:10.3014840Z adding 'torch/include/ATen/ops/histc_native.h' 2024-06-26T05:43:10.3015680Z adding 'torch/include/ATen/ops/histc_ops.h' 2024-06-26T05:43:10.3016900Z adding 'torch/include/ATen/ops/histogram.h' 2024-06-26T05:43:10.3017850Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2024-06-26T05:43:10.3018710Z adding 'torch/include/ATen/ops/histogram_mps_dispatch.h' 2024-06-26T05:43:10.3019750Z adding 'torch/include/ATen/ops/histogram_native.h' 2024-06-26T05:43:10.3020910Z adding 'torch/include/ATen/ops/histogram_ops.h' 2024-06-26T05:43:10.3021760Z adding 'torch/include/ATen/ops/histogramdd.h' 2024-06-26T05:43:10.3023060Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3023500Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2024-06-26T05:43:10.3028300Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2024-06-26T05:43:10.3028610Z adding 'torch/include/ATen/ops/hsplit.h' 2024-06-26T05:43:10.3028880Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3029020Z adding 'torch/include/ATen/ops/hsplit_native.h' 2024-06-26T05:43:10.3029150Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2024-06-26T05:43:10.3029260Z adding 'torch/include/ATen/ops/hspmm.h' 2024-06-26T05:43:10.3029960Z adding 'torch/include/ATen/ops/hspmm_native.h' 2024-06-26T05:43:10.3031330Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2024-06-26T05:43:10.3031820Z adding 'torch/include/ATen/ops/hstack.h' 2024-06-26T05:43:10.3033130Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3033600Z adding 'torch/include/ATen/ops/hstack_native.h' 2024-06-26T05:43:10.3034820Z adding 'torch/include/ATen/ops/hstack_ops.h' 2024-06-26T05:43:10.3035660Z adding 'torch/include/ATen/ops/huber_loss.h' 2024-06-26T05:43:10.3036840Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2024-06-26T05:43:10.3037500Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3038600Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2024-06-26T05:43:10.3039200Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2024-06-26T05:43:10.3040300Z adding 'torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h' 2024-06-26T05:43:10.3040910Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2024-06-26T05:43:10.3042160Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2024-06-26T05:43:10.3043060Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2024-06-26T05:43:10.3043880Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2024-06-26T05:43:10.3044740Z adding 'torch/include/ATen/ops/huber_loss_mps_dispatch.h' 2024-06-26T05:43:10.3045640Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2024-06-26T05:43:10.3046680Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2024-06-26T05:43:10.3047670Z adding 'torch/include/ATen/ops/hypot.h' 2024-06-26T05:43:10.3048370Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3049470Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2024-06-26T05:43:10.3050390Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2024-06-26T05:43:10.3051220Z adding 'torch/include/ATen/ops/hypot_meta.h' 2024-06-26T05:43:10.3052140Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2024-06-26T05:43:10.3053020Z adding 'torch/include/ATen/ops/hypot_mps_dispatch.h' 2024-06-26T05:43:10.3053660Z adding 'torch/include/ATen/ops/hypot_native.h' 2024-06-26T05:43:10.3054910Z adding 'torch/include/ATen/ops/hypot_ops.h' 2024-06-26T05:43:10.3055730Z adding 'torch/include/ATen/ops/i0.h' 2024-06-26T05:43:10.3056740Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3057340Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2024-06-26T05:43:10.3058500Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2024-06-26T05:43:10.3059040Z adding 'torch/include/ATen/ops/i0_meta.h' 2024-06-26T05:43:10.3060210Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2024-06-26T05:43:10.3060740Z adding 'torch/include/ATen/ops/i0_native.h' 2024-06-26T05:43:10.3062010Z adding 'torch/include/ATen/ops/i0_ops.h' 2024-06-26T05:43:10.3062840Z adding 'torch/include/ATen/ops/igamma.h' 2024-06-26T05:43:10.3064120Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3064480Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2024-06-26T05:43:10.3065590Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2024-06-26T05:43:10.3066170Z adding 'torch/include/ATen/ops/igamma_meta.h' 2024-06-26T05:43:10.3067160Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2024-06-26T05:43:10.3068000Z adding 'torch/include/ATen/ops/igamma_native.h' 2024-06-26T05:43:10.3069190Z adding 'torch/include/ATen/ops/igamma_ops.h' 2024-06-26T05:43:10.3070060Z adding 'torch/include/ATen/ops/igammac.h' 2024-06-26T05:43:10.3071080Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3071620Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2024-06-26T05:43:10.3072820Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2024-06-26T05:43:10.3073330Z adding 'torch/include/ATen/ops/igammac_meta.h' 2024-06-26T05:43:10.3074530Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2024-06-26T05:43:10.3075050Z adding 'torch/include/ATen/ops/igammac_native.h' 2024-06-26T05:43:10.3076310Z adding 'torch/include/ATen/ops/igammac_ops.h' 2024-06-26T05:43:10.3077150Z adding 'torch/include/ATen/ops/im2col.h' 2024-06-26T05:43:10.3078360Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2024-06-26T05:43:10.3078780Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2024-06-26T05:43:10.3079940Z adding 'torch/include/ATen/ops/im2col_native.h' 2024-06-26T05:43:10.3081110Z adding 'torch/include/ATen/ops/im2col_ops.h' 2024-06-26T05:43:10.3081550Z adding 'torch/include/ATen/ops/imag.h' 2024-06-26T05:43:10.3082860Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3083590Z adding 'torch/include/ATen/ops/imag_native.h' 2024-06-26T05:43:10.3084740Z adding 'torch/include/ATen/ops/imag_ops.h' 2024-06-26T05:43:10.3085270Z adding 'torch/include/ATen/ops/index.h' 2024-06-26T05:43:10.3086610Z adding 'torch/include/ATen/ops/index_add.h' 2024-06-26T05:43:10.3087770Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3088260Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3089340Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2024-06-26T05:43:10.3089980Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2024-06-26T05:43:10.3091260Z adding 'torch/include/ATen/ops/index_add_meta.h' 2024-06-26T05:43:10.3091760Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2024-06-26T05:43:10.3092900Z adding 'torch/include/ATen/ops/index_add_mps_dispatch.h' 2024-06-26T05:43:10.3093730Z adding 'torch/include/ATen/ops/index_add_native.h' 2024-06-26T05:43:10.3094900Z adding 'torch/include/ATen/ops/index_add_ops.h' 2024-06-26T05:43:10.3095930Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3096620Z adding 'torch/include/ATen/ops/index_copy.h' 2024-06-26T05:43:10.3098000Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3098420Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3099530Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2024-06-26T05:43:10.3100130Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2024-06-26T05:43:10.3101400Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2024-06-26T05:43:10.3101950Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2024-06-26T05:43:10.3103100Z adding 'torch/include/ATen/ops/index_copy_native.h' 2024-06-26T05:43:10.3104260Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2024-06-26T05:43:10.3105260Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2024-06-26T05:43:10.3105730Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2024-06-26T05:43:10.3107030Z adding 'torch/include/ATen/ops/index_fill.h' 2024-06-26T05:43:10.3108030Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3108920Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3109700Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2024-06-26T05:43:10.3110570Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2024-06-26T05:43:10.3111440Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2024-06-26T05:43:10.3112290Z adding 'torch/include/ATen/ops/index_fill_mps_dispatch.h' 2024-06-26T05:43:10.3113160Z adding 'torch/include/ATen/ops/index_fill_native.h' 2024-06-26T05:43:10.3114670Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2024-06-26T05:43:10.3115700Z adding 'torch/include/ATen/ops/index_meta.h' 2024-06-26T05:43:10.3116570Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2024-06-26T05:43:10.3117430Z adding 'torch/include/ATen/ops/index_mps_dispatch.h' 2024-06-26T05:43:10.3118260Z adding 'torch/include/ATen/ops/index_native.h' 2024-06-26T05:43:10.3119420Z adding 'torch/include/ATen/ops/index_ops.h' 2024-06-26T05:43:10.3120250Z adding 'torch/include/ATen/ops/index_put.h' 2024-06-26T05:43:10.3121240Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3122290Z adding 'torch/include/ATen/ops/index_put_native.h' 2024-06-26T05:43:10.3123270Z adding 'torch/include/ATen/ops/index_put_ops.h' 2024-06-26T05:43:10.3124120Z adding 'torch/include/ATen/ops/index_reduce.h' 2024-06-26T05:43:10.3125180Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3126210Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2024-06-26T05:43:10.3126710Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2024-06-26T05:43:10.3127870Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2024-06-26T05:43:10.3128910Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2024-06-26T05:43:10.3129340Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2024-06-26T05:43:10.3130700Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2024-06-26T05:43:10.3131680Z adding 'torch/include/ATen/ops/index_select.h' 2024-06-26T05:43:10.3132610Z adding 'torch/include/ATen/ops/index_select_backward.h' 2024-06-26T05:43:10.3133870Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3134240Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2024-06-26T05:43:10.3135470Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2024-06-26T05:43:10.3136430Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3137050Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2024-06-26T05:43:10.3138260Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2024-06-26T05:43:10.3138740Z adding 'torch/include/ATen/ops/index_select_mps_dispatch.h' 2024-06-26T05:43:10.3139900Z adding 'torch/include/ATen/ops/index_select_native.h' 2024-06-26T05:43:10.3141060Z adding 'torch/include/ATen/ops/index_select_ops.h' 2024-06-26T05:43:10.3141530Z adding 'torch/include/ATen/ops/indices.h' 2024-06-26T05:43:10.3142840Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3143340Z adding 'torch/include/ATen/ops/indices_copy.h' 2024-06-26T05:43:10.3144730Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3145310Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3146300Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2024-06-26T05:43:10.3147150Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2024-06-26T05:43:10.3148140Z adding 'torch/include/ATen/ops/indices_native.h' 2024-06-26T05:43:10.3149120Z adding 'torch/include/ATen/ops/indices_ops.h' 2024-06-26T05:43:10.3149750Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2024-06-26T05:43:10.3151050Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3151530Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2024-06-26T05:43:10.3152700Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2024-06-26T05:43:10.3153190Z adding 'torch/include/ATen/ops/inner.h' 2024-06-26T05:43:10.3154560Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3154920Z adding 'torch/include/ATen/ops/inner_native.h' 2024-06-26T05:43:10.3156200Z adding 'torch/include/ATen/ops/inner_ops.h' 2024-06-26T05:43:10.3157040Z adding 'torch/include/ATen/ops/instance_norm.h' 2024-06-26T05:43:10.3158050Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3158690Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2024-06-26T05:43:10.3159960Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2024-06-26T05:43:10.3160790Z adding 'torch/include/ATen/ops/int_repr.h' 2024-06-26T05:43:10.3161760Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3162500Z adding 'torch/include/ATen/ops/int_repr_native.h' 2024-06-26T05:43:10.3163560Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2024-06-26T05:43:10.3164530Z adding 'torch/include/ATen/ops/inverse.h' 2024-06-26T05:43:10.3165200Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3166220Z adding 'torch/include/ATen/ops/inverse_native.h' 2024-06-26T05:43:10.3167200Z adding 'torch/include/ATen/ops/inverse_ops.h' 2024-06-26T05:43:10.3167740Z adding 'torch/include/ATen/ops/is_coalesced.h' 2024-06-26T05:43:10.3169010Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3169480Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2024-06-26T05:43:10.3170630Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2024-06-26T05:43:10.3171460Z adding 'torch/include/ATen/ops/is_complex.h' 2024-06-26T05:43:10.3172450Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3172940Z adding 'torch/include/ATen/ops/is_complex_native.h' 2024-06-26T05:43:10.3174230Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2024-06-26T05:43:10.3178310Z adding 'torch/include/ATen/ops/is_conj.h' 2024-06-26T05:43:10.3178730Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3178880Z adding 'torch/include/ATen/ops/is_conj_native.h' 2024-06-26T05:43:10.3179020Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2024-06-26T05:43:10.3179160Z adding 'torch/include/ATen/ops/is_distributed.h' 2024-06-26T05:43:10.3179450Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3180160Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2024-06-26T05:43:10.3181170Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2024-06-26T05:43:10.3181570Z adding 'torch/include/ATen/ops/is_floating_point.h' 2024-06-26T05:43:10.3182880Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3184010Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2024-06-26T05:43:10.3185130Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2024-06-26T05:43:10.3185730Z adding 'torch/include/ATen/ops/is_inference.h' 2024-06-26T05:43:10.3187150Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3187600Z adding 'torch/include/ATen/ops/is_inference_native.h' 2024-06-26T05:43:10.3188820Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2024-06-26T05:43:10.3189400Z adding 'torch/include/ATen/ops/is_leaf.h' 2024-06-26T05:43:10.3190710Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3191210Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2024-06-26T05:43:10.3192280Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2024-06-26T05:43:10.3193330Z adding 'torch/include/ATen/ops/is_neg.h' 2024-06-26T05:43:10.3194090Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3195080Z adding 'torch/include/ATen/ops/is_neg_native.h' 2024-06-26T05:43:10.3196070Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2024-06-26T05:43:10.3196590Z adding 'torch/include/ATen/ops/is_nonzero.h' 2024-06-26T05:43:10.3197890Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3198340Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2024-06-26T05:43:10.3199580Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2024-06-26T05:43:10.3200170Z adding 'torch/include/ATen/ops/is_pinned.h' 2024-06-26T05:43:10.3201420Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3201970Z adding 'torch/include/ATen/ops/is_pinned_cuda_dispatch.h' 2024-06-26T05:43:10.3203220Z adding 'torch/include/ATen/ops/is_pinned_mps_dispatch.h' 2024-06-26T05:43:10.3203660Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2024-06-26T05:43:10.3204880Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2024-06-26T05:43:10.3205890Z adding 'torch/include/ATen/ops/is_same_size.h' 2024-06-26T05:43:10.3206550Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3207600Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2024-06-26T05:43:10.3208460Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2024-06-26T05:43:10.3209430Z adding 'torch/include/ATen/ops/is_set_to.h' 2024-06-26T05:43:10.3209980Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2024-06-26T05:43:10.3211100Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2024-06-26T05:43:10.3211740Z adding 'torch/include/ATen/ops/is_set_to_mps_dispatch.h' 2024-06-26T05:43:10.3212770Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2024-06-26T05:43:10.3213760Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2024-06-26T05:43:10.3214310Z adding 'torch/include/ATen/ops/is_signed.h' 2024-06-26T05:43:10.3215620Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3216020Z adding 'torch/include/ATen/ops/is_signed_native.h' 2024-06-26T05:43:10.3217590Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2024-06-26T05:43:10.3218430Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2024-06-26T05:43:10.3219450Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3220010Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2024-06-26T05:43:10.3221220Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2024-06-26T05:43:10.3222020Z adding 'torch/include/ATen/ops/isclose.h' 2024-06-26T05:43:10.3223000Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3223740Z adding 'torch/include/ATen/ops/isclose_native.h' 2024-06-26T05:43:10.3224800Z adding 'torch/include/ATen/ops/isclose_ops.h' 2024-06-26T05:43:10.3225650Z adding 'torch/include/ATen/ops/isfinite.h' 2024-06-26T05:43:10.3226630Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3227170Z adding 'torch/include/ATen/ops/isfinite_native.h' 2024-06-26T05:43:10.3228390Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2024-06-26T05:43:10.3229420Z adding 'torch/include/ATen/ops/isin.h' 2024-06-26T05:43:10.3230450Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3231460Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2024-06-26T05:43:10.3232460Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2024-06-26T05:43:10.3232940Z adding 'torch/include/ATen/ops/isin_meta.h' 2024-06-26T05:43:10.3234160Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2024-06-26T05:43:10.3235020Z adding 'torch/include/ATen/ops/isin_mps_dispatch.h' 2024-06-26T05:43:10.3235990Z adding 'torch/include/ATen/ops/isin_native.h' 2024-06-26T05:43:10.3237160Z adding 'torch/include/ATen/ops/isin_ops.h' 2024-06-26T05:43:10.3238000Z adding 'torch/include/ATen/ops/isinf.h' 2024-06-26T05:43:10.3238970Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3240030Z adding 'torch/include/ATen/ops/isinf_native.h' 2024-06-26T05:43:10.3240570Z adding 'torch/include/ATen/ops/isinf_ops.h' 2024-06-26T05:43:10.3241730Z adding 'torch/include/ATen/ops/isnan.h' 2024-06-26T05:43:10.3242690Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3243460Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2024-06-26T05:43:10.3244370Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2024-06-26T05:43:10.3245170Z adding 'torch/include/ATen/ops/isnan_mps_dispatch.h' 2024-06-26T05:43:10.3246010Z adding 'torch/include/ATen/ops/isnan_native.h' 2024-06-26T05:43:10.3247170Z adding 'torch/include/ATen/ops/isnan_ops.h' 2024-06-26T05:43:10.3247670Z adding 'torch/include/ATen/ops/isneginf.h' 2024-06-26T05:43:10.3249060Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3249520Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2024-06-26T05:43:10.3250790Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2024-06-26T05:43:10.3251230Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2024-06-26T05:43:10.3252420Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2024-06-26T05:43:10.3253000Z adding 'torch/include/ATen/ops/isneginf_native.h' 2024-06-26T05:43:10.3254280Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2024-06-26T05:43:10.3254860Z adding 'torch/include/ATen/ops/isposinf.h' 2024-06-26T05:43:10.3256240Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3256660Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2024-06-26T05:43:10.3257750Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2024-06-26T05:43:10.3258340Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2024-06-26T05:43:10.3259620Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2024-06-26T05:43:10.3260060Z adding 'torch/include/ATen/ops/isposinf_native.h' 2024-06-26T05:43:10.3261290Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2024-06-26T05:43:10.3262160Z adding 'torch/include/ATen/ops/isreal.h' 2024-06-26T05:43:10.3263130Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3263690Z adding 'torch/include/ATen/ops/isreal_native.h' 2024-06-26T05:43:10.3264900Z adding 'torch/include/ATen/ops/isreal_ops.h' 2024-06-26T05:43:10.3265740Z adding 'torch/include/ATen/ops/istft.h' 2024-06-26T05:43:10.3267010Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3267370Z adding 'torch/include/ATen/ops/istft_native.h' 2024-06-26T05:43:10.3268620Z adding 'torch/include/ATen/ops/istft_ops.h' 2024-06-26T05:43:10.3269450Z adding 'torch/include/ATen/ops/item.h' 2024-06-26T05:43:10.3270410Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3270980Z adding 'torch/include/ATen/ops/item_native.h' 2024-06-26T05:43:10.3272170Z adding 'torch/include/ATen/ops/item_ops.h' 2024-06-26T05:43:10.3273350Z adding 'torch/include/ATen/ops/kaiser_window.h' 2024-06-26T05:43:10.3274520Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3275060Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2024-06-26T05:43:10.3276540Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2024-06-26T05:43:10.3277500Z adding 'torch/include/ATen/ops/kl_div.h' 2024-06-26T05:43:10.3278260Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3279250Z adding 'torch/include/ATen/ops/kl_div_native.h' 2024-06-26T05:43:10.3280230Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2024-06-26T05:43:10.3281060Z adding 'torch/include/ATen/ops/kron.h' 2024-06-26T05:43:10.3282020Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3282760Z adding 'torch/include/ATen/ops/kron_native.h' 2024-06-26T05:43:10.3284090Z adding 'torch/include/ATen/ops/kron_ops.h' 2024-06-26T05:43:10.3285230Z adding 'torch/include/ATen/ops/kthvalue.h' 2024-06-26T05:43:10.3286290Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3287140Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3288210Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2024-06-26T05:43:10.3288750Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2024-06-26T05:43:10.3289910Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2024-06-26T05:43:10.3291140Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2024-06-26T05:43:10.3291650Z adding 'torch/include/ATen/ops/l1_loss.h' 2024-06-26T05:43:10.3292990Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3293480Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2024-06-26T05:43:10.3294760Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2024-06-26T05:43:10.3295610Z adding 'torch/include/ATen/ops/layer_norm.h' 2024-06-26T05:43:10.3296910Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3297310Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2024-06-26T05:43:10.3298520Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2024-06-26T05:43:10.3299480Z adding 'torch/include/ATen/ops/lcm.h' 2024-06-26T05:43:10.3300270Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3301120Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2024-06-26T05:43:10.3301970Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2024-06-26T05:43:10.3302970Z adding 'torch/include/ATen/ops/lcm_meta.h' 2024-06-26T05:43:10.3303830Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2024-06-26T05:43:10.3304800Z adding 'torch/include/ATen/ops/lcm_native.h' 2024-06-26T05:43:10.3305640Z adding 'torch/include/ATen/ops/lcm_ops.h' 2024-06-26T05:43:10.3306770Z adding 'torch/include/ATen/ops/ldexp.h' 2024-06-26T05:43:10.3307430Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3308480Z adding 'torch/include/ATen/ops/ldexp_native.h' 2024-06-26T05:43:10.3309290Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2024-06-26T05:43:10.3310420Z adding 'torch/include/ATen/ops/le.h' 2024-06-26T05:43:10.3311430Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3312010Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2024-06-26T05:43:10.3313180Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2024-06-26T05:43:10.3313740Z adding 'torch/include/ATen/ops/le_meta.h' 2024-06-26T05:43:10.3314940Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2024-06-26T05:43:10.3315500Z adding 'torch/include/ATen/ops/le_mps_dispatch.h' 2024-06-26T05:43:10.3316700Z adding 'torch/include/ATen/ops/le_native.h' 2024-06-26T05:43:10.3317650Z adding 'torch/include/ATen/ops/le_ops.h' 2024-06-26T05:43:10.3318800Z adding 'torch/include/ATen/ops/leaky_relu.h' 2024-06-26T05:43:10.3319670Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2024-06-26T05:43:10.3320750Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3321400Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2024-06-26T05:43:10.3322600Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2024-06-26T05:43:10.3323130Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2024-06-26T05:43:10.3324290Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2024-06-26T05:43:10.3324880Z adding 'torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h' 2024-06-26T05:43:10.3325990Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2024-06-26T05:43:10.3330010Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2024-06-26T05:43:10.3330500Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3330720Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2024-06-26T05:43:10.3330910Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2024-06-26T05:43:10.3331050Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2024-06-26T05:43:10.3331300Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2024-06-26T05:43:10.3331850Z adding 'torch/include/ATen/ops/leaky_relu_mps_dispatch.h' 2024-06-26T05:43:10.3333000Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2024-06-26T05:43:10.3334190Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2024-06-26T05:43:10.3334760Z adding 'torch/include/ATen/ops/lerp.h' 2024-06-26T05:43:10.3336230Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3336560Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2024-06-26T05:43:10.3337750Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2024-06-26T05:43:10.3338580Z adding 'torch/include/ATen/ops/lerp_meta.h' 2024-06-26T05:43:10.3339460Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2024-06-26T05:43:10.3340450Z adding 'torch/include/ATen/ops/lerp_mps_dispatch.h' 2024-06-26T05:43:10.3341430Z adding 'torch/include/ATen/ops/lerp_native.h' 2024-06-26T05:43:10.3342580Z adding 'torch/include/ATen/ops/lerp_ops.h' 2024-06-26T05:43:10.3343400Z adding 'torch/include/ATen/ops/less.h' 2024-06-26T05:43:10.3344670Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3345120Z adding 'torch/include/ATen/ops/less_equal.h' 2024-06-26T05:43:10.3346440Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3346950Z adding 'torch/include/ATen/ops/less_equal_native.h' 2024-06-26T05:43:10.3348340Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2024-06-26T05:43:10.3349330Z adding 'torch/include/ATen/ops/less_native.h' 2024-06-26T05:43:10.3350470Z adding 'torch/include/ATen/ops/less_ops.h' 2024-06-26T05:43:10.3350960Z adding 'torch/include/ATen/ops/lgamma.h' 2024-06-26T05:43:10.3352350Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3352850Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2024-06-26T05:43:10.3354090Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2024-06-26T05:43:10.3354520Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2024-06-26T05:43:10.3355670Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2024-06-26T05:43:10.3356230Z adding 'torch/include/ATen/ops/lgamma_mps_dispatch.h' 2024-06-26T05:43:10.3357350Z adding 'torch/include/ATen/ops/lgamma_native.h' 2024-06-26T05:43:10.3358340Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2024-06-26T05:43:10.3359190Z adding 'torch/include/ATen/ops/lift.h' 2024-06-26T05:43:10.3360150Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3360890Z adding 'torch/include/ATen/ops/lift_fresh.h' 2024-06-26T05:43:10.3362180Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3362510Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2024-06-26T05:43:10.3363850Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3364510Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3365340Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2024-06-26T05:43:10.3366490Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2024-06-26T05:43:10.3367010Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2024-06-26T05:43:10.3368190Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2024-06-26T05:43:10.3368770Z adding 'torch/include/ATen/ops/lift_native.h' 2024-06-26T05:43:10.3369970Z adding 'torch/include/ATen/ops/lift_ops.h' 2024-06-26T05:43:10.3370830Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2024-06-26T05:43:10.3371970Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3372500Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2024-06-26T05:43:10.3373950Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3374380Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2024-06-26T05:43:10.3375510Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2024-06-26T05:43:10.3376090Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2024-06-26T05:43:10.3377420Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2024-06-26T05:43:10.3377840Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2024-06-26T05:43:10.3379100Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2024-06-26T05:43:10.3379700Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2024-06-26T05:43:10.3380960Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2024-06-26T05:43:10.3381800Z adding 'torch/include/ATen/ops/linalg_cond.h' 2024-06-26T05:43:10.3383100Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3383550Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2024-06-26T05:43:10.3384960Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2024-06-26T05:43:10.3385950Z adding 'torch/include/ATen/ops/linalg_cross.h' 2024-06-26T05:43:10.3386650Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3387670Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2024-06-26T05:43:10.3388250Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2024-06-26T05:43:10.3389320Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2024-06-26T05:43:10.3390220Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2024-06-26T05:43:10.3390810Z adding 'torch/include/ATen/ops/linalg_cross_mps_dispatch.h' 2024-06-26T05:43:10.3392020Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2024-06-26T05:43:10.3392640Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2024-06-26T05:43:10.3393900Z adding 'torch/include/ATen/ops/linalg_det.h' 2024-06-26T05:43:10.3394530Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3395580Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2024-06-26T05:43:10.3396400Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2024-06-26T05:43:10.3397390Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2024-06-26T05:43:10.3398400Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3398910Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2024-06-26T05:43:10.3400150Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2024-06-26T05:43:10.3400980Z adding 'torch/include/ATen/ops/linalg_eig.h' 2024-06-26T05:43:10.3401870Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2024-06-26T05:43:10.3402730Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2024-06-26T05:43:10.3403560Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2024-06-26T05:43:10.3404720Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2024-06-26T05:43:10.3405290Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2024-06-26T05:43:10.3406620Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3407110Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2024-06-26T05:43:10.3408390Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2024-06-26T05:43:10.3409380Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2024-06-26T05:43:10.3410060Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3411170Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2024-06-26T05:43:10.3411750Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2024-06-26T05:43:10.3412810Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2024-06-26T05:43:10.3413660Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2024-06-26T05:43:10.3414510Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2024-06-26T05:43:10.3415700Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3416180Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2024-06-26T05:43:10.3417470Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2024-06-26T05:43:10.3418360Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2024-06-26T05:43:10.3419280Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2024-06-26T05:43:10.3419950Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2024-06-26T05:43:10.3420870Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2024-06-26T05:43:10.3422020Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2024-06-26T05:43:10.3422560Z adding 'torch/include/ATen/ops/linalg_inv.h' 2024-06-26T05:43:10.3423880Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3424350Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2024-06-26T05:43:10.3425750Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3426230Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2024-06-26T05:43:10.3427490Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2024-06-26T05:43:10.3428620Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2024-06-26T05:43:10.3429190Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2024-06-26T05:43:10.3430360Z adding 'torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h' 2024-06-26T05:43:10.3430840Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2024-06-26T05:43:10.3432120Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2024-06-26T05:43:10.3432710Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2024-06-26T05:43:10.3433900Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2024-06-26T05:43:10.3434910Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2024-06-26T05:43:10.3436050Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3436590Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2024-06-26T05:43:10.3437870Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3438370Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2024-06-26T05:43:10.3439620Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2024-06-26T05:43:10.3440090Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2024-06-26T05:43:10.3441240Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2024-06-26T05:43:10.3441850Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2024-06-26T05:43:10.3443190Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2024-06-26T05:43:10.3443700Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2024-06-26T05:43:10.3444960Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2024-06-26T05:43:10.3445820Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2024-06-26T05:43:10.3447010Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3447480Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2024-06-26T05:43:10.3448750Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2024-06-26T05:43:10.3449140Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2024-06-26T05:43:10.3450330Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2024-06-26T05:43:10.3450920Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2024-06-26T05:43:10.3452180Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2024-06-26T05:43:10.3453020Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2024-06-26T05:43:10.3454320Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3454810Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2024-06-26T05:43:10.3455930Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2024-06-26T05:43:10.3456760Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2024-06-26T05:43:10.3457920Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2024-06-26T05:43:10.3458890Z adding 'torch/include/ATen/ops/linalg_lu.h' 2024-06-26T05:43:10.3459600Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3460660Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2024-06-26T05:43:10.3461210Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2024-06-26T05:43:10.3462360Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2024-06-26T05:43:10.3463510Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3463960Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2024-06-26T05:43:10.3465340Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3465830Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2024-06-26T05:43:10.3467100Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2024-06-26T05:43:10.3467560Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2024-06-26T05:43:10.3468710Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2024-06-26T05:43:10.3469330Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2024-06-26T05:43:10.3470600Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2024-06-26T05:43:10.3471480Z adding 'torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h' 2024-06-26T05:43:10.3472310Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2024-06-26T05:43:10.3473470Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2024-06-26T05:43:10.3473960Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2024-06-26T05:43:10.3475140Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2024-06-26T05:43:10.3475740Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2024-06-26T05:43:10.3476980Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2024-06-26T05:43:10.3481280Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2024-06-26T05:43:10.3481720Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3481910Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2024-06-26T05:43:10.3482110Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2024-06-26T05:43:10.3482270Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2024-06-26T05:43:10.3485020Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2024-06-26T05:43:10.3486450Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2024-06-26T05:43:10.3487590Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2024-06-26T05:43:10.3488420Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2024-06-26T05:43:10.3489760Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3490350Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2024-06-26T05:43:10.3491680Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2024-06-26T05:43:10.3492610Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2024-06-26T05:43:10.3493920Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3494470Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2024-06-26T05:43:10.3495750Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2024-06-26T05:43:10.3496350Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2024-06-26T05:43:10.3497650Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2024-06-26T05:43:10.3498800Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2024-06-26T05:43:10.3500130Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3500650Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2024-06-26T05:43:10.3502110Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2024-06-26T05:43:10.3502970Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2024-06-26T05:43:10.3504300Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3504840Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2024-06-26T05:43:10.3506150Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2024-06-26T05:43:10.3507540Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2024-06-26T05:43:10.3508700Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3509310Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2024-06-26T05:43:10.3510910Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2024-06-26T05:43:10.3512060Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2024-06-26T05:43:10.3512830Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3514000Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2024-06-26T05:43:10.3514860Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2024-06-26T05:43:10.3516100Z adding 'torch/include/ATen/ops/linalg_norm.h' 2024-06-26T05:43:10.3517280Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3518030Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2024-06-26T05:43:10.3519390Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2024-06-26T05:43:10.3520580Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2024-06-26T05:43:10.3521890Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3522540Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3523750Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3524490Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2024-06-26T05:43:10.3525970Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2024-06-26T05:43:10.3527040Z adding 'torch/include/ATen/ops/linalg_qr.h' 2024-06-26T05:43:10.3528060Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3529080Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2024-06-26T05:43:10.3529710Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2024-06-26T05:43:10.3530950Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2024-06-26T05:43:10.3531980Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2024-06-26T05:43:10.3532530Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2024-06-26T05:43:10.3533830Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2024-06-26T05:43:10.3534700Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2024-06-26T05:43:10.3535990Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3536540Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2024-06-26T05:43:10.3537860Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2024-06-26T05:43:10.3538700Z adding 'torch/include/ATen/ops/linalg_solve.h' 2024-06-26T05:43:10.3539940Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3540970Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2024-06-26T05:43:10.3542110Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3542570Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2024-06-26T05:43:10.3543880Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2024-06-26T05:43:10.3544740Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2024-06-26T05:43:10.3545910Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2024-06-26T05:43:10.3546790Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2024-06-26T05:43:10.3548020Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2024-06-26T05:43:10.3548650Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2024-06-26T05:43:10.3549910Z adding 'torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h' 2024-06-26T05:43:10.3550560Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2024-06-26T05:43:10.3551870Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2024-06-26T05:43:10.3552980Z adding 'torch/include/ATen/ops/linalg_svd.h' 2024-06-26T05:43:10.3554010Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3554590Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2024-06-26T05:43:10.3555920Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2024-06-26T05:43:10.3556920Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2024-06-26T05:43:10.3558050Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3558590Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2024-06-26T05:43:10.3559870Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2024-06-26T05:43:10.3560730Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2024-06-26T05:43:10.3561970Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3562520Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2024-06-26T05:43:10.3563830Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2024-06-26T05:43:10.3564710Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2024-06-26T05:43:10.3566030Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3566560Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2024-06-26T05:43:10.3567880Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2024-06-26T05:43:10.3569030Z adding 'torch/include/ATen/ops/linalg_vander.h' 2024-06-26T05:43:10.3569730Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3570820Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2024-06-26T05:43:10.3571660Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2024-06-26T05:43:10.3572800Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2024-06-26T05:43:10.3573780Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3574820Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2024-06-26T05:43:10.3575670Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2024-06-26T05:43:10.3576840Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2024-06-26T05:43:10.3577940Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3579000Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2024-06-26T05:43:10.3579520Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2024-06-26T05:43:10.3580720Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2024-06-26T05:43:10.3581630Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2024-06-26T05:43:10.3582780Z adding 'torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h' 2024-06-26T05:43:10.3583410Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2024-06-26T05:43:10.3584850Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2024-06-26T05:43:10.3585900Z adding 'torch/include/ATen/ops/linear.h' 2024-06-26T05:43:10.3586800Z adding 'torch/include/ATen/ops/linear_backward.h' 2024-06-26T05:43:10.3588100Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3588690Z adding 'torch/include/ATen/ops/linear_backward_mps_dispatch.h' 2024-06-26T05:43:10.3589900Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2024-06-26T05:43:10.3591080Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2024-06-26T05:43:10.3592050Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3592940Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3594000Z adding 'torch/include/ATen/ops/linear_mps_dispatch.h' 2024-06-26T05:43:10.3594840Z adding 'torch/include/ATen/ops/linear_native.h' 2024-06-26T05:43:10.3596000Z adding 'torch/include/ATen/ops/linear_ops.h' 2024-06-26T05:43:10.3597290Z adding 'torch/include/ATen/ops/linspace.h' 2024-06-26T05:43:10.3598590Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3599200Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2024-06-26T05:43:10.3600440Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2024-06-26T05:43:10.3601250Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2024-06-26T05:43:10.3602110Z adding 'torch/include/ATen/ops/linspace_mps_dispatch.h' 2024-06-26T05:43:10.3603250Z adding 'torch/include/ATen/ops/linspace_native.h' 2024-06-26T05:43:10.3604890Z adding 'torch/include/ATen/ops/linspace_ops.h' 2024-06-26T05:43:10.3605500Z adding 'torch/include/ATen/ops/log.h' 2024-06-26T05:43:10.3606580Z adding 'torch/include/ATen/ops/log10.h' 2024-06-26T05:43:10.3607750Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3608590Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2024-06-26T05:43:10.3609490Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2024-06-26T05:43:10.3610420Z adding 'torch/include/ATen/ops/log10_meta.h' 2024-06-26T05:43:10.3611370Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2024-06-26T05:43:10.3612290Z adding 'torch/include/ATen/ops/log10_mps_dispatch.h' 2024-06-26T05:43:10.3613210Z adding 'torch/include/ATen/ops/log10_native.h' 2024-06-26T05:43:10.3614290Z adding 'torch/include/ATen/ops/log10_ops.h' 2024-06-26T05:43:10.3615290Z adding 'torch/include/ATen/ops/log1p.h' 2024-06-26T05:43:10.3616440Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3617240Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2024-06-26T05:43:10.3618140Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2024-06-26T05:43:10.3619060Z adding 'torch/include/ATen/ops/log1p_meta.h' 2024-06-26T05:43:10.3620020Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2024-06-26T05:43:10.3620890Z adding 'torch/include/ATen/ops/log1p_mps_dispatch.h' 2024-06-26T05:43:10.3621840Z adding 'torch/include/ATen/ops/log1p_native.h' 2024-06-26T05:43:10.3622920Z adding 'torch/include/ATen/ops/log1p_ops.h' 2024-06-26T05:43:10.3623880Z adding 'torch/include/ATen/ops/log2.h' 2024-06-26T05:43:10.3625050Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3625840Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2024-06-26T05:43:10.3626770Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2024-06-26T05:43:10.3627680Z adding 'torch/include/ATen/ops/log2_meta.h' 2024-06-26T05:43:10.3628630Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2024-06-26T05:43:10.3629540Z adding 'torch/include/ATen/ops/log2_mps_dispatch.h' 2024-06-26T05:43:10.3630470Z adding 'torch/include/ATen/ops/log2_native.h' 2024-06-26T05:43:10.3631540Z adding 'torch/include/ATen/ops/log2_ops.h' 2024-06-26T05:43:10.3632680Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3633450Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2024-06-26T05:43:10.3634360Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2024-06-26T05:43:10.3635260Z adding 'torch/include/ATen/ops/log_meta.h' 2024-06-26T05:43:10.3636210Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2024-06-26T05:43:10.3637110Z adding 'torch/include/ATen/ops/log_mps_dispatch.h' 2024-06-26T05:43:10.3638040Z adding 'torch/include/ATen/ops/log_native.h' 2024-06-26T05:43:10.3639060Z adding 'torch/include/ATen/ops/log_normal.h' 2024-06-26T05:43:10.3640200Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3641080Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2024-06-26T05:43:10.3642030Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2024-06-26T05:43:10.3642950Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2024-06-26T05:43:10.3643900Z adding 'torch/include/ATen/ops/log_normal_native.h' 2024-06-26T05:43:10.3645040Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2024-06-26T05:43:10.3649810Z adding 'torch/include/ATen/ops/log_ops.h' 2024-06-26T05:43:10.3650090Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2024-06-26T05:43:10.3650300Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2024-06-26T05:43:10.3650520Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2024-06-26T05:43:10.3650750Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2024-06-26T05:43:10.3651010Z adding 'torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h' 2024-06-26T05:43:10.3651950Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2024-06-26T05:43:10.3652980Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2024-06-26T05:43:10.3654160Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3655090Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2024-06-26T05:43:10.3656110Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2024-06-26T05:43:10.3657420Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2024-06-26T05:43:10.3658340Z adding 'torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h' 2024-06-26T05:43:10.3659300Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2024-06-26T05:43:10.3660350Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2024-06-26T05:43:10.3661270Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2024-06-26T05:43:10.3662300Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2024-06-26T05:43:10.3663320Z adding 'torch/include/ATen/ops/log_softmax.h' 2024-06-26T05:43:10.3664450Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3665420Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3666270Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2024-06-26T05:43:10.3667500Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2024-06-26T05:43:10.3668340Z adding 'torch/include/ATen/ops/logaddexp.h' 2024-06-26T05:43:10.3669320Z adding 'torch/include/ATen/ops/logaddexp2.h' 2024-06-26T05:43:10.3670510Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3671310Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2024-06-26T05:43:10.3672230Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2024-06-26T05:43:10.3673140Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2024-06-26T05:43:10.3674120Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2024-06-26T05:43:10.3675010Z adding 'torch/include/ATen/ops/logaddexp2_mps_dispatch.h' 2024-06-26T05:43:10.3675950Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2024-06-26T05:43:10.3677010Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2024-06-26T05:43:10.3678170Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3678950Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2024-06-26T05:43:10.3679860Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2024-06-26T05:43:10.3680780Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2024-06-26T05:43:10.3681730Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2024-06-26T05:43:10.3682630Z adding 'torch/include/ATen/ops/logaddexp_mps_dispatch.h' 2024-06-26T05:43:10.3683550Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2024-06-26T05:43:10.3684700Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2024-06-26T05:43:10.3685750Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2024-06-26T05:43:10.3686890Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3687840Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3688670Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2024-06-26T05:43:10.3689790Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2024-06-26T05:43:10.3690720Z adding 'torch/include/ATen/ops/logdet.h' 2024-06-26T05:43:10.3691820Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3692640Z adding 'torch/include/ATen/ops/logdet_native.h' 2024-06-26T05:43:10.3693650Z adding 'torch/include/ATen/ops/logdet_ops.h' 2024-06-26T05:43:10.3694600Z adding 'torch/include/ATen/ops/logical_and.h' 2024-06-26T05:43:10.3695690Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3696550Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2024-06-26T05:43:10.3697460Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2024-06-26T05:43:10.3698360Z adding 'torch/include/ATen/ops/logical_and_mps_dispatch.h' 2024-06-26T05:43:10.3699270Z adding 'torch/include/ATen/ops/logical_and_native.h' 2024-06-26T05:43:10.3700350Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2024-06-26T05:43:10.3701320Z adding 'torch/include/ATen/ops/logical_not.h' 2024-06-26T05:43:10.3702400Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3703240Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2024-06-26T05:43:10.3704170Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2024-06-26T05:43:10.3705130Z adding 'torch/include/ATen/ops/logical_not_mps_dispatch.h' 2024-06-26T05:43:10.3706120Z adding 'torch/include/ATen/ops/logical_not_native.h' 2024-06-26T05:43:10.3707270Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2024-06-26T05:43:10.3708330Z adding 'torch/include/ATen/ops/logical_or.h' 2024-06-26T05:43:10.3709500Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3710360Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2024-06-26T05:43:10.3711330Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2024-06-26T05:43:10.3712270Z adding 'torch/include/ATen/ops/logical_or_mps_dispatch.h' 2024-06-26T05:43:10.3713290Z adding 'torch/include/ATen/ops/logical_or_native.h' 2024-06-26T05:43:10.3714420Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2024-06-26T05:43:10.3715470Z adding 'torch/include/ATen/ops/logical_xor.h' 2024-06-26T05:43:10.3716640Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3717540Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2024-06-26T05:43:10.3718510Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2024-06-26T05:43:10.3719470Z adding 'torch/include/ATen/ops/logical_xor_mps_dispatch.h' 2024-06-26T05:43:10.3720450Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2024-06-26T05:43:10.3721610Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2024-06-26T05:43:10.3722670Z adding 'torch/include/ATen/ops/logit.h' 2024-06-26T05:43:10.3723790Z adding 'torch/include/ATen/ops/logit_backward.h' 2024-06-26T05:43:10.3725070Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3725940Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2024-06-26T05:43:10.3727030Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2024-06-26T05:43:10.3728010Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2024-06-26T05:43:10.3729060Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2024-06-26T05:43:10.3730050Z adding 'torch/include/ATen/ops/logit_backward_mps_dispatch.h' 2024-06-26T05:43:10.3731050Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2024-06-26T05:43:10.3732190Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2024-06-26T05:43:10.3733240Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2024-06-26T05:43:10.3734240Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2024-06-26T05:43:10.3735260Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2024-06-26T05:43:10.3736280Z adding 'torch/include/ATen/ops/logit_mps_dispatch.h' 2024-06-26T05:43:10.3737280Z adding 'torch/include/ATen/ops/logit_native.h' 2024-06-26T05:43:10.3738440Z adding 'torch/include/ATen/ops/logit_ops.h' 2024-06-26T05:43:10.3739960Z adding 'torch/include/ATen/ops/logspace.h' 2024-06-26T05:43:10.3741360Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3742380Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2024-06-26T05:43:10.3743420Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2024-06-26T05:43:10.3744390Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2024-06-26T05:43:10.3745450Z adding 'torch/include/ATen/ops/logspace_native.h' 2024-06-26T05:43:10.3747050Z adding 'torch/include/ATen/ops/logspace_ops.h' 2024-06-26T05:43:10.3748210Z adding 'torch/include/ATen/ops/logsumexp.h' 2024-06-26T05:43:10.3749420Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3750520Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3751480Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3752430Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2024-06-26T05:43:10.3753660Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2024-06-26T05:43:10.3754940Z adding 'torch/include/ATen/ops/lshift.h' 2024-06-26T05:43:10.3755970Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3756830Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2024-06-26T05:43:10.3757760Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2024-06-26T05:43:10.3758720Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2024-06-26T05:43:10.3759660Z adding 'torch/include/ATen/ops/lshift_native.h' 2024-06-26T05:43:10.3760890Z adding 'torch/include/ATen/ops/lshift_ops.h' 2024-06-26T05:43:10.3761930Z adding 'torch/include/ATen/ops/lstm.h' 2024-06-26T05:43:10.3762940Z adding 'torch/include/ATen/ops/lstm_cell.h' 2024-06-26T05:43:10.3764110Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3764910Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2024-06-26T05:43:10.3765980Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2024-06-26T05:43:10.3767090Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3768160Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2024-06-26T05:43:10.3769380Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3770300Z adding 'torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h' 2024-06-26T05:43:10.3771300Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2024-06-26T05:43:10.3772530Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2024-06-26T05:43:10.3773480Z adding 'torch/include/ATen/ops/lstm_native.h' 2024-06-26T05:43:10.3774620Z adding 'torch/include/ATen/ops/lstm_ops.h' 2024-06-26T05:43:10.3775700Z adding 'torch/include/ATen/ops/lt.h' 2024-06-26T05:43:10.3776860Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3778440Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2024-06-26T05:43:10.3779440Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2024-06-26T05:43:10.3780380Z adding 'torch/include/ATen/ops/lt_meta.h' 2024-06-26T05:43:10.3781350Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2024-06-26T05:43:10.3782270Z adding 'torch/include/ATen/ops/lt_mps_dispatch.h' 2024-06-26T05:43:10.3783260Z adding 'torch/include/ATen/ops/lt_native.h' 2024-06-26T05:43:10.3784470Z adding 'torch/include/ATen/ops/lt_ops.h' 2024-06-26T05:43:10.3785500Z adding 'torch/include/ATen/ops/lu_solve.h' 2024-06-26T05:43:10.3786690Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3787510Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2024-06-26T05:43:10.3788550Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2024-06-26T05:43:10.3789580Z adding 'torch/include/ATen/ops/lu_unpack.h' 2024-06-26T05:43:10.3790770Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3791610Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2024-06-26T05:43:10.3792560Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2024-06-26T05:43:10.3793470Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2024-06-26T05:43:10.3794480Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2024-06-26T05:43:10.3795370Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2024-06-26T05:43:10.3796460Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2024-06-26T05:43:10.3797380Z adding 'torch/include/ATen/ops/mH.h' 2024-06-26T05:43:10.3798520Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3799330Z adding 'torch/include/ATen/ops/mH_native.h' 2024-06-26T05:43:10.3800310Z adding 'torch/include/ATen/ops/mH_ops.h' 2024-06-26T05:43:10.3801220Z adding 'torch/include/ATen/ops/mT.h' 2024-06-26T05:43:10.3802310Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3803100Z adding 'torch/include/ATen/ops/mT_native.h' 2024-06-26T05:43:10.3804080Z adding 'torch/include/ATen/ops/mT_ops.h' 2024-06-26T05:43:10.3805170Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2024-06-26T05:43:10.3806410Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3807290Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2024-06-26T05:43:10.3808400Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2024-06-26T05:43:10.3809510Z adding 'torch/include/ATen/ops/masked_fill.h' 2024-06-26T05:43:10.3810770Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3811850Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2024-06-26T05:43:10.3813360Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2024-06-26T05:43:10.3813590Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2024-06-26T05:43:10.3818410Z adding 'torch/include/ATen/ops/masked_fill_mps_dispatch.h' 2024-06-26T05:43:10.3818680Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2024-06-26T05:43:10.3818840Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2024-06-26T05:43:10.3818990Z adding 'torch/include/ATen/ops/masked_scatter.h' 2024-06-26T05:43:10.3819880Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2024-06-26T05:43:10.3821210Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3822070Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2024-06-26T05:43:10.3823120Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2024-06-26T05:43:10.3824260Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3825130Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2024-06-26T05:43:10.3826080Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2024-06-26T05:43:10.3826970Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2024-06-26T05:43:10.3827980Z adding 'torch/include/ATen/ops/masked_scatter_mps_dispatch.h' 2024-06-26T05:43:10.3829000Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2024-06-26T05:43:10.3829950Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2024-06-26T05:43:10.3830950Z adding 'torch/include/ATen/ops/masked_select.h' 2024-06-26T05:43:10.3831950Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2024-06-26T05:43:10.3833080Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3833880Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2024-06-26T05:43:10.3834890Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2024-06-26T05:43:10.3835850Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2024-06-26T05:43:10.3836870Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2024-06-26T05:43:10.3837800Z adding 'torch/include/ATen/ops/masked_select_mps_dispatch.h' 2024-06-26T05:43:10.3838740Z adding 'torch/include/ATen/ops/masked_select_native.h' 2024-06-26T05:43:10.3839840Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2024-06-26T05:43:10.3840820Z adding 'torch/include/ATen/ops/matmul.h' 2024-06-26T05:43:10.3841920Z adding 'torch/include/ATen/ops/matmul_backward.h' 2024-06-26T05:43:10.3843100Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3843910Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2024-06-26T05:43:10.3845030Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2024-06-26T05:43:10.3846120Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3846940Z adding 'torch/include/ATen/ops/matmul_native.h' 2024-06-26T05:43:10.3847990Z adding 'torch/include/ATen/ops/matmul_ops.h' 2024-06-26T05:43:10.3848920Z adding 'torch/include/ATen/ops/matrix_H.h' 2024-06-26T05:43:10.3850030Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3850810Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2024-06-26T05:43:10.3851800Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2024-06-26T05:43:10.3852730Z adding 'torch/include/ATen/ops/matrix_exp.h' 2024-06-26T05:43:10.3853700Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2024-06-26T05:43:10.3855090Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3855400Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2024-06-26T05:43:10.3856600Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2024-06-26T05:43:10.3857330Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3858200Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2024-06-26T05:43:10.3859210Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2024-06-26T05:43:10.3860200Z adding 'torch/include/ATen/ops/matrix_power.h' 2024-06-26T05:43:10.3861000Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3862000Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2024-06-26T05:43:10.3862850Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2024-06-26T05:43:10.3863980Z adding 'torch/include/ATen/ops/max.h' 2024-06-26T05:43:10.3864990Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3866100Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3866590Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2024-06-26T05:43:10.3867720Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2024-06-26T05:43:10.3868690Z adding 'torch/include/ATen/ops/max_meta.h' 2024-06-26T05:43:10.3869560Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2024-06-26T05:43:10.3870550Z adding 'torch/include/ATen/ops/max_mps_dispatch.h' 2024-06-26T05:43:10.3871520Z adding 'torch/include/ATen/ops/max_native.h' 2024-06-26T05:43:10.3872740Z adding 'torch/include/ATen/ops/max_ops.h' 2024-06-26T05:43:10.3873580Z adding 'torch/include/ATen/ops/max_pool1d.h' 2024-06-26T05:43:10.3874870Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3875200Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2024-06-26T05:43:10.3876450Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2024-06-26T05:43:10.3877470Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2024-06-26T05:43:10.3878250Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3879300Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2024-06-26T05:43:10.3880140Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2024-06-26T05:43:10.3880950Z adding 'torch/include/ATen/ops/max_pool2d.h' 2024-06-26T05:43:10.3882140Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2024-06-26T05:43:10.3883140Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3883740Z adding 'torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h' 2024-06-26T05:43:10.3884950Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2024-06-26T05:43:10.3885800Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2024-06-26T05:43:10.3886840Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3887850Z adding 'torch/include/ATen/ops/max_pool2d_mps_dispatch.h' 2024-06-26T05:43:10.3888440Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2024-06-26T05:43:10.3889990Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2024-06-26T05:43:10.3891020Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2024-06-26T05:43:10.3891930Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2024-06-26T05:43:10.3893320Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3893770Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2024-06-26T05:43:10.3894890Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2024-06-26T05:43:10.3895500Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2024-06-26T05:43:10.3896800Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2024-06-26T05:43:10.3897290Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h' 2024-06-26T05:43:10.3898460Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2024-06-26T05:43:10.3899610Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2024-06-26T05:43:10.3900370Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3901530Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2024-06-26T05:43:10.3902080Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2024-06-26T05:43:10.3903200Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2024-06-26T05:43:10.3903880Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2024-06-26T05:43:10.3904850Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h' 2024-06-26T05:43:10.3905990Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2024-06-26T05:43:10.3906840Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2024-06-26T05:43:10.3907940Z adding 'torch/include/ATen/ops/max_pool3d.h' 2024-06-26T05:43:10.3908580Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3909620Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2024-06-26T05:43:10.3910470Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2024-06-26T05:43:10.3911600Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2024-06-26T05:43:10.3912500Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2024-06-26T05:43:10.3913710Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2024-06-26T05:43:10.3914250Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2024-06-26T05:43:10.3915410Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2024-06-26T05:43:10.3916560Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2024-06-26T05:43:10.3917110Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2024-06-26T05:43:10.3918260Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2024-06-26T05:43:10.3919090Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2024-06-26T05:43:10.3920230Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2024-06-26T05:43:10.3921350Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2024-06-26T05:43:10.3922250Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2024-06-26T05:43:10.3923120Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2024-06-26T05:43:10.3923950Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2024-06-26T05:43:10.3925110Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2024-06-26T05:43:10.3926170Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2024-06-26T05:43:10.3927210Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2024-06-26T05:43:10.3927870Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2024-06-26T05:43:10.3929080Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2024-06-26T05:43:10.3930070Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2024-06-26T05:43:10.3931030Z adding 'torch/include/ATen/ops/maximum.h' 2024-06-26T05:43:10.3931750Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3932810Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2024-06-26T05:43:10.3933290Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2024-06-26T05:43:10.3934440Z adding 'torch/include/ATen/ops/maximum_meta.h' 2024-06-26T05:43:10.3935080Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2024-06-26T05:43:10.3936140Z adding 'torch/include/ATen/ops/maximum_mps_dispatch.h' 2024-06-26T05:43:10.3936980Z adding 'torch/include/ATen/ops/maximum_native.h' 2024-06-26T05:43:10.3937830Z adding 'torch/include/ATen/ops/maximum_ops.h' 2024-06-26T05:43:10.3939010Z adding 'torch/include/ATen/ops/mean.h' 2024-06-26T05:43:10.3939970Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3940890Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3942020Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3942440Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2024-06-26T05:43:10.3943560Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2024-06-26T05:43:10.3944380Z adding 'torch/include/ATen/ops/mean_meta.h' 2024-06-26T05:43:10.3945290Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2024-06-26T05:43:10.3946110Z adding 'torch/include/ATen/ops/mean_mps_dispatch.h' 2024-06-26T05:43:10.3947100Z adding 'torch/include/ATen/ops/mean_native.h' 2024-06-26T05:43:10.3948250Z adding 'torch/include/ATen/ops/mean_ops.h' 2024-06-26T05:43:10.3949380Z adding 'torch/include/ATen/ops/median.h' 2024-06-26T05:43:10.3950360Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3951230Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3951980Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2024-06-26T05:43:10.3952850Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2024-06-26T05:43:10.3953710Z adding 'torch/include/ATen/ops/median_mps_dispatch.h' 2024-06-26T05:43:10.3954850Z adding 'torch/include/ATen/ops/median_native.h' 2024-06-26T05:43:10.3956010Z adding 'torch/include/ATen/ops/median_ops.h' 2024-06-26T05:43:10.3956840Z adding 'torch/include/ATen/ops/meshgrid.h' 2024-06-26T05:43:10.3957820Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3958550Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2024-06-26T05:43:10.3959680Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2024-06-26T05:43:10.3960810Z adding 'torch/include/ATen/ops/min.h' 2024-06-26T05:43:10.3961830Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3962940Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.3963370Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2024-06-26T05:43:10.3964500Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2024-06-26T05:43:10.3965470Z adding 'torch/include/ATen/ops/min_meta.h' 2024-06-26T05:43:10.3966110Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2024-06-26T05:43:10.3967390Z adding 'torch/include/ATen/ops/min_mps_dispatch.h' 2024-06-26T05:43:10.3967960Z adding 'torch/include/ATen/ops/min_native.h' 2024-06-26T05:43:10.3969460Z adding 'torch/include/ATen/ops/min_ops.h' 2024-06-26T05:43:10.3970290Z adding 'torch/include/ATen/ops/minimum.h' 2024-06-26T05:43:10.3971630Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.3971950Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2024-06-26T05:43:10.3976490Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2024-06-26T05:43:10.3976750Z adding 'torch/include/ATen/ops/minimum_meta.h' 2024-06-26T05:43:10.3976920Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2024-06-26T05:43:10.3977080Z adding 'torch/include/ATen/ops/minimum_mps_dispatch.h' 2024-06-26T05:43:10.3977220Z adding 'torch/include/ATen/ops/minimum_native.h' 2024-06-26T05:43:10.3977400Z adding 'torch/include/ATen/ops/minimum_ops.h' 2024-06-26T05:43:10.3978340Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2024-06-26T05:43:10.3979560Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2024-06-26T05:43:10.3980570Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3981670Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2024-06-26T05:43:10.3982160Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2024-06-26T05:43:10.3983520Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2024-06-26T05:43:10.3984460Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3985540Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2024-06-26T05:43:10.3986010Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2024-06-26T05:43:10.3987330Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2024-06-26T05:43:10.3988680Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2024-06-26T05:43:10.3989880Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2024-06-26T05:43:10.3990830Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2024-06-26T05:43:10.3991460Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2024-06-26T05:43:10.3992690Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2024-06-26T05:43:10.3993640Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.3994720Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2024-06-26T05:43:10.3995190Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2024-06-26T05:43:10.3996520Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2024-06-26T05:43:10.3997380Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2024-06-26T05:43:10.3998600Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2024-06-26T05:43:10.3999100Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2024-06-26T05:43:10.4000310Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2024-06-26T05:43:10.4001610Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2024-06-26T05:43:10.4002930Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4003350Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2024-06-26T05:43:10.4004500Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2024-06-26T05:43:10.4005540Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2024-06-26T05:43:10.4006800Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2024-06-26T05:43:10.4007800Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4008910Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2024-06-26T05:43:10.4009400Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2024-06-26T05:43:10.4010690Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2024-06-26T05:43:10.4011780Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2024-06-26T05:43:10.4012980Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2024-06-26T05:43:10.4014290Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4014790Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4016100Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2024-06-26T05:43:10.4017250Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2024-06-26T05:43:10.4018210Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4019290Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2024-06-26T05:43:10.4019860Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2024-06-26T05:43:10.4021300Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2024-06-26T05:43:10.4022290Z adding 'torch/include/ATen/ops/mish.h' 2024-06-26T05:43:10.4022930Z adding 'torch/include/ATen/ops/mish_backward.h' 2024-06-26T05:43:10.4024320Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4024680Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4025830Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4026370Z adding 'torch/include/ATen/ops/mish_backward_mps_dispatch.h' 2024-06-26T05:43:10.4027470Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2024-06-26T05:43:10.4028330Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2024-06-26T05:43:10.4029480Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4029930Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2024-06-26T05:43:10.4031020Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2024-06-26T05:43:10.4031860Z adding 'torch/include/ATen/ops/mish_meta.h' 2024-06-26T05:43:10.4032720Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2024-06-26T05:43:10.4033620Z adding 'torch/include/ATen/ops/mish_mps_dispatch.h' 2024-06-26T05:43:10.4034210Z adding 'torch/include/ATen/ops/mish_native.h' 2024-06-26T05:43:10.4035460Z adding 'torch/include/ATen/ops/mish_ops.h' 2024-06-26T05:43:10.4036670Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2024-06-26T05:43:10.4037210Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2024-06-26T05:43:10.4038560Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4039060Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2024-06-26T05:43:10.4040320Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2024-06-26T05:43:10.4040920Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2024-06-26T05:43:10.4042180Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2024-06-26T05:43:10.4043350Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2024-06-26T05:43:10.4044660Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4045010Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2024-06-26T05:43:10.4046340Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2024-06-26T05:43:10.4047160Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2024-06-26T05:43:10.4048360Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2024-06-26T05:43:10.4049130Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4050310Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2024-06-26T05:43:10.4051050Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4052110Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2024-06-26T05:43:10.4052960Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2024-06-26T05:43:10.4054110Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2024-06-26T05:43:10.4054960Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2024-06-26T05:43:10.4056140Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2024-06-26T05:43:10.4056770Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4057880Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2024-06-26T05:43:10.4058990Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2024-06-26T05:43:10.4059550Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4060600Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2024-06-26T05:43:10.4061450Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2024-06-26T05:43:10.4062610Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2024-06-26T05:43:10.4063500Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2024-06-26T05:43:10.4064820Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4065230Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2024-06-26T05:43:10.4066520Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2024-06-26T05:43:10.4067500Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4068080Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2024-06-26T05:43:10.4069370Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2024-06-26T05:43:10.4070090Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2024-06-26T05:43:10.4071380Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2024-06-26T05:43:10.4072380Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4072960Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2024-06-26T05:43:10.4074270Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2024-06-26T05:43:10.4075000Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4076150Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2024-06-26T05:43:10.4076990Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2024-06-26T05:43:10.4078330Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2024-06-26T05:43:10.4079330Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4080410Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2024-06-26T05:43:10.4081050Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2024-06-26T05:43:10.4082550Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2024-06-26T05:43:10.4083860Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4084190Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2024-06-26T05:43:10.4085490Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2024-06-26T05:43:10.4086720Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2024-06-26T05:43:10.4087890Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2024-06-26T05:43:10.4088890Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4090250Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4091420Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2024-06-26T05:43:10.4092790Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2024-06-26T05:43:10.4094040Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4094660Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2024-06-26T05:43:10.4095890Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2024-06-26T05:43:10.4097110Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2024-06-26T05:43:10.4097920Z adding 'torch/include/ATen/ops/mm.h' 2024-06-26T05:43:10.4099240Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4099810Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2024-06-26T05:43:10.4101040Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2024-06-26T05:43:10.4101840Z adding 'torch/include/ATen/ops/mm_meta.h' 2024-06-26T05:43:10.4103010Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2024-06-26T05:43:10.4103530Z adding 'torch/include/ATen/ops/mm_mps_dispatch.h' 2024-06-26T05:43:10.4104760Z adding 'torch/include/ATen/ops/mm_native.h' 2024-06-26T05:43:10.4105900Z adding 'torch/include/ATen/ops/mm_ops.h' 2024-06-26T05:43:10.4106760Z adding 'torch/include/ATen/ops/mode.h' 2024-06-26T05:43:10.4108020Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4108910Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4110010Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2024-06-26T05:43:10.4110600Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2024-06-26T05:43:10.4111750Z adding 'torch/include/ATen/ops/mode_native.h' 2024-06-26T05:43:10.4113270Z adding 'torch/include/ATen/ops/mode_ops.h' 2024-06-26T05:43:10.4114400Z adding 'torch/include/ATen/ops/moveaxis.h' 2024-06-26T05:43:10.4115170Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4116250Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2024-06-26T05:43:10.4117320Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2024-06-26T05:43:10.4118160Z adding 'torch/include/ATen/ops/movedim.h' 2024-06-26T05:43:10.4119450Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4119950Z adding 'torch/include/ATen/ops/movedim_native.h' 2024-06-26T05:43:10.4121260Z adding 'torch/include/ATen/ops/movedim_ops.h' 2024-06-26T05:43:10.4122750Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2024-06-26T05:43:10.4124060Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4124630Z adding 'torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h' 2024-06-26T05:43:10.4125870Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2024-06-26T05:43:10.4127020Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2024-06-26T05:43:10.4128470Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2024-06-26T05:43:10.4129800Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4130390Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h' 2024-06-26T05:43:10.4131620Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2024-06-26T05:43:10.4132780Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2024-06-26T05:43:10.4133840Z adding 'torch/include/ATen/ops/mse_loss.h' 2024-06-26T05:43:10.4134700Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2024-06-26T05:43:10.4135780Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4136650Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4141140Z adding 'torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h' 2024-06-26T05:43:10.4141470Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2024-06-26T05:43:10.4141640Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2024-06-26T05:43:10.4141960Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4142130Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2024-06-26T05:43:10.4142360Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2024-06-26T05:43:10.4143260Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2024-06-26T05:43:10.4144540Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2024-06-26T05:43:10.4145400Z adding 'torch/include/ATen/ops/mse_loss_mps_dispatch.h' 2024-06-26T05:43:10.4146250Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2024-06-26T05:43:10.4147410Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2024-06-26T05:43:10.4148240Z adding 'torch/include/ATen/ops/msort.h' 2024-06-26T05:43:10.4149560Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4150070Z adding 'torch/include/ATen/ops/msort_native.h' 2024-06-26T05:43:10.4151350Z adding 'torch/include/ATen/ops/msort_ops.h' 2024-06-26T05:43:10.4152480Z adding 'torch/include/ATen/ops/mul.h' 2024-06-26T05:43:10.4153430Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4154360Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4155370Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2024-06-26T05:43:10.4156370Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2024-06-26T05:43:10.4156880Z adding 'torch/include/ATen/ops/mul_meta.h' 2024-06-26T05:43:10.4158090Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2024-06-26T05:43:10.4158790Z adding 'torch/include/ATen/ops/mul_mps_dispatch.h' 2024-06-26T05:43:10.4160050Z adding 'torch/include/ATen/ops/mul_native.h' 2024-06-26T05:43:10.4161240Z adding 'torch/include/ATen/ops/mul_ops.h' 2024-06-26T05:43:10.4162460Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2024-06-26T05:43:10.4163590Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2024-06-26T05:43:10.4164280Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4165490Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4166320Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2024-06-26T05:43:10.4167570Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2024-06-26T05:43:10.4168450Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2024-06-26T05:43:10.4169600Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2024-06-26T05:43:10.4170430Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2024-06-26T05:43:10.4171590Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2024-06-26T05:43:10.4172480Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2024-06-26T05:43:10.4173690Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2024-06-26T05:43:10.4174610Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4175780Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4176390Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2024-06-26T05:43:10.4177720Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2024-06-26T05:43:10.4178680Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4179730Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2024-06-26T05:43:10.4180650Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2024-06-26T05:43:10.4181820Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2024-06-26T05:43:10.4182430Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2024-06-26T05:43:10.4183770Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2024-06-26T05:43:10.4184610Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2024-06-26T05:43:10.4185770Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2024-06-26T05:43:10.4186620Z adding 'torch/include/ATen/ops/multinomial.h' 2024-06-26T05:43:10.4187810Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2024-06-26T05:43:10.4188440Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2024-06-26T05:43:10.4189680Z adding 'torch/include/ATen/ops/multinomial_mps_dispatch.h' 2024-06-26T05:43:10.4190530Z adding 'torch/include/ATen/ops/multinomial_native.h' 2024-06-26T05:43:10.4191740Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2024-06-26T05:43:10.4192630Z adding 'torch/include/ATen/ops/multiply.h' 2024-06-26T05:43:10.4193910Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4194440Z adding 'torch/include/ATen/ops/multiply_native.h' 2024-06-26T05:43:10.4195810Z adding 'torch/include/ATen/ops/multiply_ops.h' 2024-06-26T05:43:10.4196640Z adding 'torch/include/ATen/ops/mv.h' 2024-06-26T05:43:10.4197900Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4198440Z adding 'torch/include/ATen/ops/mv_native.h' 2024-06-26T05:43:10.4199730Z adding 'torch/include/ATen/ops/mv_ops.h' 2024-06-26T05:43:10.4200560Z adding 'torch/include/ATen/ops/mvlgamma.h' 2024-06-26T05:43:10.4201850Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4202430Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2024-06-26T05:43:10.4203670Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2024-06-26T05:43:10.4204260Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2024-06-26T05:43:10.4205580Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2024-06-26T05:43:10.4206600Z adding 'torch/include/ATen/ops/nan_to_num.h' 2024-06-26T05:43:10.4207590Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4208660Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2024-06-26T05:43:10.4209300Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2024-06-26T05:43:10.4210570Z adding 'torch/include/ATen/ops/nan_to_num_mps_dispatch.h' 2024-06-26T05:43:10.4211410Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2024-06-26T05:43:10.4212600Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2024-06-26T05:43:10.4213630Z adding 'torch/include/ATen/ops/nanmean.h' 2024-06-26T05:43:10.4214650Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4215660Z adding 'torch/include/ATen/ops/nanmean_native.h' 2024-06-26T05:43:10.4216670Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2024-06-26T05:43:10.4217820Z adding 'torch/include/ATen/ops/nanmedian.h' 2024-06-26T05:43:10.4218800Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4219960Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4220550Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2024-06-26T05:43:10.4221780Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2024-06-26T05:43:10.4222620Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2024-06-26T05:43:10.4223970Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2024-06-26T05:43:10.4225080Z adding 'torch/include/ATen/ops/nanquantile.h' 2024-06-26T05:43:10.4226390Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4226830Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2024-06-26T05:43:10.4228260Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2024-06-26T05:43:10.4229270Z adding 'torch/include/ATen/ops/nansum.h' 2024-06-26T05:43:10.4230150Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2024-06-26T05:43:10.4231310Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2024-06-26T05:43:10.4231940Z adding 'torch/include/ATen/ops/nansum_mps_dispatch.h' 2024-06-26T05:43:10.4233090Z adding 'torch/include/ATen/ops/nansum_native.h' 2024-06-26T05:43:10.4234160Z adding 'torch/include/ATen/ops/nansum_ops.h' 2024-06-26T05:43:10.4235300Z adding 'torch/include/ATen/ops/narrow.h' 2024-06-26T05:43:10.4236270Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4237380Z adding 'torch/include/ATen/ops/narrow_copy.h' 2024-06-26T05:43:10.4238430Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4239470Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2024-06-26T05:43:10.4240300Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2024-06-26T05:43:10.4241460Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2024-06-26T05:43:10.4242440Z adding 'torch/include/ATen/ops/narrow_native.h' 2024-06-26T05:43:10.4243310Z adding 'torch/include/ATen/ops/narrow_ops.h' 2024-06-26T05:43:10.4244590Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2024-06-26T05:43:10.4245770Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2024-06-26T05:43:10.4247080Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4247600Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4248900Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4249450Z adding 'torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h' 2024-06-26T05:43:10.4250750Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2024-06-26T05:43:10.4251950Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2024-06-26T05:43:10.4253110Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2024-06-26T05:43:10.4253740Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2024-06-26T05:43:10.4254920Z adding 'torch/include/ATen/ops/native_batch_norm_mps_dispatch.h' 2024-06-26T05:43:10.4256110Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2024-06-26T05:43:10.4257290Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2024-06-26T05:43:10.4257920Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2024-06-26T05:43:10.4259370Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4259930Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2024-06-26T05:43:10.4261150Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2024-06-26T05:43:10.4262030Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2024-06-26T05:43:10.4263120Z adding 'torch/include/ATen/ops/native_dropout.h' 2024-06-26T05:43:10.4264020Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2024-06-26T05:43:10.4265120Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4265990Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4266900Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4267810Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2024-06-26T05:43:10.4268890Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2024-06-26T05:43:10.4269950Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4270820Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2024-06-26T05:43:10.4271730Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2024-06-26T05:43:10.4272660Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2024-06-26T05:43:10.4273730Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2024-06-26T05:43:10.4275050Z adding 'torch/include/ATen/ops/native_group_norm.h' 2024-06-26T05:43:10.4276490Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2024-06-26T05:43:10.4277810Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4278720Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4279670Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4280640Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2024-06-26T05:43:10.4281810Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2024-06-26T05:43:10.4283000Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4283890Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2024-06-26T05:43:10.4284830Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2024-06-26T05:43:10.4285800Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2024-06-26T05:43:10.4286930Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2024-06-26T05:43:10.4288250Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2024-06-26T05:43:10.4289660Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2024-06-26T05:43:10.4290950Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4292250Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4293330Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4294320Z adding 'torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h' 2024-06-26T05:43:10.4295330Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2024-06-26T05:43:10.4296530Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2024-06-26T05:43:10.4297680Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4298530Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2024-06-26T05:43:10.4299450Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2024-06-26T05:43:10.4300350Z adding 'torch/include/ATen/ops/native_layer_norm_mps_dispatch.h' 2024-06-26T05:43:10.4301310Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2024-06-26T05:43:10.4302410Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2024-06-26T05:43:10.4303450Z adding 'torch/include/ATen/ops/native_norm.h' 2024-06-26T05:43:10.4304550Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4308920Z adding 'torch/include/ATen/ops/native_norm_native.h' 2024-06-26T05:43:10.4309240Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2024-06-26T05:43:10.4309410Z adding 'torch/include/ATen/ops/ne.h' 2024-06-26T05:43:10.4309710Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4309860Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2024-06-26T05:43:10.4310060Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2024-06-26T05:43:10.4311190Z adding 'torch/include/ATen/ops/ne_meta.h' 2024-06-26T05:43:10.4312060Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2024-06-26T05:43:10.4312890Z adding 'torch/include/ATen/ops/ne_mps_dispatch.h' 2024-06-26T05:43:10.4313810Z adding 'torch/include/ATen/ops/ne_native.h' 2024-06-26T05:43:10.4314960Z adding 'torch/include/ATen/ops/ne_ops.h' 2024-06-26T05:43:10.4315910Z adding 'torch/include/ATen/ops/neg.h' 2024-06-26T05:43:10.4317000Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4317740Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2024-06-26T05:43:10.4318590Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2024-06-26T05:43:10.4319440Z adding 'torch/include/ATen/ops/neg_meta.h' 2024-06-26T05:43:10.4320310Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2024-06-26T05:43:10.4321140Z adding 'torch/include/ATen/ops/neg_mps_dispatch.h' 2024-06-26T05:43:10.4322030Z adding 'torch/include/ATen/ops/neg_native.h' 2024-06-26T05:43:10.4323030Z adding 'torch/include/ATen/ops/neg_ops.h' 2024-06-26T05:43:10.4323950Z adding 'torch/include/ATen/ops/negative.h' 2024-06-26T05:43:10.4325000Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4325760Z adding 'torch/include/ATen/ops/negative_native.h' 2024-06-26T05:43:10.4326770Z adding 'torch/include/ATen/ops/negative_ops.h' 2024-06-26T05:43:10.4327730Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2024-06-26T05:43:10.4328790Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4329540Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2024-06-26T05:43:10.4330490Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2024-06-26T05:43:10.4331570Z adding 'torch/include/ATen/ops/new_empty.h' 2024-06-26T05:43:10.4332710Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4333470Z adding 'torch/include/ATen/ops/new_empty_native.h' 2024-06-26T05:43:10.4334520Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2024-06-26T05:43:10.4335660Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2024-06-26T05:43:10.4336750Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4337770Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4338430Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2024-06-26T05:43:10.4339560Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2024-06-26T05:43:10.4340680Z adding 'torch/include/ATen/ops/new_full.h' 2024-06-26T05:43:10.4341820Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4342590Z adding 'torch/include/ATen/ops/new_full_native.h' 2024-06-26T05:43:10.4343620Z adding 'torch/include/ATen/ops/new_full_ops.h' 2024-06-26T05:43:10.4344890Z adding 'torch/include/ATen/ops/new_ones.h' 2024-06-26T05:43:10.4346390Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4346920Z adding 'torch/include/ATen/ops/new_ones_native.h' 2024-06-26T05:43:10.4348190Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2024-06-26T05:43:10.4349340Z adding 'torch/include/ATen/ops/new_zeros.h' 2024-06-26T05:43:10.4350340Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4350940Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2024-06-26T05:43:10.4352220Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2024-06-26T05:43:10.4353060Z adding 'torch/include/ATen/ops/nextafter.h' 2024-06-26T05:43:10.4354130Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4354740Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2024-06-26T05:43:10.4355850Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2024-06-26T05:43:10.4356670Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2024-06-26T05:43:10.4357700Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2024-06-26T05:43:10.4358180Z adding 'torch/include/ATen/ops/nextafter_mps_dispatch.h' 2024-06-26T05:43:10.4359330Z adding 'torch/include/ATen/ops/nextafter_native.h' 2024-06-26T05:43:10.4360330Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2024-06-26T05:43:10.4361480Z adding 'torch/include/ATen/ops/nll_loss.h' 2024-06-26T05:43:10.4362630Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2024-06-26T05:43:10.4363880Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2024-06-26T05:43:10.4364800Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4365970Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4366520Z adding 'torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h' 2024-06-26T05:43:10.4367690Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2024-06-26T05:43:10.4368830Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2024-06-26T05:43:10.4369790Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4370900Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2024-06-26T05:43:10.4371810Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2024-06-26T05:43:10.4372970Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2024-06-26T05:43:10.4373570Z adding 'torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h' 2024-06-26T05:43:10.4374730Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2024-06-26T05:43:10.4375920Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2024-06-26T05:43:10.4376360Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2024-06-26T05:43:10.4377670Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2024-06-26T05:43:10.4378860Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2024-06-26T05:43:10.4380070Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4380620Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4381840Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4382350Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2024-06-26T05:43:10.4383600Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2024-06-26T05:43:10.4384230Z adding 'torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h' 2024-06-26T05:43:10.4385470Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2024-06-26T05:43:10.4386400Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2024-06-26T05:43:10.4387360Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4388600Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2024-06-26T05:43:10.4389650Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4390290Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2024-06-26T05:43:10.4391500Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2024-06-26T05:43:10.4392060Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2024-06-26T05:43:10.4393240Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2024-06-26T05:43:10.4394080Z adding 'torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h' 2024-06-26T05:43:10.4395210Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2024-06-26T05:43:10.4396050Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2024-06-26T05:43:10.4396900Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2024-06-26T05:43:10.4398030Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2024-06-26T05:43:10.4399060Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4399610Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2024-06-26T05:43:10.4400830Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2024-06-26T05:43:10.4401850Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2024-06-26T05:43:10.4402690Z adding 'torch/include/ATen/ops/nonzero.h' 2024-06-26T05:43:10.4403590Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2024-06-26T05:43:10.4404440Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2024-06-26T05:43:10.4405280Z adding 'torch/include/ATen/ops/nonzero_mps_dispatch.h' 2024-06-26T05:43:10.4406440Z adding 'torch/include/ATen/ops/nonzero_native.h' 2024-06-26T05:43:10.4406880Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2024-06-26T05:43:10.4408180Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4408670Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2024-06-26T05:43:10.4409840Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2024-06-26T05:43:10.4410670Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2024-06-26T05:43:10.4411830Z adding 'torch/include/ATen/ops/nonzero_static.h' 2024-06-26T05:43:10.4412390Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2024-06-26T05:43:10.4413480Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2024-06-26T05:43:10.4414330Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2024-06-26T05:43:10.4415640Z adding 'torch/include/ATen/ops/norm.h' 2024-06-26T05:43:10.4416610Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4417840Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4418350Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4419430Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2024-06-26T05:43:10.4420430Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2024-06-26T05:43:10.4420920Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2024-06-26T05:43:10.4422210Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4422700Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2024-06-26T05:43:10.4423990Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2024-06-26T05:43:10.4424530Z adding 'torch/include/ATen/ops/norm_meta.h' 2024-06-26T05:43:10.4425680Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2024-06-26T05:43:10.4426680Z adding 'torch/include/ATen/ops/norm_mps_dispatch.h' 2024-06-26T05:43:10.4427650Z adding 'torch/include/ATen/ops/norm_native.h' 2024-06-26T05:43:10.4429010Z adding 'torch/include/ATen/ops/norm_ops.h' 2024-06-26T05:43:10.4430590Z adding 'torch/include/ATen/ops/normal.h' 2024-06-26T05:43:10.4431870Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4432430Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2024-06-26T05:43:10.4433660Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2024-06-26T05:43:10.4434280Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2024-06-26T05:43:10.4435290Z adding 'torch/include/ATen/ops/normal_mps_dispatch.h' 2024-06-26T05:43:10.4436480Z adding 'torch/include/ATen/ops/normal_native.h' 2024-06-26T05:43:10.4437940Z adding 'torch/include/ATen/ops/normal_ops.h' 2024-06-26T05:43:10.4439090Z adding 'torch/include/ATen/ops/not_equal.h' 2024-06-26T05:43:10.4439720Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4440780Z adding 'torch/include/ATen/ops/not_equal_native.h' 2024-06-26T05:43:10.4441940Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2024-06-26T05:43:10.4442900Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2024-06-26T05:43:10.4444030Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4444430Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2024-06-26T05:43:10.4445800Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2024-06-26T05:43:10.4446350Z adding 'torch/include/ATen/ops/numpy_T.h' 2024-06-26T05:43:10.4447750Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4448090Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2024-06-26T05:43:10.4449260Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2024-06-26T05:43:10.4450090Z adding 'torch/include/ATen/ops/one_hot.h' 2024-06-26T05:43:10.4451070Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4451640Z adding 'torch/include/ATen/ops/one_hot_native.h' 2024-06-26T05:43:10.4452830Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2024-06-26T05:43:10.4454100Z adding 'torch/include/ATen/ops/ones.h' 2024-06-26T05:43:10.4455370Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4455930Z adding 'torch/include/ATen/ops/ones_like.h' 2024-06-26T05:43:10.4457280Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4457790Z adding 'torch/include/ATen/ops/ones_like_native.h' 2024-06-26T05:43:10.4459090Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2024-06-26T05:43:10.4459940Z adding 'torch/include/ATen/ops/ones_native.h' 2024-06-26T05:43:10.4461110Z adding 'torch/include/ATen/ops/ones_ops.h' 2024-06-26T05:43:10.4461930Z adding 'torch/include/ATen/ops/or.h' 2024-06-26T05:43:10.4463200Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4463550Z adding 'torch/include/ATen/ops/or_native.h' 2024-06-26T05:43:10.4468180Z adding 'torch/include/ATen/ops/or_ops.h' 2024-06-26T05:43:10.4468440Z adding 'torch/include/ATen/ops/orgqr.h' 2024-06-26T05:43:10.4468720Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4468910Z adding 'torch/include/ATen/ops/orgqr_native.h' 2024-06-26T05:43:10.4469040Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2024-06-26T05:43:10.4469150Z adding 'torch/include/ATen/ops/ormqr.h' 2024-06-26T05:43:10.4470040Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2024-06-26T05:43:10.4471170Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2024-06-26T05:43:10.4472000Z adding 'torch/include/ATen/ops/ormqr_native.h' 2024-06-26T05:43:10.4473150Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2024-06-26T05:43:10.4473680Z adding 'torch/include/ATen/ops/outer.h' 2024-06-26T05:43:10.4474930Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4475410Z adding 'torch/include/ATen/ops/outer_native.h' 2024-06-26T05:43:10.4476610Z adding 'torch/include/ATen/ops/outer_ops.h' 2024-06-26T05:43:10.4477620Z adding 'torch/include/ATen/ops/output_nr.h' 2024-06-26T05:43:10.4478240Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4479230Z adding 'torch/include/ATen/ops/output_nr_native.h' 2024-06-26T05:43:10.4480210Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2024-06-26T05:43:10.4480840Z adding 'torch/include/ATen/ops/pad.h' 2024-06-26T05:43:10.4482220Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4482590Z adding 'torch/include/ATen/ops/pad_native.h' 2024-06-26T05:43:10.4483790Z adding 'torch/include/ATen/ops/pad_ops.h' 2024-06-26T05:43:10.4484640Z adding 'torch/include/ATen/ops/pad_sequence.h' 2024-06-26T05:43:10.4485630Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4486470Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2024-06-26T05:43:10.4487310Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2024-06-26T05:43:10.4488340Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2024-06-26T05:43:10.4489340Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4489840Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2024-06-26T05:43:10.4491120Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2024-06-26T05:43:10.4491650Z adding 'torch/include/ATen/ops/pdist.h' 2024-06-26T05:43:10.4492880Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4493370Z adding 'torch/include/ATen/ops/pdist_native.h' 2024-06-26T05:43:10.4494650Z adding 'torch/include/ATen/ops/pdist_ops.h' 2024-06-26T05:43:10.4495490Z adding 'torch/include/ATen/ops/permute.h' 2024-06-26T05:43:10.4496460Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4497190Z adding 'torch/include/ATen/ops/permute_copy.h' 2024-06-26T05:43:10.4498190Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4499420Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4499650Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2024-06-26T05:43:10.4500910Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2024-06-26T05:43:10.4501910Z adding 'torch/include/ATen/ops/permute_mps_dispatch.h' 2024-06-26T05:43:10.4502340Z adding 'torch/include/ATen/ops/permute_native.h' 2024-06-26T05:43:10.4503500Z adding 'torch/include/ATen/ops/permute_ops.h' 2024-06-26T05:43:10.4504110Z adding 'torch/include/ATen/ops/pin_memory.h' 2024-06-26T05:43:10.4505360Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4505790Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2024-06-26T05:43:10.4506990Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2024-06-26T05:43:10.4507970Z adding 'torch/include/ATen/ops/pinverse.h' 2024-06-26T05:43:10.4508570Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4509630Z adding 'torch/include/ATen/ops/pinverse_native.h' 2024-06-26T05:43:10.4510490Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2024-06-26T05:43:10.4511340Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2024-06-26T05:43:10.4512350Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4513570Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4513890Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2024-06-26T05:43:10.4514990Z adding 'torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h' 2024-06-26T05:43:10.4515630Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2024-06-26T05:43:10.4516880Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2024-06-26T05:43:10.4517470Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2024-06-26T05:43:10.4518780Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4519440Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4520300Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2024-06-26T05:43:10.4521160Z adding 'torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h' 2024-06-26T05:43:10.4521990Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2024-06-26T05:43:10.4523150Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2024-06-26T05:43:10.4523970Z adding 'torch/include/ATen/ops/poisson.h' 2024-06-26T05:43:10.4524940Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4525740Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2024-06-26T05:43:10.4526600Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2024-06-26T05:43:10.4527440Z adding 'torch/include/ATen/ops/poisson_native.h' 2024-06-26T05:43:10.4528320Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2024-06-26T05:43:10.4529320Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4529930Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2024-06-26T05:43:10.4531130Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2024-06-26T05:43:10.4531960Z adding 'torch/include/ATen/ops/poisson_ops.h' 2024-06-26T05:43:10.4533120Z adding 'torch/include/ATen/ops/polar.h' 2024-06-26T05:43:10.4533760Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4534830Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2024-06-26T05:43:10.4535390Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2024-06-26T05:43:10.4536480Z adding 'torch/include/ATen/ops/polar_mps_dispatch.h' 2024-06-26T05:43:10.4537320Z adding 'torch/include/ATen/ops/polar_native.h' 2024-06-26T05:43:10.4538160Z adding 'torch/include/ATen/ops/polar_ops.h' 2024-06-26T05:43:10.4539310Z adding 'torch/include/ATen/ops/polygamma.h' 2024-06-26T05:43:10.4539940Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4541170Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4541620Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2024-06-26T05:43:10.4542580Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2024-06-26T05:43:10.4543720Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2024-06-26T05:43:10.4544190Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2024-06-26T05:43:10.4545380Z adding 'torch/include/ATen/ops/polygamma_mps_dispatch.h' 2024-06-26T05:43:10.4545850Z adding 'torch/include/ATen/ops/polygamma_native.h' 2024-06-26T05:43:10.4547150Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2024-06-26T05:43:10.4548120Z adding 'torch/include/ATen/ops/positive.h' 2024-06-26T05:43:10.4548730Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4549750Z adding 'torch/include/ATen/ops/positive_native.h' 2024-06-26T05:43:10.4550740Z adding 'torch/include/ATen/ops/positive_ops.h' 2024-06-26T05:43:10.4551570Z adding 'torch/include/ATen/ops/pow.h' 2024-06-26T05:43:10.4552890Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4553240Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2024-06-26T05:43:10.4554420Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2024-06-26T05:43:10.4555390Z adding 'torch/include/ATen/ops/pow_meta.h' 2024-06-26T05:43:10.4555930Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2024-06-26T05:43:10.4557080Z adding 'torch/include/ATen/ops/pow_mps_dispatch.h' 2024-06-26T05:43:10.4558090Z adding 'torch/include/ATen/ops/pow_native.h' 2024-06-26T05:43:10.4559260Z adding 'torch/include/ATen/ops/pow_ops.h' 2024-06-26T05:43:10.4560090Z adding 'torch/include/ATen/ops/prelu.h' 2024-06-26T05:43:10.4561540Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4562010Z adding 'torch/include/ATen/ops/prelu_native.h' 2024-06-26T05:43:10.4563300Z adding 'torch/include/ATen/ops/prelu_ops.h' 2024-06-26T05:43:10.4564000Z adding 'torch/include/ATen/ops/prod.h' 2024-06-26T05:43:10.4565300Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4565990Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4566980Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4568060Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2024-06-26T05:43:10.4568520Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2024-06-26T05:43:10.4569680Z adding 'torch/include/ATen/ops/prod_meta.h' 2024-06-26T05:43:10.4570540Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2024-06-26T05:43:10.4571530Z adding 'torch/include/ATen/ops/prod_mps_dispatch.h' 2024-06-26T05:43:10.4572080Z adding 'torch/include/ATen/ops/prod_native.h' 2024-06-26T05:43:10.4573450Z adding 'torch/include/ATen/ops/prod_ops.h' 2024-06-26T05:43:10.4574520Z adding 'torch/include/ATen/ops/promote_types.h' 2024-06-26T05:43:10.4575180Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4576260Z adding 'torch/include/ATen/ops/promote_types_native.h' 2024-06-26T05:43:10.4577150Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2024-06-26T05:43:10.4577940Z adding 'torch/include/ATen/ops/put.h' 2024-06-26T05:43:10.4578810Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4579970Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2024-06-26T05:43:10.4580770Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2024-06-26T05:43:10.4581300Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2024-06-26T05:43:10.4582400Z adding 'torch/include/ATen/ops/put_native.h' 2024-06-26T05:43:10.4583530Z adding 'torch/include/ATen/ops/put_ops.h' 2024-06-26T05:43:10.4584050Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2024-06-26T05:43:10.4585210Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2024-06-26T05:43:10.4586060Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2024-06-26T05:43:10.4586960Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2024-06-26T05:43:10.4587950Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4588520Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2024-06-26T05:43:10.4589770Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2024-06-26T05:43:10.4590410Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2024-06-26T05:43:10.4591820Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4592160Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2024-06-26T05:43:10.4593350Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2024-06-26T05:43:10.4593910Z adding 'torch/include/ATen/ops/q_scale.h' 2024-06-26T05:43:10.4595170Z adding 'torch/include/ATen/ops/q_scale_native.h' 2024-06-26T05:43:10.4596150Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2024-06-26T05:43:10.4596640Z adding 'torch/include/ATen/ops/q_zero_point.h' 2024-06-26T05:43:10.4597770Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2024-06-26T05:43:10.4598620Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2024-06-26T05:43:10.4599580Z adding 'torch/include/ATen/ops/qr.h' 2024-06-26T05:43:10.4600530Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4601100Z adding 'torch/include/ATen/ops/qr_native.h' 2024-06-26T05:43:10.4602330Z adding 'torch/include/ATen/ops/qr_ops.h' 2024-06-26T05:43:10.4602990Z adding 'torch/include/ATen/ops/qscheme.h' 2024-06-26T05:43:10.4603910Z adding 'torch/include/ATen/ops/qscheme_native.h' 2024-06-26T05:43:10.4604940Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2024-06-26T05:43:10.4605940Z adding 'torch/include/ATen/ops/quantile.h' 2024-06-26T05:43:10.4607230Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4607620Z adding 'torch/include/ATen/ops/quantile_native.h' 2024-06-26T05:43:10.4609000Z adding 'torch/include/ATen/ops/quantile_ops.h' 2024-06-26T05:43:10.4609960Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2024-06-26T05:43:10.4610980Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4611630Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2024-06-26T05:43:10.4612830Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2024-06-26T05:43:10.4613290Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2024-06-26T05:43:10.4617980Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2024-06-26T05:43:10.4618300Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2024-06-26T05:43:10.4618610Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4618830Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2024-06-26T05:43:10.4619040Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2024-06-26T05:43:10.4619480Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2024-06-26T05:43:10.4620160Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4621250Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2024-06-26T05:43:10.4621750Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2024-06-26T05:43:10.4622910Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2024-06-26T05:43:10.4623740Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2024-06-26T05:43:10.4624880Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2024-06-26T05:43:10.4626040Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2024-06-26T05:43:10.4626890Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2024-06-26T05:43:10.4628200Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4628600Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2024-06-26T05:43:10.4629890Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2024-06-26T05:43:10.4630720Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2024-06-26T05:43:10.4632040Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4632390Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2024-06-26T05:43:10.4633660Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2024-06-26T05:43:10.4634540Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2024-06-26T05:43:10.4635850Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4636210Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2024-06-26T05:43:10.4637470Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2024-06-26T05:43:10.4638320Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2024-06-26T05:43:10.4639630Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4640030Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2024-06-26T05:43:10.4641310Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2024-06-26T05:43:10.4642140Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2024-06-26T05:43:10.4643450Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4643840Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2024-06-26T05:43:10.4645100Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2024-06-26T05:43:10.4645960Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2024-06-26T05:43:10.4647250Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4647590Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2024-06-26T05:43:10.4648880Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2024-06-26T05:43:10.4649740Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2024-06-26T05:43:10.4650750Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4651390Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2024-06-26T05:43:10.4652640Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2024-06-26T05:43:10.4653480Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2024-06-26T05:43:10.4654800Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4655190Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2024-06-26T05:43:10.4656430Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2024-06-26T05:43:10.4657230Z adding 'torch/include/ATen/ops/rad2deg.h' 2024-06-26T05:43:10.4658200Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4659250Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2024-06-26T05:43:10.4660230Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2024-06-26T05:43:10.4662160Z adding 'torch/include/ATen/ops/rand.h' 2024-06-26T05:43:10.4663570Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4664240Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4665400Z adding 'torch/include/ATen/ops/rand_like.h' 2024-06-26T05:43:10.4666390Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4667170Z adding 'torch/include/ATen/ops/rand_like_native.h' 2024-06-26T05:43:10.4668340Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2024-06-26T05:43:10.4669240Z adding 'torch/include/ATen/ops/rand_native.h' 2024-06-26T05:43:10.4670590Z adding 'torch/include/ATen/ops/rand_ops.h' 2024-06-26T05:43:10.4672720Z adding 'torch/include/ATen/ops/randint.h' 2024-06-26T05:43:10.4674150Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4675650Z adding 'torch/include/ATen/ops/randint_like.h' 2024-06-26T05:43:10.4676950Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4677500Z adding 'torch/include/ATen/ops/randint_like_native.h' 2024-06-26T05:43:10.4678910Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2024-06-26T05:43:10.4679890Z adding 'torch/include/ATen/ops/randint_native.h' 2024-06-26T05:43:10.4681140Z adding 'torch/include/ATen/ops/randint_ops.h' 2024-06-26T05:43:10.4683190Z adding 'torch/include/ATen/ops/randn.h' 2024-06-26T05:43:10.4684540Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4685400Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4686660Z adding 'torch/include/ATen/ops/randn_like.h' 2024-06-26T05:43:10.4687180Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4688440Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2024-06-26T05:43:10.4688910Z adding 'torch/include/ATen/ops/randn_like_native.h' 2024-06-26T05:43:10.4690200Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2024-06-26T05:43:10.4691200Z adding 'torch/include/ATen/ops/randn_native.h' 2024-06-26T05:43:10.4692530Z adding 'torch/include/ATen/ops/randn_ops.h' 2024-06-26T05:43:10.4693640Z adding 'torch/include/ATen/ops/random.h' 2024-06-26T05:43:10.4694630Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4695730Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2024-06-26T05:43:10.4696120Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2024-06-26T05:43:10.4697270Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2024-06-26T05:43:10.4697870Z adding 'torch/include/ATen/ops/random_mps_dispatch.h' 2024-06-26T05:43:10.4699130Z adding 'torch/include/ATen/ops/random_native.h' 2024-06-26T05:43:10.4700320Z adding 'torch/include/ATen/ops/random_ops.h' 2024-06-26T05:43:10.4701760Z adding 'torch/include/ATen/ops/randperm.h' 2024-06-26T05:43:10.4703040Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4703550Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2024-06-26T05:43:10.4704520Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2024-06-26T05:43:10.4705370Z adding 'torch/include/ATen/ops/randperm_mps_dispatch.h' 2024-06-26T05:43:10.4706530Z adding 'torch/include/ATen/ops/randperm_native.h' 2024-06-26T05:43:10.4707530Z adding 'torch/include/ATen/ops/randperm_ops.h' 2024-06-26T05:43:10.4708600Z adding 'torch/include/ATen/ops/range.h' 2024-06-26T05:43:10.4709560Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4710640Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2024-06-26T05:43:10.4711030Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2024-06-26T05:43:10.4712170Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2024-06-26T05:43:10.4712770Z adding 'torch/include/ATen/ops/range_mps_dispatch.h' 2024-06-26T05:43:10.4713880Z adding 'torch/include/ATen/ops/range_native.h' 2024-06-26T05:43:10.4715060Z adding 'torch/include/ATen/ops/range_ops.h' 2024-06-26T05:43:10.4715900Z adding 'torch/include/ATen/ops/ravel.h' 2024-06-26T05:43:10.4716660Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4717650Z adding 'torch/include/ATen/ops/ravel_native.h' 2024-06-26T05:43:10.4718490Z adding 'torch/include/ATen/ops/ravel_ops.h' 2024-06-26T05:43:10.4719310Z adding 'torch/include/ATen/ops/real.h' 2024-06-26T05:43:10.4720580Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4720910Z adding 'torch/include/ATen/ops/real_native.h' 2024-06-26T05:43:10.4722070Z adding 'torch/include/ATen/ops/real_ops.h' 2024-06-26T05:43:10.4722910Z adding 'torch/include/ATen/ops/reciprocal.h' 2024-06-26T05:43:10.4723960Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4724850Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2024-06-26T05:43:10.4725380Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2024-06-26T05:43:10.4726500Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2024-06-26T05:43:10.4727130Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2024-06-26T05:43:10.4728320Z adding 'torch/include/ATen/ops/reciprocal_mps_dispatch.h' 2024-06-26T05:43:10.4728760Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2024-06-26T05:43:10.4730040Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2024-06-26T05:43:10.4731020Z adding 'torch/include/ATen/ops/record_stream.h' 2024-06-26T05:43:10.4731560Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2024-06-26T05:43:10.4732640Z adding 'torch/include/ATen/ops/record_stream_native.h' 2024-06-26T05:43:10.4733490Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2024-06-26T05:43:10.4734330Z adding 'torch/include/ATen/ops/refine_names.h' 2024-06-26T05:43:10.4735330Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4735910Z adding 'torch/include/ATen/ops/refine_names_native.h' 2024-06-26T05:43:10.4737110Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2024-06-26T05:43:10.4738170Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2024-06-26T05:43:10.4739340Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2024-06-26T05:43:10.4740440Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4741040Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4742210Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4742760Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2024-06-26T05:43:10.4743800Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2024-06-26T05:43:10.4744960Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h' 2024-06-26T05:43:10.4745430Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2024-06-26T05:43:10.4746680Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2024-06-26T05:43:10.4747480Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4748610Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2024-06-26T05:43:10.4749080Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2024-06-26T05:43:10.4750210Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2024-06-26T05:43:10.4751110Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2024-06-26T05:43:10.4751750Z adding 'torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h' 2024-06-26T05:43:10.4752980Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2024-06-26T05:43:10.4753830Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2024-06-26T05:43:10.4754990Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2024-06-26T05:43:10.4756080Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2024-06-26T05:43:10.4757040Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4757730Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4758920Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h' 2024-06-26T05:43:10.4759530Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2024-06-26T05:43:10.4760740Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2024-06-26T05:43:10.4761590Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2024-06-26T05:43:10.4762460Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2024-06-26T05:43:10.4763330Z adding 'torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h' 2024-06-26T05:43:10.4764050Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2024-06-26T05:43:10.4765310Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2024-06-26T05:43:10.4766160Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2024-06-26T05:43:10.4767440Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2024-06-26T05:43:10.4768500Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4769080Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4770290Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4770760Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2024-06-26T05:43:10.4771970Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2024-06-26T05:43:10.4772620Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h' 2024-06-26T05:43:10.4773850Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2024-06-26T05:43:10.4774480Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2024-06-26T05:43:10.4779220Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4779560Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2024-06-26T05:43:10.4779770Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2024-06-26T05:43:10.4780870Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2024-06-26T05:43:10.4781150Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2024-06-26T05:43:10.4781350Z adding 'torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h' 2024-06-26T05:43:10.4781530Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2024-06-26T05:43:10.4781840Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2024-06-26T05:43:10.4782750Z adding 'torch/include/ATen/ops/relu.h' 2024-06-26T05:43:10.4783870Z adding 'torch/include/ATen/ops/relu6.h' 2024-06-26T05:43:10.4784840Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4785400Z adding 'torch/include/ATen/ops/relu6_native.h' 2024-06-26T05:43:10.4786760Z adding 'torch/include/ATen/ops/relu6_ops.h' 2024-06-26T05:43:10.4787300Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4788390Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2024-06-26T05:43:10.4789010Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2024-06-26T05:43:10.4789980Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2024-06-26T05:43:10.4790830Z adding 'torch/include/ATen/ops/relu_mps_dispatch.h' 2024-06-26T05:43:10.4791820Z adding 'torch/include/ATen/ops/relu_native.h' 2024-06-26T05:43:10.4792660Z adding 'torch/include/ATen/ops/relu_ops.h' 2024-06-26T05:43:10.4793860Z adding 'torch/include/ATen/ops/remainder.h' 2024-06-26T05:43:10.4794890Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4796640Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4797680Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2024-06-26T05:43:10.4798580Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2024-06-26T05:43:10.4799670Z adding 'torch/include/ATen/ops/remainder_meta.h' 2024-06-26T05:43:10.4800700Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2024-06-26T05:43:10.4801550Z adding 'torch/include/ATen/ops/remainder_mps_dispatch.h' 2024-06-26T05:43:10.4802710Z adding 'torch/include/ATen/ops/remainder_native.h' 2024-06-26T05:43:10.4803970Z adding 'torch/include/ATen/ops/remainder_ops.h' 2024-06-26T05:43:10.4804940Z adding 'torch/include/ATen/ops/rename.h' 2024-06-26T05:43:10.4805920Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4806980Z adding 'torch/include/ATen/ops/rename_native.h' 2024-06-26T05:43:10.4808090Z adding 'torch/include/ATen/ops/rename_ops.h' 2024-06-26T05:43:10.4808950Z adding 'torch/include/ATen/ops/renorm.h' 2024-06-26T05:43:10.4810320Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4810900Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2024-06-26T05:43:10.4812110Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2024-06-26T05:43:10.4812940Z adding 'torch/include/ATen/ops/renorm_meta.h' 2024-06-26T05:43:10.4814140Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2024-06-26T05:43:10.4814720Z adding 'torch/include/ATen/ops/renorm_mps_dispatch.h' 2024-06-26T05:43:10.4815920Z adding 'torch/include/ATen/ops/renorm_native.h' 2024-06-26T05:43:10.4817030Z adding 'torch/include/ATen/ops/renorm_ops.h' 2024-06-26T05:43:10.4818180Z adding 'torch/include/ATen/ops/repeat.h' 2024-06-26T05:43:10.4819450Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4820650Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2024-06-26T05:43:10.4821970Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4822640Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4823810Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2024-06-26T05:43:10.4824710Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2024-06-26T05:43:10.4825820Z adding 'torch/include/ATen/ops/repeat_interleave_mps_dispatch.h' 2024-06-26T05:43:10.4826380Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2024-06-26T05:43:10.4827870Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2024-06-26T05:43:10.4828690Z adding 'torch/include/ATen/ops/repeat_mps_dispatch.h' 2024-06-26T05:43:10.4829840Z adding 'torch/include/ATen/ops/repeat_native.h' 2024-06-26T05:43:10.4830830Z adding 'torch/include/ATen/ops/repeat_ops.h' 2024-06-26T05:43:10.4832030Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2024-06-26T05:43:10.4833240Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2024-06-26T05:43:10.4834310Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4835410Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4836010Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4837260Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2024-06-26T05:43:10.4838160Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2024-06-26T05:43:10.4839010Z adding 'torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h' 2024-06-26T05:43:10.4840180Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2024-06-26T05:43:10.4841330Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2024-06-26T05:43:10.4842070Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4843170Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2024-06-26T05:43:10.4844050Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2024-06-26T05:43:10.4845180Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2024-06-26T05:43:10.4845820Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2024-06-26T05:43:10.4846960Z adding 'torch/include/ATen/ops/replication_pad1d_mps_dispatch.h' 2024-06-26T05:43:10.4847850Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2024-06-26T05:43:10.4849070Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2024-06-26T05:43:10.4849980Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2024-06-26T05:43:10.4851460Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2024-06-26T05:43:10.4852460Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4853690Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4854210Z adding 'torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h' 2024-06-26T05:43:10.4855490Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2024-06-26T05:43:10.4856730Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2024-06-26T05:43:10.4857540Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4858680Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2024-06-26T05:43:10.4859290Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2024-06-26T05:43:10.4860450Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2024-06-26T05:43:10.4861350Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2024-06-26T05:43:10.4862190Z adding 'torch/include/ATen/ops/replication_pad2d_mps_dispatch.h' 2024-06-26T05:43:10.4863350Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2024-06-26T05:43:10.4864190Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2024-06-26T05:43:10.4865480Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2024-06-26T05:43:10.4866720Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2024-06-26T05:43:10.4867650Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.4868820Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.4869520Z adding 'torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h' 2024-06-26T05:43:10.4870750Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2024-06-26T05:43:10.4871950Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2024-06-26T05:43:10.4872670Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4873710Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2024-06-26T05:43:10.4874370Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2024-06-26T05:43:10.4875600Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2024-06-26T05:43:10.4876250Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2024-06-26T05:43:10.4877530Z adding 'torch/include/ATen/ops/replication_pad3d_mps_dispatch.h' 2024-06-26T05:43:10.4878110Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2024-06-26T05:43:10.4879390Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2024-06-26T05:43:10.4880240Z adding 'torch/include/ATen/ops/requires_grad.h' 2024-06-26T05:43:10.4881560Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4882130Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2024-06-26T05:43:10.4883500Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2024-06-26T05:43:10.4884500Z adding 'torch/include/ATen/ops/reshape.h' 2024-06-26T05:43:10.4885340Z adding 'torch/include/ATen/ops/reshape_as.h' 2024-06-26T05:43:10.4886840Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4887270Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2024-06-26T05:43:10.4888310Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2024-06-26T05:43:10.4889190Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2024-06-26T05:43:10.4890560Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4891150Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2024-06-26T05:43:10.4892170Z adding 'torch/include/ATen/ops/reshape_native.h' 2024-06-26T05:43:10.4893090Z adding 'torch/include/ATen/ops/reshape_ops.h' 2024-06-26T05:43:10.4894360Z adding 'torch/include/ATen/ops/resize.h' 2024-06-26T05:43:10.4895500Z adding 'torch/include/ATen/ops/resize_as.h' 2024-06-26T05:43:10.4896920Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4898000Z adding 'torch/include/ATen/ops/resize_as_native.h' 2024-06-26T05:43:10.4899230Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2024-06-26T05:43:10.4900330Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2024-06-26T05:43:10.4901340Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4902210Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2024-06-26T05:43:10.4903040Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2024-06-26T05:43:10.4904230Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2024-06-26T05:43:10.4905080Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4906060Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2024-06-26T05:43:10.4906920Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2024-06-26T05:43:10.4907790Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2024-06-26T05:43:10.4908670Z adding 'torch/include/ATen/ops/resize_mps_dispatch.h' 2024-06-26T05:43:10.4909630Z adding 'torch/include/ATen/ops/resize_native.h' 2024-06-26T05:43:10.4910790Z adding 'torch/include/ATen/ops/resize_ops.h' 2024-06-26T05:43:10.4911730Z adding 'torch/include/ATen/ops/resolve_conj.h' 2024-06-26T05:43:10.4912790Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4913540Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2024-06-26T05:43:10.4914490Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2024-06-26T05:43:10.4915350Z adding 'torch/include/ATen/ops/resolve_neg.h' 2024-06-26T05:43:10.4916400Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4917180Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2024-06-26T05:43:10.4918060Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2024-06-26T05:43:10.4919020Z adding 'torch/include/ATen/ops/result_type.h' 2024-06-26T05:43:10.4920100Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4920880Z adding 'torch/include/ATen/ops/result_type_native.h' 2024-06-26T05:43:10.4921950Z adding 'torch/include/ATen/ops/result_type_ops.h' 2024-06-26T05:43:10.4922810Z adding 'torch/include/ATen/ops/retain_grad.h' 2024-06-26T05:43:10.4923870Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4924620Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2024-06-26T05:43:10.4925510Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2024-06-26T05:43:10.4926360Z adding 'torch/include/ATen/ops/retains_grad.h' 2024-06-26T05:43:10.4927400Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4928140Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2024-06-26T05:43:10.4929050Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2024-06-26T05:43:10.4929960Z adding 'torch/include/ATen/ops/rms_norm.h' 2024-06-26T05:43:10.4931020Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4931770Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2024-06-26T05:43:10.4932720Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2024-06-26T05:43:10.4933680Z adding 'torch/include/ATen/ops/rnn_relu.h' 2024-06-26T05:43:10.4934620Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2024-06-26T05:43:10.4935720Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4936440Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2024-06-26T05:43:10.4937410Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2024-06-26T05:43:10.4938470Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4942970Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2024-06-26T05:43:10.4943270Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2024-06-26T05:43:10.4943400Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2024-06-26T05:43:10.4943540Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2024-06-26T05:43:10.4943830Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4943990Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2024-06-26T05:43:10.4944750Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2024-06-26T05:43:10.4945900Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4946670Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2024-06-26T05:43:10.4947710Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2024-06-26T05:43:10.4948770Z adding 'torch/include/ATen/ops/roll.h' 2024-06-26T05:43:10.4949850Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4950640Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2024-06-26T05:43:10.4951490Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2024-06-26T05:43:10.4952340Z adding 'torch/include/ATen/ops/roll_mps_dispatch.h' 2024-06-26T05:43:10.4953180Z adding 'torch/include/ATen/ops/roll_native.h' 2024-06-26T05:43:10.4954170Z adding 'torch/include/ATen/ops/roll_ops.h' 2024-06-26T05:43:10.4955360Z adding 'torch/include/ATen/ops/rot90.h' 2024-06-26T05:43:10.4956100Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4957090Z adding 'torch/include/ATen/ops/rot90_native.h' 2024-06-26T05:43:10.4958070Z adding 'torch/include/ATen/ops/rot90_ops.h' 2024-06-26T05:43:10.4958900Z adding 'torch/include/ATen/ops/round.h' 2024-06-26T05:43:10.4960240Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4960700Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2024-06-26T05:43:10.4961820Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2024-06-26T05:43:10.4962410Z adding 'torch/include/ATen/ops/round_meta.h' 2024-06-26T05:43:10.4963680Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2024-06-26T05:43:10.4964130Z adding 'torch/include/ATen/ops/round_mps_dispatch.h' 2024-06-26T05:43:10.4965360Z adding 'torch/include/ATen/ops/round_native.h' 2024-06-26T05:43:10.4966550Z adding 'torch/include/ATen/ops/round_ops.h' 2024-06-26T05:43:10.4967050Z adding 'torch/include/ATen/ops/row_indices.h' 2024-06-26T05:43:10.4968380Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4969420Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2024-06-26T05:43:10.4970560Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4971160Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.4972180Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2024-06-26T05:43:10.4972820Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2024-06-26T05:43:10.4973860Z adding 'torch/include/ATen/ops/row_indices_native.h' 2024-06-26T05:43:10.4974730Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2024-06-26T05:43:10.4975870Z adding 'torch/include/ATen/ops/row_stack.h' 2024-06-26T05:43:10.4976620Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4977530Z adding 'torch/include/ATen/ops/row_stack_native.h' 2024-06-26T05:43:10.4978590Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2024-06-26T05:43:10.4979430Z adding 'torch/include/ATen/ops/rrelu.h' 2024-06-26T05:43:10.4980750Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.4981070Z adding 'torch/include/ATen/ops/rrelu_native.h' 2024-06-26T05:43:10.4982380Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2024-06-26T05:43:10.4983540Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2024-06-26T05:43:10.4984570Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2024-06-26T05:43:10.4985310Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4986560Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2024-06-26T05:43:10.4987070Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2024-06-26T05:43:10.4988290Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2024-06-26T05:43:10.4988940Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2024-06-26T05:43:10.4990190Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2024-06-26T05:43:10.4990770Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2024-06-26T05:43:10.4992090Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2024-06-26T05:43:10.4992910Z adding 'torch/include/ATen/ops/rshift.h' 2024-06-26T05:43:10.4994200Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.4994670Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2024-06-26T05:43:10.4995810Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2024-06-26T05:43:10.4996640Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2024-06-26T05:43:10.4997800Z adding 'torch/include/ATen/ops/rshift_native.h' 2024-06-26T05:43:10.4998840Z adding 'torch/include/ATen/ops/rshift_ops.h' 2024-06-26T05:43:10.4999670Z adding 'torch/include/ATen/ops/rsqrt.h' 2024-06-26T05:43:10.5000890Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5001340Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2024-06-26T05:43:10.5002620Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2024-06-26T05:43:10.5003020Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2024-06-26T05:43:10.5004200Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2024-06-26T05:43:10.5004830Z adding 'torch/include/ATen/ops/rsqrt_mps_dispatch.h' 2024-06-26T05:43:10.5006290Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2024-06-26T05:43:10.5007110Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2024-06-26T05:43:10.5008250Z adding 'torch/include/ATen/ops/rsub.h' 2024-06-26T05:43:10.5009220Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5009980Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2024-06-26T05:43:10.5010840Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2024-06-26T05:43:10.5011680Z adding 'torch/include/ATen/ops/rsub_native.h' 2024-06-26T05:43:10.5012930Z adding 'torch/include/ATen/ops/rsub_ops.h' 2024-06-26T05:43:10.5014110Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2024-06-26T05:43:10.5014770Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5015830Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2024-06-26T05:43:10.5016700Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2024-06-26T05:43:10.5017860Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2024-06-26T05:43:10.5018720Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5019590Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2024-06-26T05:43:10.5020750Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2024-06-26T05:43:10.5021830Z adding 'torch/include/ATen/ops/scatter.h' 2024-06-26T05:43:10.5022670Z adding 'torch/include/ATen/ops/scatter_add.h' 2024-06-26T05:43:10.5024030Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5024460Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5025550Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2024-06-26T05:43:10.5026180Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2024-06-26T05:43:10.5027420Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2024-06-26T05:43:10.5027960Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2024-06-26T05:43:10.5029130Z adding 'torch/include/ATen/ops/scatter_add_mps_dispatch.h' 2024-06-26T05:43:10.5029700Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2024-06-26T05:43:10.5031060Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2024-06-26T05:43:10.5032240Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5032800Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5033990Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2024-06-26T05:43:10.5034840Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2024-06-26T05:43:10.5035970Z adding 'torch/include/ATen/ops/scatter_meta.h' 2024-06-26T05:43:10.5036560Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2024-06-26T05:43:10.5037770Z adding 'torch/include/ATen/ops/scatter_mps_dispatch.h' 2024-06-26T05:43:10.5038670Z adding 'torch/include/ATen/ops/scatter_native.h' 2024-06-26T05:43:10.5040320Z adding 'torch/include/ATen/ops/scatter_ops.h' 2024-06-26T05:43:10.5041240Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2024-06-26T05:43:10.5042490Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5042990Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2024-06-26T05:43:10.5044210Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2024-06-26T05:43:10.5044750Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2024-06-26T05:43:10.5046070Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2024-06-26T05:43:10.5046550Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2024-06-26T05:43:10.5047880Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2024-06-26T05:43:10.5049050Z adding 'torch/include/ATen/ops/searchsorted.h' 2024-06-26T05:43:10.5049950Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2024-06-26T05:43:10.5050790Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2024-06-26T05:43:10.5051990Z adding 'torch/include/ATen/ops/searchsorted_mps_dispatch.h' 2024-06-26T05:43:10.5052550Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2024-06-26T05:43:10.5053990Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2024-06-26T05:43:10.5055130Z adding 'torch/include/ATen/ops/segment_reduce.h' 2024-06-26T05:43:10.5055990Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5056920Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2024-06-26T05:43:10.5057790Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2024-06-26T05:43:10.5058620Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2024-06-26T05:43:10.5059800Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2024-06-26T05:43:10.5060630Z adding 'torch/include/ATen/ops/select.h' 2024-06-26T05:43:10.5061890Z adding 'torch/include/ATen/ops/select_backward.h' 2024-06-26T05:43:10.5063040Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5063720Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5064840Z adding 'torch/include/ATen/ops/select_backward_native.h' 2024-06-26T05:43:10.5065680Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2024-06-26T05:43:10.5066660Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5067520Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5068590Z adding 'torch/include/ATen/ops/select_copy.h' 2024-06-26T05:43:10.5069620Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5070400Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5071410Z adding 'torch/include/ATen/ops/select_copy_native.h' 2024-06-26T05:43:10.5072260Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2024-06-26T05:43:10.5073250Z adding 'torch/include/ATen/ops/select_native.h' 2024-06-26T05:43:10.5074230Z adding 'torch/include/ATen/ops/select_ops.h' 2024-06-26T05:43:10.5075400Z adding 'torch/include/ATen/ops/select_scatter.h' 2024-06-26T05:43:10.5076530Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5077110Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5078120Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2024-06-26T05:43:10.5078970Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2024-06-26T05:43:10.5079820Z adding 'torch/include/ATen/ops/selu.h' 2024-06-26T05:43:10.5081080Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5081440Z adding 'torch/include/ATen/ops/selu_native.h' 2024-06-26T05:43:10.5082640Z adding 'torch/include/ATen/ops/selu_ops.h' 2024-06-26T05:43:10.5084010Z adding 'torch/include/ATen/ops/set.h' 2024-06-26T05:43:10.5085280Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5085870Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5086920Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2024-06-26T05:43:10.5087790Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2024-06-26T05:43:10.5088380Z adding 'torch/include/ATen/ops/set_data.h' 2024-06-26T05:43:10.5089570Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5090310Z adding 'torch/include/ATen/ops/set_data_native.h' 2024-06-26T05:43:10.5091420Z adding 'torch/include/ATen/ops/set_data_ops.h' 2024-06-26T05:43:10.5092290Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2024-06-26T05:43:10.5093150Z adding 'torch/include/ATen/ops/set_mps_dispatch.h' 2024-06-26T05:43:10.5094260Z adding 'torch/include/ATen/ops/set_native.h' 2024-06-26T05:43:10.5095800Z adding 'torch/include/ATen/ops/set_ops.h' 2024-06-26T05:43:10.5100320Z adding 'torch/include/ATen/ops/sgn.h' 2024-06-26T05:43:10.5100760Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5101610Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2024-06-26T05:43:10.5101770Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2024-06-26T05:43:10.5101890Z adding 'torch/include/ATen/ops/sgn_meta.h' 2024-06-26T05:43:10.5102110Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2024-06-26T05:43:10.5102260Z adding 'torch/include/ATen/ops/sgn_mps_dispatch.h' 2024-06-26T05:43:10.5102710Z adding 'torch/include/ATen/ops/sgn_native.h' 2024-06-26T05:43:10.5104980Z adding 'torch/include/ATen/ops/sgn_ops.h' 2024-06-26T05:43:10.5105120Z adding 'torch/include/ATen/ops/sigmoid.h' 2024-06-26T05:43:10.5105660Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2024-06-26T05:43:10.5107040Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5107490Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2024-06-26T05:43:10.5108780Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2024-06-26T05:43:10.5109170Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2024-06-26T05:43:10.5110390Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2024-06-26T05:43:10.5110980Z adding 'torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h' 2024-06-26T05:43:10.5112120Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2024-06-26T05:43:10.5112970Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2024-06-26T05:43:10.5114400Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5114680Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2024-06-26T05:43:10.5115830Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2024-06-26T05:43:10.5116650Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2024-06-26T05:43:10.5117540Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2024-06-26T05:43:10.5118400Z adding 'torch/include/ATen/ops/sigmoid_mps_dispatch.h' 2024-06-26T05:43:10.5119240Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2024-06-26T05:43:10.5120410Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2024-06-26T05:43:10.5121240Z adding 'torch/include/ATen/ops/sign.h' 2024-06-26T05:43:10.5122260Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5122860Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2024-06-26T05:43:10.5124030Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2024-06-26T05:43:10.5124530Z adding 'torch/include/ATen/ops/sign_meta.h' 2024-06-26T05:43:10.5125700Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2024-06-26T05:43:10.5126350Z adding 'torch/include/ATen/ops/sign_mps_dispatch.h' 2024-06-26T05:43:10.5127590Z adding 'torch/include/ATen/ops/sign_native.h' 2024-06-26T05:43:10.5128430Z adding 'torch/include/ATen/ops/sign_ops.h' 2024-06-26T05:43:10.5129270Z adding 'torch/include/ATen/ops/signbit.h' 2024-06-26T05:43:10.5130610Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5130910Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2024-06-26T05:43:10.5132030Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2024-06-26T05:43:10.5132710Z adding 'torch/include/ATen/ops/signbit_meta.h' 2024-06-26T05:43:10.5133650Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2024-06-26T05:43:10.5134510Z adding 'torch/include/ATen/ops/signbit_mps_dispatch.h' 2024-06-26T05:43:10.5135360Z adding 'torch/include/ATen/ops/signbit_native.h' 2024-06-26T05:43:10.5136510Z adding 'torch/include/ATen/ops/signbit_ops.h' 2024-06-26T05:43:10.5137340Z adding 'torch/include/ATen/ops/silu.h' 2024-06-26T05:43:10.5138510Z adding 'torch/include/ATen/ops/silu_backward.h' 2024-06-26T05:43:10.5139360Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5140530Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5140930Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2024-06-26T05:43:10.5142080Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2024-06-26T05:43:10.5142660Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2024-06-26T05:43:10.5144070Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2024-06-26T05:43:10.5144630Z adding 'torch/include/ATen/ops/silu_backward_mps_dispatch.h' 2024-06-26T05:43:10.5147050Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2024-06-26T05:43:10.5147450Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2024-06-26T05:43:10.5147990Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5148520Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2024-06-26T05:43:10.5149240Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2024-06-26T05:43:10.5149880Z adding 'torch/include/ATen/ops/silu_meta.h' 2024-06-26T05:43:10.5151190Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2024-06-26T05:43:10.5151620Z adding 'torch/include/ATen/ops/silu_mps_dispatch.h' 2024-06-26T05:43:10.5152810Z adding 'torch/include/ATen/ops/silu_native.h' 2024-06-26T05:43:10.5153540Z adding 'torch/include/ATen/ops/silu_ops.h' 2024-06-26T05:43:10.5154750Z adding 'torch/include/ATen/ops/sin.h' 2024-06-26T05:43:10.5155550Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5156260Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2024-06-26T05:43:10.5157490Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2024-06-26T05:43:10.5157930Z adding 'torch/include/ATen/ops/sin_meta.h' 2024-06-26T05:43:10.5159120Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2024-06-26T05:43:10.5159610Z adding 'torch/include/ATen/ops/sin_mps_dispatch.h' 2024-06-26T05:43:10.5160810Z adding 'torch/include/ATen/ops/sin_native.h' 2024-06-26T05:43:10.5161480Z adding 'torch/include/ATen/ops/sin_ops.h' 2024-06-26T05:43:10.5162830Z adding 'torch/include/ATen/ops/sinc.h' 2024-06-26T05:43:10.5163560Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5164310Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2024-06-26T05:43:10.5165560Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2024-06-26T05:43:10.5166100Z adding 'torch/include/ATen/ops/sinc_meta.h' 2024-06-26T05:43:10.5166910Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2024-06-26T05:43:10.5167820Z adding 'torch/include/ATen/ops/sinc_native.h' 2024-06-26T05:43:10.5168830Z adding 'torch/include/ATen/ops/sinc_ops.h' 2024-06-26T05:43:10.5170040Z adding 'torch/include/ATen/ops/sinh.h' 2024-06-26T05:43:10.5170770Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5171450Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2024-06-26T05:43:10.5172700Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2024-06-26T05:43:10.5173080Z adding 'torch/include/ATen/ops/sinh_meta.h' 2024-06-26T05:43:10.5174270Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2024-06-26T05:43:10.5174780Z adding 'torch/include/ATen/ops/sinh_mps_dispatch.h' 2024-06-26T05:43:10.5175980Z adding 'torch/include/ATen/ops/sinh_native.h' 2024-06-26T05:43:10.5176630Z adding 'torch/include/ATen/ops/sinh_ops.h' 2024-06-26T05:43:10.5177890Z adding 'torch/include/ATen/ops/size.h' 2024-06-26T05:43:10.5178530Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5179290Z adding 'torch/include/ATen/ops/size_native.h' 2024-06-26T05:43:10.5180560Z adding 'torch/include/ATen/ops/size_ops.h' 2024-06-26T05:43:10.5181730Z adding 'torch/include/ATen/ops/slice.h' 2024-06-26T05:43:10.5182940Z adding 'torch/include/ATen/ops/slice_backward.h' 2024-06-26T05:43:10.5183770Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5184600Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2024-06-26T05:43:10.5185940Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2024-06-26T05:43:10.5186680Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5191270Z adding 'torch/include/ATen/ops/slice_copy.h' 2024-06-26T05:43:10.5191750Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5192490Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5193030Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2024-06-26T05:43:10.5193390Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2024-06-26T05:43:10.5193750Z adding 'torch/include/ATen/ops/slice_inverse.h' 2024-06-26T05:43:10.5194240Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5194750Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2024-06-26T05:43:10.5195330Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2024-06-26T05:43:10.5196400Z adding 'torch/include/ATen/ops/slice_native.h' 2024-06-26T05:43:10.5197640Z adding 'torch/include/ATen/ops/slice_ops.h' 2024-06-26T05:43:10.5198700Z adding 'torch/include/ATen/ops/slice_scatter.h' 2024-06-26T05:43:10.5200040Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5200850Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5201520Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2024-06-26T05:43:10.5202840Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2024-06-26T05:43:10.5203520Z adding 'torch/include/ATen/ops/slogdet.h' 2024-06-26T05:43:10.5204930Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5205530Z adding 'torch/include/ATen/ops/slogdet_native.h' 2024-06-26T05:43:10.5206710Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2024-06-26T05:43:10.5207900Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2024-06-26T05:43:10.5208760Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5210110Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2024-06-26T05:43:10.5210910Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2024-06-26T05:43:10.5211800Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2024-06-26T05:43:10.5213100Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2024-06-26T05:43:10.5213720Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2024-06-26T05:43:10.5215030Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2024-06-26T05:43:10.5216360Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2024-06-26T05:43:10.5217320Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5218200Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2024-06-26T05:43:10.5219540Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2024-06-26T05:43:10.5220040Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2024-06-26T05:43:10.5221390Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2024-06-26T05:43:10.5222670Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2024-06-26T05:43:10.5223550Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5227820Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2024-06-26T05:43:10.5228480Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2024-06-26T05:43:10.5229310Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2024-06-26T05:43:10.5230600Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2024-06-26T05:43:10.5231930Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2024-06-26T05:43:10.5232870Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5233830Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2024-06-26T05:43:10.5235190Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2024-06-26T05:43:10.5235710Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2024-06-26T05:43:10.5237020Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2024-06-26T05:43:10.5237650Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2024-06-26T05:43:10.5238990Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2024-06-26T05:43:10.5240300Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2024-06-26T05:43:10.5241090Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2024-06-26T05:43:10.5242440Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2024-06-26T05:43:10.5242950Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2024-06-26T05:43:10.5244330Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2024-06-26T05:43:10.5245040Z adding 'torch/include/ATen/ops/smm.h' 2024-06-26T05:43:10.5246480Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5247030Z adding 'torch/include/ATen/ops/smm_native.h' 2024-06-26T05:43:10.5248300Z adding 'torch/include/ATen/ops/smm_ops.h' 2024-06-26T05:43:10.5249490Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2024-06-26T05:43:10.5250130Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2024-06-26T05:43:10.5251620Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5252330Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2024-06-26T05:43:10.5253090Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2024-06-26T05:43:10.5253980Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h' 2024-06-26T05:43:10.5254850Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2024-06-26T05:43:10.5256160Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2024-06-26T05:43:10.5256920Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5257680Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2024-06-26T05:43:10.5258990Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2024-06-26T05:43:10.5259450Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2024-06-26T05:43:10.5262790Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2024-06-26T05:43:10.5263250Z adding 'torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h' 2024-06-26T05:43:10.5263670Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2024-06-26T05:43:10.5264060Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2024-06-26T05:43:10.5264430Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2024-06-26T05:43:10.5265700Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2024-06-26T05:43:10.5266430Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5267250Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2024-06-26T05:43:10.5268570Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2024-06-26T05:43:10.5269330Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5270150Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2024-06-26T05:43:10.5271410Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2024-06-26T05:43:10.5272110Z adding 'torch/include/ATen/ops/softmax.h' 2024-06-26T05:43:10.5273470Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5274180Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5274900Z adding 'torch/include/ATen/ops/softmax_native.h' 2024-06-26T05:43:10.5279080Z adding 'torch/include/ATen/ops/softmax_ops.h' 2024-06-26T05:43:10.5279410Z adding 'torch/include/ATen/ops/softplus.h' 2024-06-26T05:43:10.5279800Z adding 'torch/include/ATen/ops/softplus_backward.h' 2024-06-26T05:43:10.5280390Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5281020Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2024-06-26T05:43:10.5281490Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2024-06-26T05:43:10.5282130Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2024-06-26T05:43:10.5282890Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2024-06-26T05:43:10.5283780Z adding 'torch/include/ATen/ops/softplus_backward_mps_dispatch.h' 2024-06-26T05:43:10.5284960Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2024-06-26T05:43:10.5285680Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2024-06-26T05:43:10.5287130Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5287690Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2024-06-26T05:43:10.5288430Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2024-06-26T05:43:10.5289520Z adding 'torch/include/ATen/ops/softplus_meta.h' 2024-06-26T05:43:10.5290150Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2024-06-26T05:43:10.5291170Z adding 'torch/include/ATen/ops/softplus_mps_dispatch.h' 2024-06-26T05:43:10.5291870Z adding 'torch/include/ATen/ops/softplus_native.h' 2024-06-26T05:43:10.5293190Z adding 'torch/include/ATen/ops/softplus_ops.h' 2024-06-26T05:43:10.5293880Z adding 'torch/include/ATen/ops/softshrink.h' 2024-06-26T05:43:10.5295190Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2024-06-26T05:43:10.5296130Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5296920Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2024-06-26T05:43:10.5297730Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2024-06-26T05:43:10.5298580Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2024-06-26T05:43:10.5299760Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2024-06-26T05:43:10.5300280Z adding 'torch/include/ATen/ops/softshrink_backward_mps_dispatch.h' 2024-06-26T05:43:10.5301190Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2024-06-26T05:43:10.5302520Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2024-06-26T05:43:10.5303350Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5304090Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2024-06-26T05:43:10.5305360Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2024-06-26T05:43:10.5305780Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2024-06-26T05:43:10.5307020Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2024-06-26T05:43:10.5307510Z adding 'torch/include/ATen/ops/softshrink_mps_dispatch.h' 2024-06-26T05:43:10.5308740Z adding 'torch/include/ATen/ops/softshrink_native.h' 2024-06-26T05:43:10.5309390Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2024-06-26T05:43:10.5310810Z adding 'torch/include/ATen/ops/sort.h' 2024-06-26T05:43:10.5311660Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5312610Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5313500Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5314320Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2024-06-26T05:43:10.5315550Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2024-06-26T05:43:10.5316050Z adding 'torch/include/ATen/ops/sort_meta.h' 2024-06-26T05:43:10.5317250Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2024-06-26T05:43:10.5317770Z adding 'torch/include/ATen/ops/sort_mps_dispatch.h' 2024-06-26T05:43:10.5319040Z adding 'torch/include/ATen/ops/sort_native.h' 2024-06-26T05:43:10.5320350Z adding 'torch/include/ATen/ops/sort_ops.h' 2024-06-26T05:43:10.5321580Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2024-06-26T05:43:10.5322310Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5323100Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2024-06-26T05:43:10.5324430Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2024-06-26T05:43:10.5325200Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2024-06-26T05:43:10.5326570Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5327220Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2024-06-26T05:43:10.5328480Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2024-06-26T05:43:10.5329730Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2024-06-26T05:43:10.5330560Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5331360Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2024-06-26T05:43:10.5332690Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2024-06-26T05:43:10.5333950Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2024-06-26T05:43:10.5334680Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5335600Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5336400Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2024-06-26T05:43:10.5337840Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2024-06-26T05:43:10.5338610Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2024-06-26T05:43:10.5340010Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5340670Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2024-06-26T05:43:10.5341920Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2024-06-26T05:43:10.5342550Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2024-06-26T05:43:10.5343980Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5344520Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2024-06-26T05:43:10.5345740Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2024-06-26T05:43:10.5346270Z adding 'torch/include/ATen/ops/sparse_dim.h' 2024-06-26T05:43:10.5347440Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5348050Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2024-06-26T05:43:10.5349270Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2024-06-26T05:43:10.5349880Z adding 'torch/include/ATen/ops/sparse_mask.h' 2024-06-26T05:43:10.5351320Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5351810Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2024-06-26T05:43:10.5352900Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2024-06-26T05:43:10.5353590Z adding 'torch/include/ATen/ops/sparse_resize.h' 2024-06-26T05:43:10.5354890Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2024-06-26T05:43:10.5355650Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5360680Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2024-06-26T05:43:10.5361190Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2024-06-26T05:43:10.5361700Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2024-06-26T05:43:10.5362260Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5362790Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2024-06-26T05:43:10.5363210Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2024-06-26T05:43:10.5363600Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2024-06-26T05:43:10.5363990Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2024-06-26T05:43:10.5364440Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2024-06-26T05:43:10.5365000Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2024-06-26T05:43:10.5365750Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2024-06-26T05:43:10.5367160Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5367930Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2024-06-26T05:43:10.5368510Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2024-06-26T05:43:10.5369320Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2024-06-26T05:43:10.5370630Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2024-06-26T05:43:10.5371070Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2024-06-26T05:43:10.5372050Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2024-06-26T05:43:10.5373140Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2024-06-26T05:43:10.5374040Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5374770Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2024-06-26T05:43:10.5375630Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2024-06-26T05:43:10.5376460Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2024-06-26T05:43:10.5377750Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2024-06-26T05:43:10.5378260Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2024-06-26T05:43:10.5379220Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2024-06-26T05:43:10.5380490Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2024-06-26T05:43:10.5381110Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5381830Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2024-06-26T05:43:10.5382670Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2024-06-26T05:43:10.5383490Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2024-06-26T05:43:10.5384780Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2024-06-26T05:43:10.5385240Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2024-06-26T05:43:10.5387000Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2024-06-26T05:43:10.5387390Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2024-06-26T05:43:10.5388200Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5388940Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2024-06-26T05:43:10.5389700Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2024-06-26T05:43:10.5390520Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2024-06-26T05:43:10.5391810Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2024-06-26T05:43:10.5392290Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2024-06-26T05:43:10.5393530Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2024-06-26T05:43:10.5394110Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2024-06-26T05:43:10.5395320Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5396050Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2024-06-26T05:43:10.5396740Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2024-06-26T05:43:10.5397570Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2024-06-26T05:43:10.5398460Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2024-06-26T05:43:10.5399280Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2024-06-26T05:43:10.5400530Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2024-06-26T05:43:10.5401310Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2024-06-26T05:43:10.5402820Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5403750Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5404470Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2024-06-26T05:43:10.5405160Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2024-06-26T05:43:10.5405940Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2024-06-26T05:43:10.5406830Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2024-06-26T05:43:10.5407710Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2024-06-26T05:43:10.5409120Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2024-06-26T05:43:10.5409870Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2024-06-26T05:43:10.5411330Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5412140Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5413050Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2024-06-26T05:43:10.5413630Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2024-06-26T05:43:10.5414300Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2024-06-26T05:43:10.5415150Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2024-06-26T05:43:10.5416020Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2024-06-26T05:43:10.5417440Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2024-06-26T05:43:10.5418170Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2024-06-26T05:43:10.5419630Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5420450Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5421190Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2024-06-26T05:43:10.5421870Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2024-06-26T05:43:10.5422660Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2024-06-26T05:43:10.5423530Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2024-06-26T05:43:10.5424410Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2024-06-26T05:43:10.5425790Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2024-06-26T05:43:10.5426550Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2024-06-26T05:43:10.5428010Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5428820Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5429700Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2024-06-26T05:43:10.5430290Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2024-06-26T05:43:10.5430960Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2024-06-26T05:43:10.5431830Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2024-06-26T05:43:10.5432700Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2024-06-26T05:43:10.5436720Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2024-06-26T05:43:10.5437170Z adding 'torch/include/ATen/ops/special_digamma.h' 2024-06-26T05:43:10.5437680Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5438210Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2024-06-26T05:43:10.5438610Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2024-06-26T05:43:10.5439010Z adding 'torch/include/ATen/ops/special_entr.h' 2024-06-26T05:43:10.5439560Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5440190Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2024-06-26T05:43:10.5440910Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2024-06-26T05:43:10.5441970Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2024-06-26T05:43:10.5442590Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2024-06-26T05:43:10.5444050Z adding 'torch/include/ATen/ops/special_entr_native.h' 2024-06-26T05:43:10.5444730Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2024-06-26T05:43:10.5445960Z adding 'torch/include/ATen/ops/special_erf.h' 2024-06-26T05:43:10.5446680Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5447390Z adding 'torch/include/ATen/ops/special_erf_native.h' 2024-06-26T05:43:10.5448610Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2024-06-26T05:43:10.5449220Z adding 'torch/include/ATen/ops/special_erfc.h' 2024-06-26T05:43:10.5450670Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5451170Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2024-06-26T05:43:10.5452140Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2024-06-26T05:43:10.5452810Z adding 'torch/include/ATen/ops/special_erfcx.h' 2024-06-26T05:43:10.5454300Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5454940Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2024-06-26T05:43:10.5455740Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2024-06-26T05:43:10.5456320Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2024-06-26T05:43:10.5457370Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2024-06-26T05:43:10.5458050Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2024-06-26T05:43:10.5459280Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2024-06-26T05:43:10.5459870Z adding 'torch/include/ATen/ops/special_erfinv.h' 2024-06-26T05:43:10.5461020Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5461650Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2024-06-26T05:43:10.5462890Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2024-06-26T05:43:10.5463410Z adding 'torch/include/ATen/ops/special_exp2.h' 2024-06-26T05:43:10.5464740Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5465250Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2024-06-26T05:43:10.5466510Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2024-06-26T05:43:10.5467040Z adding 'torch/include/ATen/ops/special_expit.h' 2024-06-26T05:43:10.5468380Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5468900Z adding 'torch/include/ATen/ops/special_expit_native.h' 2024-06-26T05:43:10.5469930Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2024-06-26T05:43:10.5470590Z adding 'torch/include/ATen/ops/special_expm1.h' 2024-06-26T05:43:10.5471920Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5472440Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2024-06-26T05:43:10.5473460Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2024-06-26T05:43:10.5474170Z adding 'torch/include/ATen/ops/special_gammainc.h' 2024-06-26T05:43:10.5475600Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5476130Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2024-06-26T05:43:10.5477120Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2024-06-26T05:43:10.5477810Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2024-06-26T05:43:10.5479220Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5479770Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2024-06-26T05:43:10.5480770Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2024-06-26T05:43:10.5481420Z adding 'torch/include/ATen/ops/special_gammaln.h' 2024-06-26T05:43:10.5482770Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5483330Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2024-06-26T05:43:10.5484300Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2024-06-26T05:43:10.5485580Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2024-06-26T05:43:10.5486250Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5487220Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5488030Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2024-06-26T05:43:10.5488830Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2024-06-26T05:43:10.5489670Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2024-06-26T05:43:10.5490560Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2024-06-26T05:43:10.5491430Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2024-06-26T05:43:10.5492840Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2024-06-26T05:43:10.5493600Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2024-06-26T05:43:10.5495090Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5495900Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5496810Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2024-06-26T05:43:10.5497500Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2024-06-26T05:43:10.5498150Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2024-06-26T05:43:10.5498920Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2024-06-26T05:43:10.5499790Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2024-06-26T05:43:10.5501190Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2024-06-26T05:43:10.5501780Z adding 'torch/include/ATen/ops/special_i0.h' 2024-06-26T05:43:10.5503180Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5503770Z adding 'torch/include/ATen/ops/special_i0_native.h' 2024-06-26T05:43:10.5504980Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2024-06-26T05:43:10.5505550Z adding 'torch/include/ATen/ops/special_i0e.h' 2024-06-26T05:43:10.5506940Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5507520Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2024-06-26T05:43:10.5508230Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2024-06-26T05:43:10.5509340Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2024-06-26T05:43:10.5513720Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2024-06-26T05:43:10.5514200Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2024-06-26T05:43:10.5514620Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2024-06-26T05:43:10.5514960Z adding 'torch/include/ATen/ops/special_i1.h' 2024-06-26T05:43:10.5515500Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5516070Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2024-06-26T05:43:10.5516490Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2024-06-26T05:43:10.5516880Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2024-06-26T05:43:10.5517280Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2024-06-26T05:43:10.5517970Z adding 'torch/include/ATen/ops/special_i1_native.h' 2024-06-26T05:43:10.5518630Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2024-06-26T05:43:10.5519830Z adding 'torch/include/ATen/ops/special_i1e.h' 2024-06-26T05:43:10.5520580Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5521290Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2024-06-26T05:43:10.5522140Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2024-06-26T05:43:10.5522970Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2024-06-26T05:43:10.5524220Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2024-06-26T05:43:10.5524650Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2024-06-26T05:43:10.5525900Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2024-06-26T05:43:10.5526660Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2024-06-26T05:43:10.5528120Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5528920Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5529870Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2024-06-26T05:43:10.5530610Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2024-06-26T05:43:10.5531290Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2024-06-26T05:43:10.5532010Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2024-06-26T05:43:10.5532930Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2024-06-26T05:43:10.5534290Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2024-06-26T05:43:10.5535040Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2024-06-26T05:43:10.5536500Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5537300Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5538190Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2024-06-26T05:43:10.5538780Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2024-06-26T05:43:10.5539460Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2024-06-26T05:43:10.5540340Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2024-06-26T05:43:10.5541230Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2024-06-26T05:43:10.5542640Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2024-06-26T05:43:10.5543220Z adding 'torch/include/ATen/ops/special_log1p.h' 2024-06-26T05:43:10.5544640Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5545160Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2024-06-26T05:43:10.5546170Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2024-06-26T05:43:10.5546840Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2024-06-26T05:43:10.5548340Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5548950Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2024-06-26T05:43:10.5549730Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2024-06-26T05:43:10.5550350Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2024-06-26T05:43:10.5551380Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2024-06-26T05:43:10.5552060Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2024-06-26T05:43:10.5553310Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2024-06-26T05:43:10.5553900Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2024-06-26T05:43:10.5555280Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5555890Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2024-06-26T05:43:10.5556650Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2024-06-26T05:43:10.5557890Z adding 'torch/include/ATen/ops/special_logit.h' 2024-06-26T05:43:10.5558540Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5559310Z adding 'torch/include/ATen/ops/special_logit_native.h' 2024-06-26T05:43:10.5560550Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2024-06-26T05:43:10.5561210Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2024-06-26T05:43:10.5562620Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5563170Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2024-06-26T05:43:10.5564140Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2024-06-26T05:43:10.5565410Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2024-06-26T05:43:10.5566090Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5566870Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2024-06-26T05:43:10.5567720Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2024-06-26T05:43:10.5568550Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2024-06-26T05:43:10.5569430Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2024-06-26T05:43:10.5570270Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2024-06-26T05:43:10.5571630Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2024-06-26T05:43:10.5572120Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2024-06-26T05:43:10.5573600Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5574290Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2024-06-26T05:43:10.5574970Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2024-06-26T05:43:10.5575610Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2024-06-26T05:43:10.5576430Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2024-06-26T05:43:10.5577270Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2024-06-26T05:43:10.5578610Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2024-06-26T05:43:10.5579090Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2024-06-26T05:43:10.5580630Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5581310Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2024-06-26T05:43:10.5581940Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2024-06-26T05:43:10.5582650Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2024-06-26T05:43:10.5583520Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2024-06-26T05:43:10.5584350Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2024-06-26T05:43:10.5585690Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2024-06-26T05:43:10.5589580Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2024-06-26T05:43:10.5590270Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5590960Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2024-06-26T05:43:10.5591510Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2024-06-26T05:43:10.5592020Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2024-06-26T05:43:10.5592540Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2024-06-26T05:43:10.5593100Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2024-06-26T05:43:10.5593600Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2024-06-26T05:43:10.5594030Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2024-06-26T05:43:10.5594580Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5595150Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2024-06-26T05:43:10.5596150Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2024-06-26T05:43:10.5596750Z adding 'torch/include/ATen/ops/special_ndtr.h' 2024-06-26T05:43:10.5598090Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5598700Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2024-06-26T05:43:10.5599930Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2024-06-26T05:43:10.5600410Z adding 'torch/include/ATen/ops/special_ndtri.h' 2024-06-26T05:43:10.5601810Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5602410Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2024-06-26T05:43:10.5603850Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2024-06-26T05:43:10.5604570Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2024-06-26T05:43:10.5605840Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2024-06-26T05:43:10.5606480Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2024-06-26T05:43:10.5607770Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2024-06-26T05:43:10.5608470Z adding 'torch/include/ATen/ops/special_polygamma.h' 2024-06-26T05:43:10.5609970Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5610520Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2024-06-26T05:43:10.5611320Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2024-06-26T05:43:10.5612530Z adding 'torch/include/ATen/ops/special_psi.h' 2024-06-26T05:43:10.5613300Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5614060Z adding 'torch/include/ATen/ops/special_psi_native.h' 2024-06-26T05:43:10.5615280Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2024-06-26T05:43:10.5616270Z adding 'torch/include/ATen/ops/special_round.h' 2024-06-26T05:43:10.5617410Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5617780Z adding 'torch/include/ATen/ops/special_round_native.h' 2024-06-26T05:43:10.5619010Z adding 'torch/include/ATen/ops/special_round_ops.h' 2024-06-26T05:43:10.5620070Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2024-06-26T05:43:10.5620880Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5622050Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2024-06-26T05:43:10.5622500Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2024-06-26T05:43:10.5623650Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2024-06-26T05:43:10.5624270Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2024-06-26T05:43:10.5626140Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2024-06-26T05:43:10.5626980Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2024-06-26T05:43:10.5628140Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2024-06-26T05:43:10.5628890Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5630000Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2024-06-26T05:43:10.5630470Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2024-06-26T05:43:10.5631580Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2024-06-26T05:43:10.5632240Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2024-06-26T05:43:10.5633200Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2024-06-26T05:43:10.5634350Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2024-06-26T05:43:10.5635220Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2024-06-26T05:43:10.5636530Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5637210Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5638360Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2024-06-26T05:43:10.5638830Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2024-06-26T05:43:10.5639940Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2024-06-26T05:43:10.5640560Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2024-06-26T05:43:10.5641850Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2024-06-26T05:43:10.5643010Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2024-06-26T05:43:10.5643680Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2024-06-26T05:43:10.5645110Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5645720Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5646450Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2024-06-26T05:43:10.5647670Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2024-06-26T05:43:10.5648090Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2024-06-26T05:43:10.5649270Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2024-06-26T05:43:10.5649890Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2024-06-26T05:43:10.5651290Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2024-06-26T05:43:10.5652440Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2024-06-26T05:43:10.5653830Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5654540Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5655300Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2024-06-26T05:43:10.5656440Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2024-06-26T05:43:10.5656910Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2024-06-26T05:43:10.5658080Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2024-06-26T05:43:10.5658710Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2024-06-26T05:43:10.5660190Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2024-06-26T05:43:10.5660900Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2024-06-26T05:43:10.5662230Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5662900Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5663630Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2024-06-26T05:43:10.5664830Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2024-06-26T05:43:10.5665340Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2024-06-26T05:43:10.5666470Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2024-06-26T05:43:10.5667060Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2024-06-26T05:43:10.5668450Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2024-06-26T05:43:10.5669020Z adding 'torch/include/ATen/ops/special_sinc.h' 2024-06-26T05:43:10.5670370Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5670770Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2024-06-26T05:43:10.5672030Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2024-06-26T05:43:10.5673010Z adding 'torch/include/ATen/ops/special_softmax.h' 2024-06-26T05:43:10.5674150Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5674530Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2024-06-26T05:43:10.5675850Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2024-06-26T05:43:10.5676460Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2024-06-26T05:43:10.5677880Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5678300Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2024-06-26T05:43:10.5679400Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2024-06-26T05:43:10.5679980Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2024-06-26T05:43:10.5681020Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2024-06-26T05:43:10.5682130Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2024-06-26T05:43:10.5682730Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2024-06-26T05:43:10.5683980Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2024-06-26T05:43:10.5685120Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5685880Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5686530Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2024-06-26T05:43:10.5687650Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2024-06-26T05:43:10.5688200Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2024-06-26T05:43:10.5689210Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2024-06-26T05:43:10.5690350Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2024-06-26T05:43:10.5691390Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2024-06-26T05:43:10.5692420Z adding 'torch/include/ATen/ops/special_xlogy.h' 2024-06-26T05:43:10.5693550Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5694010Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2024-06-26T05:43:10.5695360Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2024-06-26T05:43:10.5696390Z adding 'torch/include/ATen/ops/special_zeta.h' 2024-06-26T05:43:10.5697380Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5698320Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5698910Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2024-06-26T05:43:10.5700060Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2024-06-26T05:43:10.5700600Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2024-06-26T05:43:10.5701710Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2024-06-26T05:43:10.5702530Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2024-06-26T05:43:10.5703740Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2024-06-26T05:43:10.5704850Z adding 'torch/include/ATen/ops/split.h' 2024-06-26T05:43:10.5705880Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5706570Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5707760Z adding 'torch/include/ATen/ops/split_copy.h' 2024-06-26T05:43:10.5708790Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5709600Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5710610Z adding 'torch/include/ATen/ops/split_copy_native.h' 2024-06-26T05:43:10.5711590Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2024-06-26T05:43:10.5712220Z adding 'torch/include/ATen/ops/split_native.h' 2024-06-26T05:43:10.5716850Z adding 'torch/include/ATen/ops/split_ops.h' 2024-06-26T05:43:10.5717160Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2024-06-26T05:43:10.5717460Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5717620Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2024-06-26T05:43:10.5717930Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5718310Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5719610Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2024-06-26T05:43:10.5719900Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2024-06-26T05:43:10.5721150Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2024-06-26T05:43:10.5721800Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2024-06-26T05:43:10.5723020Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2024-06-26T05:43:10.5723830Z adding 'torch/include/ATen/ops/sqrt.h' 2024-06-26T05:43:10.5724850Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5725430Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2024-06-26T05:43:10.5726610Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2024-06-26T05:43:10.5727080Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2024-06-26T05:43:10.5728260Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2024-06-26T05:43:10.5728920Z adding 'torch/include/ATen/ops/sqrt_mps_dispatch.h' 2024-06-26T05:43:10.5729970Z adding 'torch/include/ATen/ops/sqrt_native.h' 2024-06-26T05:43:10.5730820Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2024-06-26T05:43:10.5731960Z adding 'torch/include/ATen/ops/square.h' 2024-06-26T05:43:10.5732740Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5733570Z adding 'torch/include/ATen/ops/square_native.h' 2024-06-26T05:43:10.5734730Z adding 'torch/include/ATen/ops/square_ops.h' 2024-06-26T05:43:10.5735560Z adding 'torch/include/ATen/ops/squeeze.h' 2024-06-26T05:43:10.5736540Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5737710Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5738220Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2024-06-26T05:43:10.5739630Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5740300Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5741300Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2024-06-26T05:43:10.5742450Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2024-06-26T05:43:10.5743440Z adding 'torch/include/ATen/ops/squeeze_native.h' 2024-06-26T05:43:10.5744460Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2024-06-26T05:43:10.5745310Z adding 'torch/include/ATen/ops/sspaddmm.h' 2024-06-26T05:43:10.5746600Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5746980Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2024-06-26T05:43:10.5748140Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2024-06-26T05:43:10.5749000Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2024-06-26T05:43:10.5750130Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2024-06-26T05:43:10.5750740Z adding 'torch/include/ATen/ops/stack.h' 2024-06-26T05:43:10.5752140Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5752520Z adding 'torch/include/ATen/ops/stack_native.h' 2024-06-26T05:43:10.5753760Z adding 'torch/include/ATen/ops/stack_ops.h' 2024-06-26T05:43:10.5754900Z adding 'torch/include/ATen/ops/std.h' 2024-06-26T05:43:10.5756160Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5756570Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2024-06-26T05:43:10.5757740Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2024-06-26T05:43:10.5758790Z adding 'torch/include/ATen/ops/std_mean.h' 2024-06-26T05:43:10.5759750Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5760920Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5761310Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2024-06-26T05:43:10.5762460Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2024-06-26T05:43:10.5763310Z adding 'torch/include/ATen/ops/std_mean_mps_dispatch.h' 2024-06-26T05:43:10.5764180Z adding 'torch/include/ATen/ops/std_mean_native.h' 2024-06-26T05:43:10.5765490Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2024-06-26T05:43:10.5766350Z adding 'torch/include/ATen/ops/std_mps_dispatch.h' 2024-06-26T05:43:10.5767370Z adding 'torch/include/ATen/ops/std_native.h' 2024-06-26T05:43:10.5768750Z adding 'torch/include/ATen/ops/std_ops.h' 2024-06-26T05:43:10.5769870Z adding 'torch/include/ATen/ops/stft.h' 2024-06-26T05:43:10.5770640Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5771650Z adding 'torch/include/ATen/ops/stft_native.h' 2024-06-26T05:43:10.5772820Z adding 'torch/include/ATen/ops/stft_ops.h' 2024-06-26T05:43:10.5773450Z adding 'torch/include/ATen/ops/stride.h' 2024-06-26T05:43:10.5774810Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5775190Z adding 'torch/include/ATen/ops/stride_native.h' 2024-06-26T05:43:10.5776410Z adding 'torch/include/ATen/ops/stride_ops.h' 2024-06-26T05:43:10.5777370Z adding 'torch/include/ATen/ops/sub.h' 2024-06-26T05:43:10.5778330Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5779550Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5779920Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2024-06-26T05:43:10.5781030Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2024-06-26T05:43:10.5782000Z adding 'torch/include/ATen/ops/sub_meta.h' 2024-06-26T05:43:10.5782470Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2024-06-26T05:43:10.5783600Z adding 'torch/include/ATen/ops/sub_mps_dispatch.h' 2024-06-26T05:43:10.5784570Z adding 'torch/include/ATen/ops/sub_native.h' 2024-06-26T05:43:10.5785600Z adding 'torch/include/ATen/ops/sub_ops.h' 2024-06-26T05:43:10.5786730Z adding 'torch/include/ATen/ops/subtract.h' 2024-06-26T05:43:10.5787690Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5788430Z adding 'torch/include/ATen/ops/subtract_native.h' 2024-06-26T05:43:10.5789660Z adding 'torch/include/ATen/ops/subtract_ops.h' 2024-06-26T05:43:10.5790880Z adding 'torch/include/ATen/ops/sum.h' 2024-06-26T05:43:10.5791470Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5792710Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5793310Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5794480Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2024-06-26T05:43:10.5794980Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2024-06-26T05:43:10.5796160Z adding 'torch/include/ATen/ops/sum_meta.h' 2024-06-26T05:43:10.5796750Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2024-06-26T05:43:10.5797720Z adding 'torch/include/ATen/ops/sum_mps_dispatch.h' 2024-06-26T05:43:10.5798820Z adding 'torch/include/ATen/ops/sum_native.h' 2024-06-26T05:43:10.5800000Z adding 'torch/include/ATen/ops/sum_ops.h' 2024-06-26T05:43:10.5801000Z adding 'torch/include/ATen/ops/sum_to_size.h' 2024-06-26T05:43:10.5801780Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5802640Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2024-06-26T05:43:10.5803800Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2024-06-26T05:43:10.5804600Z adding 'torch/include/ATen/ops/svd.h' 2024-06-26T05:43:10.5805870Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5806290Z adding 'torch/include/ATen/ops/svd_native.h' 2024-06-26T05:43:10.5807540Z adding 'torch/include/ATen/ops/svd_ops.h' 2024-06-26T05:43:10.5808370Z adding 'torch/include/ATen/ops/swapaxes.h' 2024-06-26T05:43:10.5809350Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5810090Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2024-06-26T05:43:10.5811210Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2024-06-26T05:43:10.5812060Z adding 'torch/include/ATen/ops/swapdims.h' 2024-06-26T05:43:10.5813040Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5813610Z adding 'torch/include/ATen/ops/swapdims_native.h' 2024-06-26T05:43:10.5814820Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2024-06-26T05:43:10.5815730Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2024-06-26T05:43:10.5816700Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5817750Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2024-06-26T05:43:10.5818350Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5819410Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2024-06-26T05:43:10.5820260Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2024-06-26T05:43:10.5821100Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2024-06-26T05:43:10.5822240Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2024-06-26T05:43:10.5822660Z adding 'torch/include/ATen/ops/sym_numel.h' 2024-06-26T05:43:10.5823950Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5824440Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2024-06-26T05:43:10.5825600Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2024-06-26T05:43:10.5826580Z adding 'torch/include/ATen/ops/sym_size.h' 2024-06-26T05:43:10.5827190Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5828220Z adding 'torch/include/ATen/ops/sym_size_native.h' 2024-06-26T05:43:10.5829230Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2024-06-26T05:43:10.5829750Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2024-06-26T05:43:10.5831040Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5831530Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2024-06-26T05:43:10.5832680Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2024-06-26T05:43:10.5833270Z adding 'torch/include/ATen/ops/sym_stride.h' 2024-06-26T05:43:10.5834650Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5835020Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2024-06-26T05:43:10.5836200Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2024-06-26T05:43:10.5837160Z adding 'torch/include/ATen/ops/t.h' 2024-06-26T05:43:10.5837740Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5838850Z adding 'torch/include/ATen/ops/t_copy.h' 2024-06-26T05:43:10.5839950Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5840540Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5841530Z adding 'torch/include/ATen/ops/t_copy_native.h' 2024-06-26T05:43:10.5842510Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2024-06-26T05:43:10.5842980Z adding 'torch/include/ATen/ops/t_native.h' 2024-06-26T05:43:10.5844190Z adding 'torch/include/ATen/ops/t_ops.h' 2024-06-26T05:43:10.5845020Z adding 'torch/include/ATen/ops/take.h' 2024-06-26T05:43:10.5846180Z adding 'torch/include/ATen/ops/take_along_dim.h' 2024-06-26T05:43:10.5846890Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5847930Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2024-06-26T05:43:10.5848790Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2024-06-26T05:43:10.5849650Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2024-06-26T05:43:10.5850640Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2024-06-26T05:43:10.5851220Z adding 'torch/include/ATen/ops/take_native.h' 2024-06-26T05:43:10.5852420Z adding 'torch/include/ATen/ops/take_ops.h' 2024-06-26T05:43:10.5853240Z adding 'torch/include/ATen/ops/tan.h' 2024-06-26T05:43:10.5854270Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5854970Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2024-06-26T05:43:10.5856040Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2024-06-26T05:43:10.5857010Z adding 'torch/include/ATen/ops/tan_meta.h' 2024-06-26T05:43:10.5857510Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2024-06-26T05:43:10.5858620Z adding 'torch/include/ATen/ops/tan_mps_dispatch.h' 2024-06-26T05:43:10.5859470Z adding 'torch/include/ATen/ops/tan_native.h' 2024-06-26T05:43:10.5860640Z adding 'torch/include/ATen/ops/tan_ops.h' 2024-06-26T05:43:10.5861100Z adding 'torch/include/ATen/ops/tanh.h' 2024-06-26T05:43:10.5862370Z adding 'torch/include/ATen/ops/tanh_backward.h' 2024-06-26T05:43:10.5863570Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5863950Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2024-06-26T05:43:10.5865080Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2024-06-26T05:43:10.5868910Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2024-06-26T05:43:10.5869250Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2024-06-26T05:43:10.5869440Z adding 'torch/include/ATen/ops/tanh_backward_mps_dispatch.h' 2024-06-26T05:43:10.5869600Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2024-06-26T05:43:10.5869750Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2024-06-26T05:43:10.5870860Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5871270Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2024-06-26T05:43:10.5872360Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2024-06-26T05:43:10.5873190Z adding 'torch/include/ATen/ops/tanh_meta.h' 2024-06-26T05:43:10.5874060Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2024-06-26T05:43:10.5874910Z adding 'torch/include/ATen/ops/tanh_mps_dispatch.h' 2024-06-26T05:43:10.5875930Z adding 'torch/include/ATen/ops/tanh_native.h' 2024-06-26T05:43:10.5876780Z adding 'torch/include/ATen/ops/tanh_ops.h' 2024-06-26T05:43:10.5877940Z adding 'torch/include/ATen/ops/tensor.h' 2024-06-26T05:43:10.5878780Z adding 'torch/include/ATen/ops/tensor_split.h' 2024-06-26T05:43:10.5880120Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5880570Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2024-06-26T05:43:10.5881860Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2024-06-26T05:43:10.5882830Z adding 'torch/include/ATen/ops/tensordot.h' 2024-06-26T05:43:10.5883850Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5884350Z adding 'torch/include/ATen/ops/tensordot_native.h' 2024-06-26T05:43:10.5885620Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2024-06-26T05:43:10.5886860Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2024-06-26T05:43:10.5887850Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5888890Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2024-06-26T05:43:10.5889740Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2024-06-26T05:43:10.5890760Z adding 'torch/include/ATen/ops/threshold.h' 2024-06-26T05:43:10.5891620Z adding 'torch/include/ATen/ops/threshold_backward.h' 2024-06-26T05:43:10.5892700Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5893760Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2024-06-26T05:43:10.5894200Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2024-06-26T05:43:10.5895340Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2024-06-26T05:43:10.5895990Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2024-06-26T05:43:10.5896950Z adding 'torch/include/ATen/ops/threshold_backward_mps_dispatch.h' 2024-06-26T05:43:10.5898100Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2024-06-26T05:43:10.5898940Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2024-06-26T05:43:10.5900590Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5901830Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2024-06-26T05:43:10.5903030Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2024-06-26T05:43:10.5903630Z adding 'torch/include/ATen/ops/threshold_meta.h' 2024-06-26T05:43:10.5904880Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2024-06-26T05:43:10.5905740Z adding 'torch/include/ATen/ops/threshold_mps_dispatch.h' 2024-06-26T05:43:10.5906890Z adding 'torch/include/ATen/ops/threshold_native.h' 2024-06-26T05:43:10.5908020Z adding 'torch/include/ATen/ops/threshold_ops.h' 2024-06-26T05:43:10.5909150Z adding 'torch/include/ATen/ops/tile.h' 2024-06-26T05:43:10.5910110Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5910850Z adding 'torch/include/ATen/ops/tile_native.h' 2024-06-26T05:43:10.5912030Z adding 'torch/include/ATen/ops/tile_ops.h' 2024-06-26T05:43:10.5912860Z adding 'torch/include/ATen/ops/to.h' 2024-06-26T05:43:10.5914130Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5914690Z adding 'torch/include/ATen/ops/to_dense.h' 2024-06-26T05:43:10.5915940Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2024-06-26T05:43:10.5917100Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5917700Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2024-06-26T05:43:10.5918970Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2024-06-26T05:43:10.5919920Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5920980Z adding 'torch/include/ATen/ops/to_dense_native.h' 2024-06-26T05:43:10.5921970Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2024-06-26T05:43:10.5922830Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2024-06-26T05:43:10.5924000Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2024-06-26T05:43:10.5925010Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5925630Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2024-06-26T05:43:10.5926890Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2024-06-26T05:43:10.5927840Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5928910Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2024-06-26T05:43:10.5929750Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2024-06-26T05:43:10.5930880Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2024-06-26T05:43:10.5931680Z adding 'torch/include/ATen/ops/to_native.h' 2024-06-26T05:43:10.5933070Z adding 'torch/include/ATen/ops/to_ops.h' 2024-06-26T05:43:10.5934300Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2024-06-26T05:43:10.5935470Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5936100Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2024-06-26T05:43:10.5937420Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2024-06-26T05:43:10.5938260Z adding 'torch/include/ATen/ops/to_sparse.h' 2024-06-26T05:43:10.5939110Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2024-06-26T05:43:10.5940420Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5940950Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2024-06-26T05:43:10.5942250Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2024-06-26T05:43:10.5943090Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2024-06-26T05:43:10.5944130Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5944730Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2024-06-26T05:43:10.5945970Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2024-06-26T05:43:10.5947080Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5947580Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2024-06-26T05:43:10.5948990Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5949550Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2024-06-26T05:43:10.5950780Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2024-06-26T05:43:10.5951760Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2024-06-26T05:43:10.5952500Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5953550Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2024-06-26T05:43:10.5954400Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2024-06-26T05:43:10.5955460Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2024-06-26T05:43:10.5956520Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2024-06-26T05:43:10.5957710Z adding 'torch/include/ATen/ops/topk.h' 2024-06-26T05:43:10.5959030Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5959530Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2024-06-26T05:43:10.5960770Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2024-06-26T05:43:10.5961600Z adding 'torch/include/ATen/ops/topk_meta.h' 2024-06-26T05:43:10.5962780Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2024-06-26T05:43:10.5963630Z adding 'torch/include/ATen/ops/topk_mps_dispatch.h' 2024-06-26T05:43:10.5964610Z adding 'torch/include/ATen/ops/topk_native.h' 2024-06-26T05:43:10.5965760Z adding 'torch/include/ATen/ops/topk_ops.h' 2024-06-26T05:43:10.5966580Z adding 'torch/include/ATen/ops/trace.h' 2024-06-26T05:43:10.5967740Z adding 'torch/include/ATen/ops/trace_backward.h' 2024-06-26T05:43:10.5968880Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5969430Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2024-06-26T05:43:10.5970540Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2024-06-26T05:43:10.5971800Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5972330Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2024-06-26T05:43:10.5973590Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2024-06-26T05:43:10.5974090Z adding 'torch/include/ATen/ops/trace_mps_dispatch.h' 2024-06-26T05:43:10.5975300Z adding 'torch/include/ATen/ops/trace_native.h' 2024-06-26T05:43:10.5976460Z adding 'torch/include/ATen/ops/trace_ops.h' 2024-06-26T05:43:10.5977140Z adding 'torch/include/ATen/ops/transpose.h' 2024-06-26T05:43:10.5978530Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5979120Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5980250Z adding 'torch/include/ATen/ops/transpose_copy.h' 2024-06-26T05:43:10.5981390Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.5982120Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5983200Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2024-06-26T05:43:10.5984050Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2024-06-26T05:43:10.5985220Z adding 'torch/include/ATen/ops/transpose_native.h' 2024-06-26T05:43:10.5986320Z adding 'torch/include/ATen/ops/transpose_ops.h' 2024-06-26T05:43:10.5986950Z adding 'torch/include/ATen/ops/trapezoid.h' 2024-06-26T05:43:10.5988300Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5988840Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2024-06-26T05:43:10.5990130Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2024-06-26T05:43:10.5990970Z adding 'torch/include/ATen/ops/trapz.h' 2024-06-26T05:43:10.5992350Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.5992650Z adding 'torch/include/ATen/ops/trapz_native.h' 2024-06-26T05:43:10.5993950Z adding 'torch/include/ATen/ops/trapz_ops.h' 2024-06-26T05:43:10.5995130Z adding 'torch/include/ATen/ops/triangular_solve.h' 2024-06-26T05:43:10.5996330Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.5996840Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2024-06-26T05:43:10.5998060Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2024-06-26T05:43:10.5998880Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2024-06-26T05:43:10.5999810Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2024-06-26T05:43:10.6000980Z adding 'torch/include/ATen/ops/triangular_solve_mps_dispatch.h' 2024-06-26T05:43:10.6001580Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2024-06-26T05:43:10.6002920Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2024-06-26T05:43:10.6003740Z adding 'torch/include/ATen/ops/tril.h' 2024-06-26T05:43:10.6005060Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6005550Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2024-06-26T05:43:10.6006810Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2024-06-26T05:43:10.6007960Z adding 'torch/include/ATen/ops/tril_indices.h' 2024-06-26T05:43:10.6008940Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6010010Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2024-06-26T05:43:10.6010610Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2024-06-26T05:43:10.6011790Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2024-06-26T05:43:10.6012950Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2024-06-26T05:43:10.6013930Z adding 'torch/include/ATen/ops/tril_meta.h' 2024-06-26T05:43:10.6014790Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2024-06-26T05:43:10.6015790Z adding 'torch/include/ATen/ops/tril_mps_dispatch.h' 2024-06-26T05:43:10.6016780Z adding 'torch/include/ATen/ops/tril_native.h' 2024-06-26T05:43:10.6017950Z adding 'torch/include/ATen/ops/tril_ops.h' 2024-06-26T05:43:10.6018820Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2024-06-26T05:43:10.6020000Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6020570Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2024-06-26T05:43:10.6021870Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2024-06-26T05:43:10.6022670Z adding 'torch/include/ATen/ops/triu.h' 2024-06-26T05:43:10.6024020Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6024490Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2024-06-26T05:43:10.6025760Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2024-06-26T05:43:10.6026600Z adding 'torch/include/ATen/ops/triu_indices.h' 2024-06-26T05:43:10.6031180Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6031540Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2024-06-26T05:43:10.6031740Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2024-06-26T05:43:10.6031890Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2024-06-26T05:43:10.6032050Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2024-06-26T05:43:10.6032790Z adding 'torch/include/ATen/ops/triu_meta.h' 2024-06-26T05:43:10.6033970Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2024-06-26T05:43:10.6034180Z adding 'torch/include/ATen/ops/triu_mps_dispatch.h' 2024-06-26T05:43:10.6035020Z adding 'torch/include/ATen/ops/triu_native.h' 2024-06-26T05:43:10.6036370Z adding 'torch/include/ATen/ops/triu_ops.h' 2024-06-26T05:43:10.6037280Z adding 'torch/include/ATen/ops/true_divide.h' 2024-06-26T05:43:10.6038580Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6039080Z adding 'torch/include/ATen/ops/true_divide_native.h' 2024-06-26T05:43:10.6040490Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2024-06-26T05:43:10.6041450Z adding 'torch/include/ATen/ops/trunc.h' 2024-06-26T05:43:10.6042480Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6043520Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2024-06-26T05:43:10.6044130Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2024-06-26T05:43:10.6045350Z adding 'torch/include/ATen/ops/trunc_meta.h' 2024-06-26T05:43:10.6046230Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2024-06-26T05:43:10.6047080Z adding 'torch/include/ATen/ops/trunc_mps_dispatch.h' 2024-06-26T05:43:10.6048110Z adding 'torch/include/ATen/ops/trunc_native.h' 2024-06-26T05:43:10.6049260Z adding 'torch/include/ATen/ops/trunc_ops.h' 2024-06-26T05:43:10.6049820Z adding 'torch/include/ATen/ops/type_as.h' 2024-06-26T05:43:10.6051210Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6051740Z adding 'torch/include/ATen/ops/type_as_native.h' 2024-06-26T05:43:10.6053000Z adding 'torch/include/ATen/ops/type_as_ops.h' 2024-06-26T05:43:10.6053830Z adding 'torch/include/ATen/ops/unbind.h' 2024-06-26T05:43:10.6055100Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6055740Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6056960Z adding 'torch/include/ATen/ops/unbind_copy.h' 2024-06-26T05:43:10.6057950Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6058870Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6059870Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2024-06-26T05:43:10.6060860Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2024-06-26T05:43:10.6061850Z adding 'torch/include/ATen/ops/unbind_native.h' 2024-06-26T05:43:10.6062700Z adding 'torch/include/ATen/ops/unbind_ops.h' 2024-06-26T05:43:10.6063920Z adding 'torch/include/ATen/ops/unflatten.h' 2024-06-26T05:43:10.6064930Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6066000Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2024-06-26T05:43:10.6067040Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6068190Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2024-06-26T05:43:10.6069350Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2024-06-26T05:43:10.6069820Z adding 'torch/include/ATen/ops/unflatten_native.h' 2024-06-26T05:43:10.6071180Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2024-06-26T05:43:10.6071740Z adding 'torch/include/ATen/ops/unfold.h' 2024-06-26T05:43:10.6073160Z adding 'torch/include/ATen/ops/unfold_backward.h' 2024-06-26T05:43:10.6074290Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6074870Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2024-06-26T05:43:10.6076130Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2024-06-26T05:43:10.6076650Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2024-06-26T05:43:10.6077880Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2024-06-26T05:43:10.6078720Z adding 'torch/include/ATen/ops/unfold_copy.h' 2024-06-26T05:43:10.6079710Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6080930Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6081290Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2024-06-26T05:43:10.6082540Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2024-06-26T05:43:10.6083550Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2024-06-26T05:43:10.6084000Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2024-06-26T05:43:10.6085140Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2024-06-26T05:43:10.6085780Z adding 'torch/include/ATen/ops/unfold_mps_dispatch.h' 2024-06-26T05:43:10.6086850Z adding 'torch/include/ATen/ops/unfold_native.h' 2024-06-26T05:43:10.6087830Z adding 'torch/include/ATen/ops/unfold_ops.h' 2024-06-26T05:43:10.6088700Z adding 'torch/include/ATen/ops/uniform.h' 2024-06-26T05:43:10.6089810Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6090290Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2024-06-26T05:43:10.6091760Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2024-06-26T05:43:10.6092350Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2024-06-26T05:43:10.6093420Z adding 'torch/include/ATen/ops/uniform_mps_dispatch.h' 2024-06-26T05:43:10.6094260Z adding 'torch/include/ATen/ops/uniform_native.h' 2024-06-26T05:43:10.6095420Z adding 'torch/include/ATen/ops/uniform_ops.h' 2024-06-26T05:43:10.6096290Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2024-06-26T05:43:10.6097600Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6098050Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2024-06-26T05:43:10.6099170Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2024-06-26T05:43:10.6099770Z adding 'torch/include/ATen/ops/unique_consecutive_mps_dispatch.h' 2024-06-26T05:43:10.6100900Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2024-06-26T05:43:10.6102060Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2024-06-26T05:43:10.6102880Z adding 'torch/include/ATen/ops/unique_dim.h' 2024-06-26T05:43:10.6103870Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6104930Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2024-06-26T05:43:10.6105930Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6106530Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2024-06-26T05:43:10.6107670Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2024-06-26T05:43:10.6108230Z adding 'torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h' 2024-06-26T05:43:10.6109400Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2024-06-26T05:43:10.6110590Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2024-06-26T05:43:10.6111150Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2024-06-26T05:43:10.6112150Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2024-06-26T05:43:10.6113290Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2024-06-26T05:43:10.6114310Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2024-06-26T05:43:10.6114910Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2024-06-26T05:43:10.6116150Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6116640Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2024-06-26T05:43:10.6117910Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2024-06-26T05:43:10.6118750Z adding 'torch/include/ATen/ops/unsafe_split.h' 2024-06-26T05:43:10.6120050Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6120560Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2024-06-26T05:43:10.6121790Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2024-06-26T05:43:10.6122910Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2024-06-26T05:43:10.6123920Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6124560Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2024-06-26T05:43:10.6125810Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2024-06-26T05:43:10.6126600Z adding 'torch/include/ATen/ops/unsqueeze.h' 2024-06-26T05:43:10.6127590Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6128620Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2024-06-26T05:43:10.6129270Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6130500Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6130960Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2024-06-26T05:43:10.6132200Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2024-06-26T05:43:10.6132790Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2024-06-26T05:43:10.6134000Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2024-06-26T05:43:10.6135310Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2024-06-26T05:43:10.6136630Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2024-06-26T05:43:10.6137700Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6138790Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.6139350Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.6140510Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2024-06-26T05:43:10.6141400Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2024-06-26T05:43:10.6142240Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2024-06-26T05:43:10.6143420Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2024-06-26T05:43:10.6144440Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6145100Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6146220Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2024-06-26T05:43:10.6147080Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2024-06-26T05:43:10.6147900Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2024-06-26T05:43:10.6148800Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2024-06-26T05:43:10.6149660Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2024-06-26T05:43:10.6150910Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2024-06-26T05:43:10.6152200Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2024-06-26T05:43:10.6153510Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2024-06-26T05:43:10.6154580Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6155290Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.6156450Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.6157090Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2024-06-26T05:43:10.6158370Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2024-06-26T05:43:10.6158960Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h' 2024-06-26T05:43:10.6160240Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2024-06-26T05:43:10.6161400Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2024-06-26T05:43:10.6162090Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6163230Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6163780Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2024-06-26T05:43:10.6165060Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2024-06-26T05:43:10.6165570Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2024-06-26T05:43:10.6166750Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2024-06-26T05:43:10.6167400Z adding 'torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h' 2024-06-26T05:43:10.6168620Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2024-06-26T05:43:10.6169770Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2024-06-26T05:43:10.6170920Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2024-06-26T05:43:10.6172240Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2024-06-26T05:43:10.6173070Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6174170Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.6174840Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.6175950Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2024-06-26T05:43:10.6176640Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2024-06-26T05:43:10.6177900Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h' 2024-06-26T05:43:10.6178400Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2024-06-26T05:43:10.6179720Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2024-06-26T05:43:10.6180730Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6181410Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6182510Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2024-06-26T05:43:10.6183160Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2024-06-26T05:43:10.6184380Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2024-06-26T05:43:10.6184910Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2024-06-26T05:43:10.6189330Z adding 'torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h' 2024-06-26T05:43:10.6189670Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2024-06-26T05:43:10.6189840Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2024-06-26T05:43:10.6190000Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2024-06-26T05:43:10.6190240Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2024-06-26T05:43:10.6191340Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6192580Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.6193040Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.6194160Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2024-06-26T05:43:10.6195090Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2024-06-26T05:43:10.6195750Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h' 2024-06-26T05:43:10.6196960Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2024-06-26T05:43:10.6197810Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2024-06-26T05:43:10.6199130Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6199610Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6200690Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2024-06-26T05:43:10.6201330Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2024-06-26T05:43:10.6202560Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2024-06-26T05:43:10.6203060Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2024-06-26T05:43:10.6204230Z adding 'torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h' 2024-06-26T05:43:10.6204830Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2024-06-26T05:43:10.6206160Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2024-06-26T05:43:10.6207420Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2024-06-26T05:43:10.6208710Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2024-06-26T05:43:10.6209780Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6210470Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.6211700Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.6212280Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2024-06-26T05:43:10.6213580Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2024-06-26T05:43:10.6214190Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h' 2024-06-26T05:43:10.6215440Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2024-06-26T05:43:10.6216280Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2024-06-26T05:43:10.6217620Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6218100Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6219220Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2024-06-26T05:43:10.6219870Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2024-06-26T05:43:10.6221100Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2024-06-26T05:43:10.6221660Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2024-06-26T05:43:10.6222780Z adding 'torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h' 2024-06-26T05:43:10.6223620Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2024-06-26T05:43:10.6224790Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2024-06-26T05:43:10.6226070Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2024-06-26T05:43:10.6227390Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2024-06-26T05:43:10.6228450Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6229140Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.6230350Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.6230960Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2024-06-26T05:43:10.6232280Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2024-06-26T05:43:10.6232860Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2024-06-26T05:43:10.6234140Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2024-06-26T05:43:10.6235200Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6235910Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6237010Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2024-06-26T05:43:10.6237630Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2024-06-26T05:43:10.6238860Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2024-06-26T05:43:10.6239380Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2024-06-26T05:43:10.6240600Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2024-06-26T05:43:10.6241750Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2024-06-26T05:43:10.6243000Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2024-06-26T05:43:10.6244370Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2024-06-26T05:43:10.6245440Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6246530Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2024-06-26T05:43:10.6247030Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2024-06-26T05:43:10.6248200Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2024-06-26T05:43:10.6248900Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2024-06-26T05:43:10.6250140Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2024-06-26T05:43:10.6251000Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2024-06-26T05:43:10.6252140Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6252800Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6253900Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2024-06-26T05:43:10.6254760Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2024-06-26T05:43:10.6255580Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2024-06-26T05:43:10.6256480Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2024-06-26T05:43:10.6257610Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2024-06-26T05:43:10.6258770Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2024-06-26T05:43:10.6259450Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2024-06-26T05:43:10.6260580Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6261270Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2024-06-26T05:43:10.6262480Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2024-06-26T05:43:10.6262960Z adding 'torch/include/ATen/ops/values.h' 2024-06-26T05:43:10.6264370Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6264830Z adding 'torch/include/ATen/ops/values_copy.h' 2024-06-26T05:43:10.6266110Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6266790Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6267600Z adding 'torch/include/ATen/ops/values_copy_native.h' 2024-06-26T05:43:10.6268760Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2024-06-26T05:43:10.6269310Z adding 'torch/include/ATen/ops/values_native.h' 2024-06-26T05:43:10.6270500Z adding 'torch/include/ATen/ops/values_ops.h' 2024-06-26T05:43:10.6271330Z adding 'torch/include/ATen/ops/vander.h' 2024-06-26T05:43:10.6272300Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6273080Z adding 'torch/include/ATen/ops/vander_native.h' 2024-06-26T05:43:10.6274240Z adding 'torch/include/ATen/ops/vander_ops.h' 2024-06-26T05:43:10.6275420Z adding 'torch/include/ATen/ops/var.h' 2024-06-26T05:43:10.6276610Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6276990Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2024-06-26T05:43:10.6278140Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2024-06-26T05:43:10.6279180Z adding 'torch/include/ATen/ops/var_mean.h' 2024-06-26T05:43:10.6280170Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6281040Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6282100Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2024-06-26T05:43:10.6282600Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2024-06-26T05:43:10.6283700Z adding 'torch/include/ATen/ops/var_mean_mps_dispatch.h' 2024-06-26T05:43:10.6284550Z adding 'torch/include/ATen/ops/var_mean_native.h' 2024-06-26T05:43:10.6285850Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2024-06-26T05:43:10.6286760Z adding 'torch/include/ATen/ops/var_mps_dispatch.h' 2024-06-26T05:43:10.6287580Z adding 'torch/include/ATen/ops/var_native.h' 2024-06-26T05:43:10.6289010Z adding 'torch/include/ATen/ops/var_ops.h' 2024-06-26T05:43:10.6289840Z adding 'torch/include/ATen/ops/vdot.h' 2024-06-26T05:43:10.6291140Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6291530Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2024-06-26T05:43:10.6292620Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2024-06-26T05:43:10.6293470Z adding 'torch/include/ATen/ops/vdot_native.h' 2024-06-26T05:43:10.6294350Z adding 'torch/include/ATen/ops/vdot_ops.h' 2024-06-26T05:43:10.6295470Z adding 'torch/include/ATen/ops/view.h' 2024-06-26T05:43:10.6295940Z adding 'torch/include/ATen/ops/view_as.h' 2024-06-26T05:43:10.6297100Z adding 'torch/include/ATen/ops/view_as_complex.h' 2024-06-26T05:43:10.6298130Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2024-06-26T05:43:10.6298850Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6300060Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6300390Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2024-06-26T05:43:10.6301650Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2024-06-26T05:43:10.6302300Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2024-06-26T05:43:10.6303250Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2024-06-26T05:43:10.6304110Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2024-06-26T05:43:10.6304970Z adding 'torch/include/ATen/ops/view_as_complex_mps_dispatch.h' 2024-06-26T05:43:10.6305800Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2024-06-26T05:43:10.6306950Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2024-06-26T05:43:10.6307570Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6308550Z adding 'torch/include/ATen/ops/view_as_native.h' 2024-06-26T05:43:10.6309540Z adding 'torch/include/ATen/ops/view_as_ops.h' 2024-06-26T05:43:10.6310080Z adding 'torch/include/ATen/ops/view_as_real.h' 2024-06-26T05:43:10.6311590Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2024-06-26T05:43:10.6312740Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6313320Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6314340Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2024-06-26T05:43:10.6315470Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2024-06-26T05:43:10.6315960Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2024-06-26T05:43:10.6317060Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2024-06-26T05:43:10.6317650Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2024-06-26T05:43:10.6318770Z adding 'torch/include/ATen/ops/view_as_real_mps_dispatch.h' 2024-06-26T05:43:10.6319320Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2024-06-26T05:43:10.6320590Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2024-06-26T05:43:10.6321200Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6322470Z adding 'torch/include/ATen/ops/view_copy.h' 2024-06-26T05:43:10.6323470Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6324390Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6325390Z adding 'torch/include/ATen/ops/view_copy_native.h' 2024-06-26T05:43:10.6326370Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2024-06-26T05:43:10.6326920Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2024-06-26T05:43:10.6328020Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2024-06-26T05:43:10.6328620Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2024-06-26T05:43:10.6329660Z adding 'torch/include/ATen/ops/view_mps_dispatch.h' 2024-06-26T05:43:10.6330630Z adding 'torch/include/ATen/ops/view_native.h' 2024-06-26T05:43:10.6331250Z adding 'torch/include/ATen/ops/view_ops.h' 2024-06-26T05:43:10.6332480Z adding 'torch/include/ATen/ops/vsplit.h' 2024-06-26T05:43:10.6333160Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6334190Z adding 'torch/include/ATen/ops/vsplit_native.h' 2024-06-26T05:43:10.6335040Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2024-06-26T05:43:10.6336180Z adding 'torch/include/ATen/ops/vstack.h' 2024-06-26T05:43:10.6336860Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6337860Z adding 'torch/include/ATen/ops/vstack_native.h' 2024-06-26T05:43:10.6338700Z adding 'torch/include/ATen/ops/vstack_ops.h' 2024-06-26T05:43:10.6339830Z adding 'torch/include/ATen/ops/where.h' 2024-06-26T05:43:10.6340800Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6344810Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2024-06-26T05:43:10.6345180Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2024-06-26T05:43:10.6345330Z adding 'torch/include/ATen/ops/where_mps_dispatch.h' 2024-06-26T05:43:10.6345620Z adding 'torch/include/ATen/ops/where_native.h' 2024-06-26T05:43:10.6345750Z adding 'torch/include/ATen/ops/where_ops.h' 2024-06-26T05:43:10.6346100Z adding 'torch/include/ATen/ops/xlogy.h' 2024-06-26T05:43:10.6347490Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6348190Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2024-06-26T05:43:10.6349320Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2024-06-26T05:43:10.6349790Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2024-06-26T05:43:10.6350910Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2024-06-26T05:43:10.6351770Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2024-06-26T05:43:10.6352620Z adding 'torch/include/ATen/ops/xlogy_mps_dispatch.h' 2024-06-26T05:43:10.6353450Z adding 'torch/include/ATen/ops/xlogy_native.h' 2024-06-26T05:43:10.6354740Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2024-06-26T05:43:10.6355560Z adding 'torch/include/ATen/ops/xor.h' 2024-06-26T05:43:10.6356810Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2024-06-26T05:43:10.6357140Z adding 'torch/include/ATen/ops/xor_native.h' 2024-06-26T05:43:10.6358470Z adding 'torch/include/ATen/ops/xor_ops.h' 2024-06-26T05:43:10.6359150Z adding 'torch/include/ATen/ops/zero.h' 2024-06-26T05:43:10.6360300Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6361060Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2024-06-26T05:43:10.6362060Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2024-06-26T05:43:10.6362600Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2024-06-26T05:43:10.6363730Z adding 'torch/include/ATen/ops/zero_mps_dispatch.h' 2024-06-26T05:43:10.6364320Z adding 'torch/include/ATen/ops/zero_native.h' 2024-06-26T05:43:10.6365560Z adding 'torch/include/ATen/ops/zero_ops.h' 2024-06-26T05:43:10.6366830Z adding 'torch/include/ATen/ops/zeros.h' 2024-06-26T05:43:10.6368100Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6368660Z adding 'torch/include/ATen/ops/zeros_like.h' 2024-06-26T05:43:10.6370010Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2024-06-26T05:43:10.6370730Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2024-06-26T05:43:10.6371820Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2024-06-26T05:43:10.6372810Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2024-06-26T05:43:10.6373790Z adding 'torch/include/ATen/ops/zeros_native.h' 2024-06-26T05:43:10.6374940Z adding 'torch/include/ATen/ops/zeros_ops.h' 2024-06-26T05:43:10.6377450Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2024-06-26T05:43:10.6379530Z adding 'torch/include/ATen/quantized/Quantizer.h' 2024-06-26T05:43:10.6380810Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2024-06-26T05:43:10.6381430Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2024-06-26T05:43:10.6382360Z adding 'torch/include/ATen/xpu/XPUContext.h' 2024-06-26T05:43:10.6383210Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2024-06-26T05:43:10.6384850Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2024-06-26T05:43:10.6385710Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2024-06-26T05:43:10.6387030Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2024-06-26T05:43:10.6390840Z adding 'torch/include/c10/core/Allocator.h' 2024-06-26T05:43:10.6391870Z adding 'torch/include/c10/core/AutogradState.h' 2024-06-26T05:43:10.6393880Z adding 'torch/include/c10/core/Backend.h' 2024-06-26T05:43:10.6395030Z adding 'torch/include/c10/core/CPUAllocator.h' 2024-06-26T05:43:10.6396260Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2024-06-26T05:43:10.6397390Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2024-06-26T05:43:10.6398550Z adding 'torch/include/c10/core/Contiguity.h' 2024-06-26T05:43:10.6399690Z adding 'torch/include/c10/core/CopyBytes.h' 2024-06-26T05:43:10.6400190Z adding 'torch/include/c10/core/DefaultDtype.h' 2024-06-26T05:43:10.6401410Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2024-06-26T05:43:10.6403280Z adding 'torch/include/c10/core/Device.h' 2024-06-26T05:43:10.6404120Z adding 'torch/include/c10/core/DeviceArray.h' 2024-06-26T05:43:10.6406230Z adding 'torch/include/c10/core/DeviceGuard.h' 2024-06-26T05:43:10.6407740Z adding 'torch/include/c10/core/DeviceType.h' 2024-06-26T05:43:10.6415510Z adding 'torch/include/c10/core/DispatchKey.h' 2024-06-26T05:43:10.6425260Z adding 'torch/include/c10/core/DispatchKeySet.h' 2024-06-26T05:43:10.6427010Z adding 'torch/include/c10/core/DynamicCast.h' 2024-06-26T05:43:10.6428610Z adding 'torch/include/c10/core/Event.h' 2024-06-26T05:43:10.6430140Z adding 'torch/include/c10/core/GeneratorImpl.h' 2024-06-26T05:43:10.6431110Z adding 'torch/include/c10/core/GradMode.h' 2024-06-26T05:43:10.6432500Z adding 'torch/include/c10/core/InferenceMode.h' 2024-06-26T05:43:10.6433530Z adding 'torch/include/c10/core/Layout.h' 2024-06-26T05:43:10.6435840Z adding 'torch/include/c10/core/MemoryFormat.h' 2024-06-26T05:43:10.6436710Z adding 'torch/include/c10/core/OptionalRef.h' 2024-06-26T05:43:10.6438130Z adding 'torch/include/c10/core/PyHandleCache.h' 2024-06-26T05:43:10.6438970Z adding 'torch/include/c10/core/QEngine.h' 2024-06-26T05:43:10.6440130Z adding 'torch/include/c10/core/QScheme.h' 2024-06-26T05:43:10.6441340Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2024-06-26T05:43:10.6442550Z adding 'torch/include/c10/core/SafePyObject.h' 2024-06-26T05:43:10.6445470Z adding 'torch/include/c10/core/Scalar.h' 2024-06-26T05:43:10.6449700Z adding 'torch/include/c10/core/ScalarType.h' 2024-06-26T05:43:10.6450880Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2024-06-26T05:43:10.6452560Z adding 'torch/include/c10/core/Storage.h' 2024-06-26T05:43:10.6454910Z adding 'torch/include/c10/core/StorageImpl.h' 2024-06-26T05:43:10.6456920Z adding 'torch/include/c10/core/Stream.h' 2024-06-26T05:43:10.6458600Z adding 'torch/include/c10/core/StreamGuard.h' 2024-06-26T05:43:10.6459650Z adding 'torch/include/c10/core/SymBool.h' 2024-06-26T05:43:10.6461120Z adding 'torch/include/c10/core/SymFloat.h' 2024-06-26T05:43:10.6464320Z adding 'torch/include/c10/core/SymInt.h' 2024-06-26T05:43:10.6465530Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2024-06-26T05:43:10.6466960Z adding 'torch/include/c10/core/SymNodeImpl.h' 2024-06-26T05:43:10.6468630Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2024-06-26T05:43:10.6495980Z adding 'torch/include/c10/core/TensorImpl.h' 2024-06-26T05:43:10.6502100Z adding 'torch/include/c10/core/TensorOptions.h' 2024-06-26T05:43:10.6503320Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2024-06-26T05:43:10.6504250Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2024-06-26T05:43:10.6505220Z adding 'torch/include/c10/core/alignment.h' 2024-06-26T05:43:10.6506430Z adding 'torch/include/c10/core/thread_pool.h' 2024-06-26T05:43:10.6507830Z adding 'torch/include/c10/core/impl/COW.h' 2024-06-26T05:43:10.6509030Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2024-06-26T05:43:10.6512260Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2024-06-26T05:43:10.6513580Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2024-06-26T05:43:10.6514500Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2024-06-26T05:43:10.6516030Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2024-06-26T05:43:10.6519560Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2024-06-26T05:43:10.6520890Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2024-06-26T05:43:10.6523240Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2024-06-26T05:43:10.6524990Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2024-06-26T05:43:10.6527670Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2024-06-26T05:43:10.6530060Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2024-06-26T05:43:10.6531120Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2024-06-26T05:43:10.6532840Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2024-06-26T05:43:10.6534040Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2024-06-26T05:43:10.6535230Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2024-06-26T05:43:10.6535790Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2024-06-26T05:43:10.6537340Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2024-06-26T05:43:10.6538680Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2024-06-26T05:43:10.6542090Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2024-06-26T05:43:10.6543640Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2024-06-26T05:43:10.6545550Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2024-06-26T05:43:10.6546960Z adding 'torch/include/c10/cuda/CUDAException.h' 2024-06-26T05:43:10.6548320Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2024-06-26T05:43:10.6549520Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2024-06-26T05:43:10.6551770Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2024-06-26T05:43:10.6552940Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2024-06-26T05:43:10.6554120Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2024-06-26T05:43:10.6554650Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2024-06-26T05:43:10.6557540Z adding 'torch/include/c10/cuda/CUDAStream.h' 2024-06-26T05:43:10.6558700Z adding 'torch/include/c10/cuda/driver_api.h' 2024-06-26T05:43:10.6561070Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2024-06-26T05:43:10.6561680Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2024-06-26T05:43:10.6563840Z adding 'torch/include/c10/macros/Export.h' 2024-06-26T05:43:10.6567920Z adding 'torch/include/c10/macros/Macros.h' 2024-06-26T05:43:10.6568810Z adding 'torch/include/c10/macros/cmake_macros.h' 2024-06-26T05:43:10.6571030Z adding 'torch/include/c10/util/AbortHandler.h' 2024-06-26T05:43:10.6572610Z adding 'torch/include/c10/util/AlignOf.h' 2024-06-26T05:43:10.6574030Z adding 'torch/include/c10/util/ApproximateClock.h' 2024-06-26T05:43:10.6574640Z adding 'torch/include/c10/util/Array.h' 2024-06-26T05:43:10.6577220Z adding 'torch/include/c10/util/ArrayRef.h' 2024-06-26T05:43:10.6579010Z adding 'torch/include/c10/util/BFloat16-inl.h' 2024-06-26T05:43:10.6580810Z adding 'torch/include/c10/util/BFloat16-math.h' 2024-06-26T05:43:10.6582060Z adding 'torch/include/c10/util/BFloat16.h' 2024-06-26T05:43:10.6582890Z adding 'torch/include/c10/util/Backtrace.h' 2024-06-26T05:43:10.6584310Z adding 'torch/include/c10/util/Bitset.h' 2024-06-26T05:43:10.6585630Z adding 'torch/include/c10/util/C++17.h' 2024-06-26T05:43:10.6586850Z adding 'torch/include/c10/util/CallOnce.h' 2024-06-26T05:43:10.6588970Z adding 'torch/include/c10/util/ConstexprCrc.h' 2024-06-26T05:43:10.6590160Z adding 'torch/include/c10/util/DeadlockDetection.h' 2024-06-26T05:43:10.6591350Z adding 'torch/include/c10/util/Deprecated.h' 2024-06-26T05:43:10.6592190Z adding 'torch/include/c10/util/DimVector.h' 2024-06-26T05:43:10.6597800Z adding 'torch/include/c10/util/Exception.h' 2024-06-26T05:43:10.6599470Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2024-06-26T05:43:10.6600720Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2024-06-26T05:43:10.6601490Z adding 'torch/include/c10/util/FbcodeMaps.h' 2024-06-26T05:43:10.6603830Z adding 'torch/include/c10/util/Flags.h' 2024-06-26T05:43:10.6605470Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2024-06-26T05:43:10.6607760Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2024-06-26T05:43:10.6609370Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2024-06-26T05:43:10.6610840Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2024-06-26T05:43:10.6612400Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2024-06-26T05:43:10.6613920Z adding 'torch/include/c10/util/Float8_e5m2.h' 2024-06-26T05:43:10.6615540Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2024-06-26T05:43:10.6617000Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2024-06-26T05:43:10.6618180Z adding 'torch/include/c10/util/Float8_fnuz_cvt.h' 2024-06-26T05:43:10.6619340Z adding 'torch/include/c10/util/FunctionRef.h' 2024-06-26T05:43:10.6621140Z adding 'torch/include/c10/util/Half-inl.h' 2024-06-26T05:43:10.6625560Z adding 'torch/include/c10/util/Half.h' 2024-06-26T05:43:10.6626810Z adding 'torch/include/c10/util/IdWrapper.h' 2024-06-26T05:43:10.6628010Z adding 'torch/include/c10/util/Lazy.h' 2024-06-26T05:43:10.6629920Z adding 'torch/include/c10/util/LeftRight.h' 2024-06-26T05:43:10.6634270Z adding 'torch/include/c10/util/Load.h' 2024-06-26T05:43:10.6634540Z adding 'torch/include/c10/util/Logging.h' 2024-06-26T05:43:10.6634680Z adding 'torch/include/c10/util/MathConstants.h' 2024-06-26T05:43:10.6636420Z adding 'torch/include/c10/util/MaybeOwned.h' 2024-06-26T05:43:10.6638220Z adding 'torch/include/c10/util/Metaprogramming.h' 2024-06-26T05:43:10.6639200Z adding 'torch/include/c10/util/Optional.h' 2024-06-26T05:43:10.6640790Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2024-06-26T05:43:10.6641770Z adding 'torch/include/c10/util/ParallelGuard.h' 2024-06-26T05:43:10.6644120Z adding 'torch/include/c10/util/Registry.h' 2024-06-26T05:43:10.6645260Z adding 'torch/include/c10/util/ScopeExit.h' 2024-06-26T05:43:10.6646120Z adding 'torch/include/c10/util/SmallBuffer.h' 2024-06-26T05:43:10.6656440Z adding 'torch/include/c10/util/SmallVector.h' 2024-06-26T05:43:10.6658380Z adding 'torch/include/c10/util/StringUtil.h' 2024-06-26T05:43:10.6659540Z adding 'torch/include/c10/util/Synchronized.h' 2024-06-26T05:43:10.6660870Z adding 'torch/include/c10/util/ThreadLocal.h' 2024-06-26T05:43:10.6662120Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2024-06-26T05:43:10.6662960Z adding 'torch/include/c10/util/Type.h' 2024-06-26T05:43:10.6664520Z adding 'torch/include/c10/util/TypeCast.h' 2024-06-26T05:43:10.6666190Z adding 'torch/include/c10/util/TypeIndex.h' 2024-06-26T05:43:10.6669190Z adding 'torch/include/c10/util/TypeList.h' 2024-06-26T05:43:10.6670570Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2024-06-26T05:43:10.6672020Z adding 'torch/include/c10/util/TypeTraits.h' 2024-06-26T05:43:10.6673060Z adding 'torch/include/c10/util/Unicode.h' 2024-06-26T05:43:10.6674400Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2024-06-26T05:43:10.6675240Z adding 'torch/include/c10/util/Unroll.h' 2024-06-26T05:43:10.6676560Z adding 'torch/include/c10/util/accumulate.h' 2024-06-26T05:43:10.6677390Z adding 'torch/include/c10/util/bit_cast.h' 2024-06-26T05:43:10.6678520Z adding 'torch/include/c10/util/bits.h' 2024-06-26T05:43:10.6681870Z adding 'torch/include/c10/util/complex.h' 2024-06-26T05:43:10.6683900Z adding 'torch/include/c10/util/complex_math.h' 2024-06-26T05:43:10.6684750Z adding 'torch/include/c10/util/complex_utils.h' 2024-06-26T05:43:10.6686370Z adding 'torch/include/c10/util/copysign.h' 2024-06-26T05:43:10.6687190Z adding 'torch/include/c10/util/env.h' 2024-06-26T05:43:10.6697220Z adding 'torch/include/c10/util/flat_hash_map.h' 2024-06-26T05:43:10.6698520Z adding 'torch/include/c10/util/floating_point_utils.h' 2024-06-26T05:43:10.6699710Z adding 'torch/include/c10/util/generic_math.h' 2024-06-26T05:43:10.6702330Z adding 'torch/include/c10/util/hash.h' 2024-06-26T05:43:10.6705120Z adding 'torch/include/c10/util/int128.h' 2024-06-26T05:43:10.6712500Z adding 'torch/include/c10/util/intrusive_ptr.h' 2024-06-26T05:43:10.6714040Z adding 'torch/include/c10/util/irange.h' 2024-06-26T05:43:10.6719650Z adding 'torch/include/c10/util/llvmMathExtras.h' 2024-06-26T05:43:10.6721140Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2024-06-26T05:43:10.6723150Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2024-06-26T05:43:10.6723940Z adding 'torch/include/c10/util/numa.h' 2024-06-26T05:43:10.6735810Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2024-06-26T05:43:10.6736990Z adding 'torch/include/c10/util/overloaded.h' 2024-06-26T05:43:10.6737510Z adding 'torch/include/c10/util/python_stub.h' 2024-06-26T05:43:10.6738650Z adding 'torch/include/c10/util/qint32.h' 2024-06-26T05:43:10.6739470Z adding 'torch/include/c10/util/qint8.h' 2024-06-26T05:43:10.6740300Z adding 'torch/include/c10/util/quint2x4.h' 2024-06-26T05:43:10.6741130Z adding 'torch/include/c10/util/quint4x2.h' 2024-06-26T05:43:10.6741960Z adding 'torch/include/c10/util/quint8.h' 2024-06-26T05:43:10.6743230Z adding 'torch/include/c10/util/safe_numerics.h' 2024-06-26T05:43:10.6744580Z adding 'torch/include/c10/util/signal_handler.h' 2024-06-26T05:43:10.6749620Z adding 'torch/include/c10/util/sparse_bitset.h' 2024-06-26T05:43:10.6750760Z adding 'torch/include/c10/util/ssize.h' 2024-06-26T05:43:10.6751630Z adding 'torch/include/c10/util/static_tracepoint.h' 2024-06-26T05:43:10.6753550Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2024-06-26T05:43:10.6754350Z adding 'torch/include/c10/util/strides.h' 2024-06-26T05:43:10.6755190Z adding 'torch/include/c10/util/string_utils.h' 2024-06-26T05:43:10.6758420Z adding 'torch/include/c10/util/string_view.h' 2024-06-26T05:43:10.6763420Z adding 'torch/include/c10/util/strong_type.h' 2024-06-26T05:43:10.6764760Z adding 'torch/include/c10/util/tempfile.h' 2024-06-26T05:43:10.6765390Z adding 'torch/include/c10/util/thread_name.h' 2024-06-26T05:43:10.6770560Z adding 'torch/include/c10/util/typeid.h' 2024-06-26T05:43:10.6771750Z adding 'torch/include/c10/util/win32-headers.h' 2024-06-26T05:43:10.6772890Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2024-06-26T05:43:10.6774830Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2024-06-26T05:43:10.6775510Z adding 'torch/include/c10/xpu/XPUException.h' 2024-06-26T05:43:10.6776690Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2024-06-26T05:43:10.6777520Z adding 'torch/include/c10/xpu/XPUMacros.h' 2024-06-26T05:43:10.6779350Z adding 'torch/include/c10/xpu/XPUStream.h' 2024-06-26T05:43:10.6781170Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2024-06-26T05:43:10.6806790Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2024-06-26T05:43:10.6808220Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2024-06-26T05:43:10.6809010Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2024-06-26T05:43:10.6811720Z adding 'torch/include/caffe2/serialize/inline_container.h' 2024-06-26T05:43:10.6812580Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2024-06-26T05:43:10.6813760Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2024-06-26T05:43:10.6815570Z adding 'torch/include/caffe2/serialize/versions.h' 2024-06-26T05:43:10.6817360Z adding 'torch/include/kineto/AbstractConfig.h' 2024-06-26T05:43:10.6818780Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2024-06-26T05:43:10.6819620Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2024-06-26T05:43:10.6820840Z adding 'torch/include/kineto/ActivityType.h' 2024-06-26T05:43:10.6821700Z adding 'torch/include/kineto/ClientInterface.h' 2024-06-26T05:43:10.6824980Z adding 'torch/include/kineto/Config.h' 2024-06-26T05:43:10.6826490Z adding 'torch/include/kineto/GenericTraceActivity.h' 2024-06-26T05:43:10.6828040Z adding 'torch/include/kineto/IActivityProfiler.h' 2024-06-26T05:43:10.6829080Z adding 'torch/include/kineto/ILoggerObserver.h' 2024-06-26T05:43:10.6830250Z adding 'torch/include/kineto/ITraceActivity.h' 2024-06-26T05:43:10.6830770Z adding 'torch/include/kineto/LoggingAPI.h' 2024-06-26T05:43:10.6831940Z adding 'torch/include/kineto/ThreadUtil.h' 2024-06-26T05:43:10.6832770Z adding 'torch/include/kineto/TraceSpan.h' 2024-06-26T05:43:10.6834220Z adding 'torch/include/kineto/libkineto.h' 2024-06-26T05:43:10.6835400Z adding 'torch/include/kineto/output_base.h' 2024-06-26T05:43:10.6836020Z adding 'torch/include/kineto/time_since_epoch.h' 2024-06-26T05:43:10.6841170Z adding 'torch/include/pybind11/attr.h' 2024-06-26T05:43:10.6843230Z adding 'torch/include/pybind11/buffer_info.h' 2024-06-26T05:43:10.6858020Z adding 'torch/include/pybind11/cast.h' 2024-06-26T05:43:10.6860470Z adding 'torch/include/pybind11/chrono.h' 2024-06-26T05:43:10.6861340Z adding 'torch/include/pybind11/common.h' 2024-06-26T05:43:10.6862530Z adding 'torch/include/pybind11/complex.h' 2024-06-26T05:43:10.6863350Z adding 'torch/include/pybind11/eigen.h' 2024-06-26T05:43:10.6866310Z adding 'torch/include/pybind11/embed.h' 2024-06-26T05:43:10.6867790Z adding 'torch/include/pybind11/eval.h' 2024-06-26T05:43:10.6869460Z adding 'torch/include/pybind11/functional.h' 2024-06-26T05:43:10.6871430Z adding 'torch/include/pybind11/gil.h' 2024-06-26T05:43:10.6872960Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2024-06-26T05:43:10.6875100Z adding 'torch/include/pybind11/iostream.h' 2024-06-26T05:43:10.6891980Z adding 'torch/include/pybind11/numpy.h' 2024-06-26T05:43:10.6894290Z adding 'torch/include/pybind11/operators.h' 2024-06-26T05:43:10.6895540Z adding 'torch/include/pybind11/options.h' 2024-06-26T05:43:10.6922110Z adding 'torch/include/pybind11/pybind11.h' 2024-06-26T05:43:10.6942100Z adding 'torch/include/pybind11/pytypes.h' 2024-06-26T05:43:10.6945520Z adding 'torch/include/pybind11/stl.h' 2024-06-26T05:43:10.6950880Z adding 'torch/include/pybind11/stl_bind.h' 2024-06-26T05:43:10.6952210Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2024-06-26T05:43:10.6953420Z adding 'torch/include/pybind11/typing.h' 2024-06-26T05:43:10.6959700Z adding 'torch/include/pybind11/detail/class.h' 2024-06-26T05:43:10.6970730Z adding 'torch/include/pybind11/detail/common.h' 2024-06-26T05:43:10.6972550Z adding 'torch/include/pybind11/detail/descr.h' 2024-06-26T05:43:10.6976160Z adding 'torch/include/pybind11/detail/init.h' 2024-06-26T05:43:10.7046880Z adding 'torch/include/pybind11/detail/internals.h' 2024-06-26T05:43:10.7058420Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2024-06-26T05:43:10.7059920Z adding 'torch/include/pybind11/detail/typeid.h' 2024-06-26T05:43:10.7061130Z adding 'torch/include/pybind11/eigen/common.h' 2024-06-26T05:43:10.7067770Z adding 'torch/include/pybind11/eigen/matrix.h' 2024-06-26T05:43:10.7071040Z adding 'torch/include/pybind11/eigen/tensor.h' 2024-06-26T05:43:10.7075680Z adding 'torch/include/torch/custom_class.h' 2024-06-26T05:43:10.7077890Z adding 'torch/include/torch/custom_class_detail.h' 2024-06-26T05:43:10.7078890Z adding 'torch/include/torch/extension.h' 2024-06-26T05:43:10.7087600Z adding 'torch/include/torch/library.h' 2024-06-26T05:43:10.7088740Z adding 'torch/include/torch/script.h' 2024-06-26T05:43:10.7090580Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2024-06-26T05:43:10.7091580Z adding 'torch/include/torch/csrc/DataLoader.h' 2024-06-26T05:43:10.7092060Z adding 'torch/include/torch/csrc/Device.h' 2024-06-26T05:43:10.7093270Z adding 'torch/include/torch/csrc/Dtype.h' 2024-06-26T05:43:10.7094140Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2024-06-26T05:43:10.7095150Z adding 'torch/include/torch/csrc/Event.h' 2024-06-26T05:43:10.7098310Z adding 'torch/include/torch/csrc/Exceptions.h' 2024-06-26T05:43:10.7099160Z adding 'torch/include/torch/csrc/Export.h' 2024-06-26T05:43:10.7100010Z adding 'torch/include/torch/csrc/Generator.h' 2024-06-26T05:43:10.7101160Z adding 'torch/include/torch/csrc/Layout.h' 2024-06-26T05:43:10.7101680Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2024-06-26T05:43:10.7102720Z adding 'torch/include/torch/csrc/Module.h' 2024-06-26T05:43:10.7103300Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2024-06-26T05:43:10.7104420Z adding 'torch/include/torch/csrc/QScheme.h' 2024-06-26T05:43:10.7105260Z adding 'torch/include/torch/csrc/Size.h' 2024-06-26T05:43:10.7106400Z adding 'torch/include/torch/csrc/Storage.h' 2024-06-26T05:43:10.7106970Z adding 'torch/include/torch/csrc/StorageMethods.h' 2024-06-26T05:43:10.7107990Z adding 'torch/include/torch/csrc/StorageSharing.h' 2024-06-26T05:43:10.7108590Z adding 'torch/include/torch/csrc/Stream.h' 2024-06-26T05:43:10.7109660Z adding 'torch/include/torch/csrc/THConcat.h' 2024-06-26T05:43:10.7110490Z adding 'torch/include/torch/csrc/THP.h' 2024-06-26T05:43:10.7111400Z adding 'torch/include/torch/csrc/TypeInfo.h' 2024-06-26T05:43:10.7112280Z adding 'torch/include/torch/csrc/Types.h' 2024-06-26T05:43:10.7113450Z adding 'torch/include/torch/csrc/copy_utils.h' 2024-06-26T05:43:10.7113870Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2024-06-26T05:43:10.7114980Z adding 'torch/include/torch/csrc/python_dimname.h' 2024-06-26T05:43:10.7115980Z adding 'torch/include/torch/csrc/python_headers.h' 2024-06-26T05:43:10.7116490Z adding 'torch/include/torch/csrc/serialization.h' 2024-06-26T05:43:10.7118650Z adding 'torch/include/torch/csrc/utils.h' 2024-06-26T05:43:10.7120580Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2024-06-26T05:43:10.7121740Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2024-06-26T05:43:10.7122180Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2024-06-26T05:43:10.7123370Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2024-06-26T05:43:10.7128010Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2024-06-26T05:43:10.7128340Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2024-06-26T05:43:10.7128580Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2024-06-26T05:43:10.7129800Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2024-06-26T05:43:10.7130350Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2024-06-26T05:43:10.7131520Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2024-06-26T05:43:10.7134980Z adding 'torch/include/torch/csrc/api/include/torch/linalg.h' 2024-06-26T05:43:10.7136130Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2024-06-26T05:43:10.7137310Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2024-06-26T05:43:10.7137780Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2024-06-26T05:43:10.7138910Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2024-06-26T05:43:10.7142090Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2024-06-26T05:43:10.7144330Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2024-06-26T05:43:10.7145780Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2024-06-26T05:43:10.7146290Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2024-06-26T05:43:10.7150160Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2024-06-26T05:43:10.7151020Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2024-06-26T05:43:10.7152390Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2024-06-26T05:43:10.7153690Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2024-06-26T05:43:10.7154360Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2024-06-26T05:43:10.7155300Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2024-06-26T05:43:10.7156960Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2024-06-26T05:43:10.7158180Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2024-06-26T05:43:10.7158730Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2024-06-26T05:43:10.7159980Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2024-06-26T05:43:10.7161560Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2024-06-26T05:43:10.7162160Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2024-06-26T05:43:10.7163240Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2024-06-26T05:43:10.7164130Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2024-06-26T05:43:10.7166890Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2024-06-26T05:43:10.7168300Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2024-06-26T05:43:10.7169550Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2024-06-26T05:43:10.7171120Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2024-06-26T05:43:10.7175940Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2024-06-26T05:43:10.7177490Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2024-06-26T05:43:10.7178660Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2024-06-26T05:43:10.7179840Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2024-06-26T05:43:10.7181040Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2024-06-26T05:43:10.7181540Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2024-06-26T05:43:10.7183340Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2024-06-26T05:43:10.7184560Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2024-06-26T05:43:10.7186110Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2024-06-26T05:43:10.7187390Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2024-06-26T05:43:10.7188160Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2024-06-26T05:43:10.7189630Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2024-06-26T05:43:10.7190790Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2024-06-26T05:43:10.7191420Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2024-06-26T05:43:10.7192600Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2024-06-26T05:43:10.7193810Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2024-06-26T05:43:10.7194990Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2024-06-26T05:43:10.7195860Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2024-06-26T05:43:10.7197030Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2024-06-26T05:43:10.7197730Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2024-06-26T05:43:10.7199170Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2024-06-26T05:43:10.7202420Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2024-06-26T05:43:10.7203570Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2024-06-26T05:43:10.7205300Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2024-06-26T05:43:10.7205940Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2024-06-26T05:43:10.7207540Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2024-06-26T05:43:10.7212570Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2024-06-26T05:43:10.7213750Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2024-06-26T05:43:10.7214240Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2024-06-26T05:43:10.7215820Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2024-06-26T05:43:10.7217710Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2024-06-26T05:43:10.7218290Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2024-06-26T05:43:10.7222920Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2024-06-26T05:43:10.7224190Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2024-06-26T05:43:10.7225570Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2024-06-26T05:43:10.7226760Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2024-06-26T05:43:10.7228170Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2024-06-26T05:43:10.7229870Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2024-06-26T05:43:10.7230970Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2024-06-26T05:43:10.7231870Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2024-06-26T05:43:10.7233000Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2024-06-26T05:43:10.7236560Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2024-06-26T05:43:10.7238190Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2024-06-26T05:43:10.7239330Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2024-06-26T05:43:10.7240030Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2024-06-26T05:43:10.7243830Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2024-06-26T05:43:10.7245990Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2024-06-26T05:43:10.7247320Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2024-06-26T05:43:10.7248700Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2024-06-26T05:43:10.7251980Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2024-06-26T05:43:10.7253460Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2024-06-26T05:43:10.7255330Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2024-06-26T05:43:10.7256820Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2024-06-26T05:43:10.7259400Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2024-06-26T05:43:10.7260650Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2024-06-26T05:43:10.7262090Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2024-06-26T05:43:10.7263690Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2024-06-26T05:43:10.7265310Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2024-06-26T05:43:10.7266760Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2024-06-26T05:43:10.7268280Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2024-06-26T05:43:10.7272100Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2024-06-26T05:43:10.7273770Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2024-06-26T05:43:10.7275710Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2024-06-26T05:43:10.7276950Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2024-06-26T05:43:10.7280140Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2024-06-26T05:43:10.7282440Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2024-06-26T05:43:10.7284160Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2024-06-26T05:43:10.7285650Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2024-06-26T05:43:10.7287240Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2024-06-26T05:43:10.7288370Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2024-06-26T05:43:10.7289210Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2024-06-26T05:43:10.7292780Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2024-06-26T05:43:10.7294480Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2024-06-26T05:43:10.7295930Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2024-06-26T05:43:10.7297420Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2024-06-26T05:43:10.7299540Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2024-06-26T05:43:10.7301810Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2024-06-26T05:43:10.7303060Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2024-06-26T05:43:10.7304520Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2024-06-26T05:43:10.7306100Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2024-06-26T05:43:10.7309200Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2024-06-26T05:43:10.7312260Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2024-06-26T05:43:10.7313420Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2024-06-26T05:43:10.7314270Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2024-06-26T05:43:10.7316400Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2024-06-26T05:43:10.7317350Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2024-06-26T05:43:10.7318610Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2024-06-26T05:43:10.7320440Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2024-06-26T05:43:10.7321600Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2024-06-26T05:43:10.7322800Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2024-06-26T05:43:10.7323940Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2024-06-26T05:43:10.7327100Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2024-06-26T05:43:10.7328650Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2024-06-26T05:43:10.7330110Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2024-06-26T05:43:10.7331300Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2024-06-26T05:43:10.7333490Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2024-06-26T05:43:10.7335110Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2024-06-26T05:43:10.7336320Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2024-06-26T05:43:10.7337560Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2024-06-26T05:43:10.7338180Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2024-06-26T05:43:10.7339770Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2024-06-26T05:43:10.7340610Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2024-06-26T05:43:10.7343690Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2024-06-26T05:43:10.7345380Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2024-06-26T05:43:10.7346660Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2024-06-26T05:43:10.7349490Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2024-06-26T05:43:10.7351160Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2024-06-26T05:43:10.7352360Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2024-06-26T05:43:10.7353570Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2024-06-26T05:43:10.7354880Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2024-06-26T05:43:10.7356870Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2024-06-26T05:43:10.7358060Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2024-06-26T05:43:10.7360560Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2024-06-26T05:43:10.7361730Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2024-06-26T05:43:10.7363100Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2024-06-26T05:43:10.7364430Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2024-06-26T05:43:10.7364730Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2024-06-26T05:43:10.7366060Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2024-06-26T05:43:10.7367440Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2024-06-26T05:43:10.7368610Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2024-06-26T05:43:10.7369170Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2024-06-26T05:43:10.7374720Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2024-06-26T05:43:10.7375560Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2024-06-26T05:43:10.7378720Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2024-06-26T05:43:10.7379850Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2024-06-26T05:43:10.7381470Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2024-06-26T05:43:10.7382450Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2024-06-26T05:43:10.7383210Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2024-06-26T05:43:10.7387350Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2024-06-26T05:43:10.7388500Z adding 'torch/include/torch/csrc/autograd/edge.h' 2024-06-26T05:43:10.7394600Z adding 'torch/include/torch/csrc/autograd/engine.h' 2024-06-26T05:43:10.7394920Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2024-06-26T05:43:10.7401070Z adding 'torch/include/torch/csrc/autograd/function.h' 2024-06-26T05:43:10.7402270Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2024-06-26T05:43:10.7402890Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2024-06-26T05:43:10.7405640Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2024-06-26T05:43:10.7406810Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2024-06-26T05:43:10.7407990Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2024-06-26T05:43:10.7409080Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2024-06-26T05:43:10.7409520Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2024-06-26T05:43:10.7411610Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2024-06-26T05:43:10.7414280Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2024-06-26T05:43:10.7414830Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2024-06-26T05:43:10.7416060Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2024-06-26T05:43:10.7416660Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2024-06-26T05:43:10.7418250Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2024-06-26T05:43:10.7419090Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2024-06-26T05:43:10.7419950Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2024-06-26T05:43:10.7420610Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2024-06-26T05:43:10.7422530Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2024-06-26T05:43:10.7423670Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2024-06-26T05:43:10.7424150Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2024-06-26T05:43:10.7425220Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2024-06-26T05:43:10.7425680Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2024-06-26T05:43:10.7426710Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2024-06-26T05:43:10.7427620Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2024-06-26T05:43:10.7428170Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2024-06-26T05:43:10.7429250Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2024-06-26T05:43:10.7429800Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2024-06-26T05:43:10.7431380Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2024-06-26T05:43:10.7432610Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2024-06-26T05:43:10.7433440Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2024-06-26T05:43:10.7435080Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2024-06-26T05:43:10.7435720Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2024-06-26T05:43:10.7436670Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2024-06-26T05:43:10.7445990Z adding 'torch/include/torch/csrc/autograd/variable.h' 2024-06-26T05:43:10.7447180Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2024-06-26T05:43:10.7450780Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2024-06-26T05:43:10.7452060Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2024-06-26T05:43:10.7452910Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2024-06-26T05:43:10.7453780Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2024-06-26T05:43:10.7456090Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2024-06-26T05:43:10.7457470Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2024-06-26T05:43:10.7494070Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2024-06-26T05:43:10.7498450Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2024-06-26T05:43:10.7501570Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2024-06-26T05:43:10.7502770Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2024-06-26T05:43:10.7503960Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2024-06-26T05:43:10.7508150Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2024-06-26T05:43:10.7509550Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2024-06-26T05:43:10.7510860Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2024-06-26T05:43:10.7511710Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2024-06-26T05:43:10.7512880Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2024-06-26T05:43:10.7513500Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2024-06-26T05:43:10.7515050Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2024-06-26T05:43:10.7516970Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2024-06-26T05:43:10.7517550Z adding 'torch/include/torch/csrc/cuda/Event.h' 2024-06-26T05:43:10.7518760Z adding 'torch/include/torch/csrc/cuda/Module.h' 2024-06-26T05:43:10.7519280Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2024-06-26T05:43:10.7520330Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2024-06-26T05:43:10.7521230Z adding 'torch/include/torch/csrc/cuda/comm.h' 2024-06-26T05:43:10.7521910Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2024-06-26T05:43:10.7523220Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2024-06-26T05:43:10.7524630Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2024-06-26T05:43:10.7525190Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2024-06-26T05:43:10.7526290Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2024-06-26T05:43:10.7528970Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2024-06-26T05:43:10.7530910Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2024-06-26T05:43:10.7532370Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2024-06-26T05:43:10.7533540Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2024-06-26T05:43:10.7534720Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2024-06-26T05:43:10.7535460Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2024-06-26T05:43:10.7536700Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2024-06-26T05:43:10.7537430Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2024-06-26T05:43:10.7538620Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2024-06-26T05:43:10.7539860Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2024-06-26T05:43:10.7541060Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2024-06-26T05:43:10.7542230Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2024-06-26T05:43:10.7542810Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2024-06-26T05:43:10.7543870Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2024-06-26T05:43:10.7546850Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2024-06-26T05:43:10.7548290Z adding 'torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory.hpp' 2024-06-26T05:43:10.7549660Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2024-06-26T05:43:10.7550790Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2024-06-26T05:43:10.7551370Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2024-06-26T05:43:10.7552470Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2024-06-26T05:43:10.7553300Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2024-06-26T05:43:10.7560690Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2024-06-26T05:43:10.7562580Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2024-06-26T05:43:10.7563730Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2024-06-26T05:43:10.7567990Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2024-06-26T05:43:10.7569490Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupCudaP2P.hpp' 2024-06-26T05:43:10.7572720Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2024-06-26T05:43:10.7574780Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2024-06-26T05:43:10.7585080Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2024-06-26T05:43:10.7586690Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.hpp' 2024-06-26T05:43:10.7588810Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2024-06-26T05:43:10.7590330Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2024-06-26T05:43:10.7591980Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2024-06-26T05:43:10.7593100Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2024-06-26T05:43:10.7594370Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2024-06-26T05:43:10.7596240Z adding 'torch/include/torch/csrc/distributed/c10d/SymmetricMemory.hpp' 2024-06-26T05:43:10.7597660Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2024-06-26T05:43:10.7598860Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2024-06-26T05:43:10.7600990Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2024-06-26T05:43:10.7602540Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2024-06-26T05:43:10.7603740Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2024-06-26T05:43:10.7605460Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2024-06-26T05:43:10.7606340Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2024-06-26T05:43:10.7610710Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2024-06-26T05:43:10.7611600Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2024-06-26T05:43:10.7613310Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2024-06-26T05:43:10.7613950Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2024-06-26T05:43:10.7615680Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2024-06-26T05:43:10.7616500Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2024-06-26T05:43:10.7617740Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2024-06-26T05:43:10.7618340Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2024-06-26T05:43:10.7619430Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2024-06-26T05:43:10.7621080Z adding 'torch/include/torch/csrc/distributed/c10d/intra_node_comm.hpp' 2024-06-26T05:43:10.7622780Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2024-06-26T05:43:10.7623960Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2024-06-26T05:43:10.7624660Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2024-06-26T05:43:10.7631060Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2024-06-26T05:43:10.7632370Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2024-06-26T05:43:10.7633540Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2024-06-26T05:43:10.7634360Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2024-06-26T05:43:10.7636010Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2024-06-26T05:43:10.7637950Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2024-06-26T05:43:10.7639230Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2024-06-26T05:43:10.7640110Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2024-06-26T05:43:10.7641300Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2024-06-26T05:43:10.7642170Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2024-06-26T05:43:10.7642990Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2024-06-26T05:43:10.7644740Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2024-06-26T05:43:10.7645920Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2024-06-26T05:43:10.7646560Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2024-06-26T05:43:10.7648050Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2024-06-26T05:43:10.7648510Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2024-06-26T05:43:10.7652070Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2024-06-26T05:43:10.7653040Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2024-06-26T05:43:10.7657270Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2024-06-26T05:43:10.7661460Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2024-06-26T05:43:10.7662960Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2024-06-26T05:43:10.7664150Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2024-06-26T05:43:10.7665060Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2024-06-26T05:43:10.7666160Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2024-06-26T05:43:10.7670130Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2024-06-26T05:43:10.7671750Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2024-06-26T05:43:10.7672950Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2024-06-26T05:43:10.7673730Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2024-06-26T05:43:10.7674970Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2024-06-26T05:43:10.7675760Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2024-06-26T05:43:10.7677230Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2024-06-26T05:43:10.7678670Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2024-06-26T05:43:10.7683440Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2024-06-26T05:43:10.7684260Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2024-06-26T05:43:10.7685370Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2024-06-26T05:43:10.7686310Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2024-06-26T05:43:10.7687290Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2024-06-26T05:43:10.7689120Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2024-06-26T05:43:10.7690320Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2024-06-26T05:43:10.7690880Z adding 'torch/include/torch/csrc/dynamo/init.h' 2024-06-26T05:43:10.7692160Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2024-06-26T05:43:10.7692520Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2024-06-26T05:43:10.7697610Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2024-06-26T05:43:10.7698050Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2024-06-26T05:43:10.7698340Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2024-06-26T05:43:10.7698620Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2024-06-26T05:43:10.7698820Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2024-06-26T05:43:10.7700900Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2024-06-26T05:43:10.7702050Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2024-06-26T05:43:10.7703710Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2024-06-26T05:43:10.7707640Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2024-06-26T05:43:10.7711510Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2024-06-26T05:43:10.7712680Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2024-06-26T05:43:10.7713850Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2024-06-26T05:43:10.7715280Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2024-06-26T05:43:10.7716480Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2024-06-26T05:43:10.7717650Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2024-06-26T05:43:10.7718170Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2024-06-26T05:43:10.7719380Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2024-06-26T05:43:10.7720850Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2024-06-26T05:43:10.7724830Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2024-06-26T05:43:10.7728160Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2024-06-26T05:43:10.7731590Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2024-06-26T05:43:10.7733470Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2024-06-26T05:43:10.7734650Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2024-06-26T05:43:10.7735280Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2024-06-26T05:43:10.7738630Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2024-06-26T05:43:10.7740460Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2024-06-26T05:43:10.7741630Z adding 'torch/include/torch/csrc/jit/api/method.h' 2024-06-26T05:43:10.7746990Z adding 'torch/include/torch/csrc/jit/api/module.h' 2024-06-26T05:43:10.7748820Z adding 'torch/include/torch/csrc/jit/api/object.h' 2024-06-26T05:43:10.7750400Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2024-06-26T05:43:10.7752440Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2024-06-26T05:43:10.7753660Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2024-06-26T05:43:10.7754580Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2024-06-26T05:43:10.7755800Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2024-06-26T05:43:10.7756360Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2024-06-26T05:43:10.7757700Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2024-06-26T05:43:10.7758230Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2024-06-26T05:43:10.7759380Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2024-06-26T05:43:10.7760820Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2024-06-26T05:43:10.7762180Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2024-06-26T05:43:10.7762900Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2024-06-26T05:43:10.7765440Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2024-06-26T05:43:10.7766240Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2024-06-26T05:43:10.7767100Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2024-06-26T05:43:10.7768260Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2024-06-26T05:43:10.7768780Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2024-06-26T05:43:10.7770030Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2024-06-26T05:43:10.7770630Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2024-06-26T05:43:10.7771690Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2024-06-26T05:43:10.7776270Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2024-06-26T05:43:10.7777530Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2024-06-26T05:43:10.7778390Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2024-06-26T05:43:10.7779720Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2024-06-26T05:43:10.7780510Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2024-06-26T05:43:10.7781420Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2024-06-26T05:43:10.7782540Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2024-06-26T05:43:10.7783750Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2024-06-26T05:43:10.7784650Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2024-06-26T05:43:10.7785790Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2024-06-26T05:43:10.7788870Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2024-06-26T05:43:10.7790030Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2024-06-26T05:43:10.7790440Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2024-06-26T05:43:10.7796170Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2024-06-26T05:43:10.7798730Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2024-06-26T05:43:10.7800720Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2024-06-26T05:43:10.7807230Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2024-06-26T05:43:10.7808430Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2024-06-26T05:43:10.7811850Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2024-06-26T05:43:10.7813360Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2024-06-26T05:43:10.7814530Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2024-06-26T05:43:10.7816130Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2024-06-26T05:43:10.7816960Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2024-06-26T05:43:10.7829640Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2024-06-26T05:43:10.7831510Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2024-06-26T05:43:10.7832550Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2024-06-26T05:43:10.7833770Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2024-06-26T05:43:10.7834630Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2024-06-26T05:43:10.7836480Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2024-06-26T05:43:10.7837960Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2024-06-26T05:43:10.7838570Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2024-06-26T05:43:10.7840170Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2024-06-26T05:43:10.7841300Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2024-06-26T05:43:10.7843180Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2024-06-26T05:43:10.7844710Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2024-06-26T05:43:10.7845820Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2024-06-26T05:43:10.7847000Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2024-06-26T05:43:10.7848350Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2024-06-26T05:43:10.7849230Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2024-06-26T05:43:10.7850450Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2024-06-26T05:43:10.7850870Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2024-06-26T05:43:10.7852070Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2024-06-26T05:43:10.7853750Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2024-06-26T05:43:10.7855120Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2024-06-26T05:43:10.7856010Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2024-06-26T05:43:10.7856900Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2024-06-26T05:43:10.7857780Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2024-06-26T05:43:10.7859370Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2024-06-26T05:43:10.7860240Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2024-06-26T05:43:10.7861390Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2024-06-26T05:43:10.7862310Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2024-06-26T05:43:10.7863410Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2024-06-26T05:43:10.7864280Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2024-06-26T05:43:10.7866160Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2024-06-26T05:43:10.7866740Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2024-06-26T05:43:10.7867810Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2024-06-26T05:43:10.7868970Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2024-06-26T05:43:10.7869460Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2024-06-26T05:43:10.7870610Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2024-06-26T05:43:10.7871230Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2024-06-26T05:43:10.7872380Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2024-06-26T05:43:10.7872830Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2024-06-26T05:43:10.7874090Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2024-06-26T05:43:10.7874660Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2024-06-26T05:43:10.7875720Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2024-06-26T05:43:10.7876290Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2024-06-26T05:43:10.7877570Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2024-06-26T05:43:10.7878230Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2024-06-26T05:43:10.7879180Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2024-06-26T05:43:10.7880330Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2024-06-26T05:43:10.7880810Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2024-06-26T05:43:10.7881960Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2024-06-26T05:43:10.7882530Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2024-06-26T05:43:10.7883660Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2024-06-26T05:43:10.7884520Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2024-06-26T05:43:10.7885720Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2024-06-26T05:43:10.7886620Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2024-06-26T05:43:10.7887470Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2024-06-26T05:43:10.7888640Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2024-06-26T05:43:10.7889090Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2024-06-26T05:43:10.7890200Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2024-06-26T05:43:10.7890780Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2024-06-26T05:43:10.7891880Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2024-06-26T05:43:10.7892480Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2024-06-26T05:43:10.7893480Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2024-06-26T05:43:10.7894350Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2024-06-26T05:43:10.7895460Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2024-06-26T05:43:10.7895860Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2024-06-26T05:43:10.7897130Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2024-06-26T05:43:10.7898330Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2024-06-26T05:43:10.7898780Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2024-06-26T05:43:10.7899890Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2024-06-26T05:43:10.7900530Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2024-06-26T05:43:10.7901630Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2024-06-26T05:43:10.7902130Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2024-06-26T05:43:10.7903230Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2024-06-26T05:43:10.7903730Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2024-06-26T05:43:10.7904850Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2024-06-26T05:43:10.7905440Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2024-06-26T05:43:10.7906470Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2024-06-26T05:43:10.7907080Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2024-06-26T05:43:10.7908350Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2024-06-26T05:43:10.7908820Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2024-06-26T05:43:10.7910070Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2024-06-26T05:43:10.7910900Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2024-06-26T05:43:10.7911760Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2024-06-26T05:43:10.7912620Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2024-06-26T05:43:10.7913520Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2024-06-26T05:43:10.7914160Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2024-06-26T05:43:10.7915460Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2024-06-26T05:43:10.7916270Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2024-06-26T05:43:10.7917960Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2024-06-26T05:43:10.7918570Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2024-06-26T05:43:10.7919590Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2024-06-26T05:43:10.7920750Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2024-06-26T05:43:10.7924950Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2024-06-26T05:43:10.7925310Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2024-06-26T05:43:10.7925510Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2024-06-26T05:43:10.7925710Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2024-06-26T05:43:10.7925910Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2024-06-26T05:43:10.7926110Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2024-06-26T05:43:10.7926410Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2024-06-26T05:43:10.7927530Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2024-06-26T05:43:10.7928650Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2024-06-26T05:43:10.7929220Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2024-06-26T05:43:10.7930390Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2024-06-26T05:43:10.7930900Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2024-06-26T05:43:10.7932160Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2024-06-26T05:43:10.7933010Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2024-06-26T05:43:10.7933920Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2024-06-26T05:43:10.7935480Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2024-06-26T05:43:10.7936690Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2024-06-26T05:43:10.7937540Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2024-06-26T05:43:10.7938880Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2024-06-26T05:43:10.7940040Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2024-06-26T05:43:10.7941010Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2024-06-26T05:43:10.7942150Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2024-06-26T05:43:10.7942750Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2024-06-26T05:43:10.7944010Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2024-06-26T05:43:10.7944540Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2024-06-26T05:43:10.7946110Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2024-06-26T05:43:10.7947230Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2024-06-26T05:43:10.7947820Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2024-06-26T05:43:10.7949870Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2024-06-26T05:43:10.7951090Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2024-06-26T05:43:10.7951970Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2024-06-26T05:43:10.7958210Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2024-06-26T05:43:10.7959320Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2024-06-26T05:43:10.7959910Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2024-06-26T05:43:10.7961370Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2024-06-26T05:43:10.7963200Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2024-06-26T05:43:10.7964070Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2024-06-26T05:43:10.7964960Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2024-06-26T05:43:10.7966240Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2024-06-26T05:43:10.7967400Z adding 'torch/include/torch/csrc/jit/python/init.h' 2024-06-26T05:43:10.7968430Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2024-06-26T05:43:10.7970310Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2024-06-26T05:43:10.7979820Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2024-06-26T05:43:10.7981440Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2024-06-26T05:43:10.7982060Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2024-06-26T05:43:10.7983570Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2024-06-26T05:43:10.7984720Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2024-06-26T05:43:10.7986000Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2024-06-26T05:43:10.7987670Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2024-06-26T05:43:10.7989910Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2024-06-26T05:43:10.7990700Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2024-06-26T05:43:10.7991570Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2024-06-26T05:43:10.7992200Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2024-06-26T05:43:10.7993260Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2024-06-26T05:43:10.7993840Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2024-06-26T05:43:10.7998400Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2024-06-26T05:43:10.8000000Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2024-06-26T05:43:10.8001280Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2024-06-26T05:43:10.8002110Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2024-06-26T05:43:10.8003310Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2024-06-26T05:43:10.8004540Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2024-06-26T05:43:10.8005140Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2024-06-26T05:43:10.8006950Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2024-06-26T05:43:10.8008390Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2024-06-26T05:43:10.8010030Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2024-06-26T05:43:10.8011730Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2024-06-26T05:43:10.8013310Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2024-06-26T05:43:10.8014170Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2024-06-26T05:43:10.8015010Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2024-06-26T05:43:10.8016270Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2024-06-26T05:43:10.8018810Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2024-06-26T05:43:10.8019450Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2024-06-26T05:43:10.8020520Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2024-06-26T05:43:10.8021820Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2024-06-26T05:43:10.8024010Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2024-06-26T05:43:10.8029640Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2024-06-26T05:43:10.8030940Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2024-06-26T05:43:10.8031910Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2024-06-26T05:43:10.8032440Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2024-06-26T05:43:10.8033610Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2024-06-26T05:43:10.8034280Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2024-06-26T05:43:10.8035380Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2024-06-26T05:43:10.8036650Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2024-06-26T05:43:10.8037280Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2024-06-26T05:43:10.8038410Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2024-06-26T05:43:10.8039050Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2024-06-26T05:43:10.8041010Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2024-06-26T05:43:10.8043410Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2024-06-26T05:43:10.8044620Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2024-06-26T05:43:10.8045810Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2024-06-26T05:43:10.8046410Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2024-06-26T05:43:10.8047930Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2024-06-26T05:43:10.8048560Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2024-06-26T05:43:10.8049670Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2024-06-26T05:43:10.8050270Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2024-06-26T05:43:10.8051510Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2024-06-26T05:43:10.8052720Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2024-06-26T05:43:10.8065450Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2024-06-26T05:43:10.8066620Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2024-06-26T05:43:10.8068040Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2024-06-26T05:43:10.8071470Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2024-06-26T05:43:10.8072660Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2024-06-26T05:43:10.8073870Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2024-06-26T05:43:10.8074400Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2024-06-26T05:43:10.8075730Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2024-06-26T05:43:10.8076600Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2024-06-26T05:43:10.8078730Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2024-06-26T05:43:10.8081290Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2024-06-26T05:43:10.8082750Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2024-06-26T05:43:10.8083930Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2024-06-26T05:43:10.8085430Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2024-06-26T05:43:10.8087510Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2024-06-26T05:43:10.8088720Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2024-06-26T05:43:10.8089590Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2024-06-26T05:43:10.8091720Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2024-06-26T05:43:10.8092980Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2024-06-26T05:43:10.8095100Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2024-06-26T05:43:10.8096270Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2024-06-26T05:43:10.8099080Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2024-06-26T05:43:10.8100480Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2024-06-26T05:43:10.8101150Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2024-06-26T05:43:10.8102640Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2024-06-26T05:43:10.8103840Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2024-06-26T05:43:10.8105370Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2024-06-26T05:43:10.8106990Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2024-06-26T05:43:10.8108940Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2024-06-26T05:43:10.8109610Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2024-06-26T05:43:10.8114030Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2024-06-26T05:43:10.8115040Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2024-06-26T05:43:10.8116210Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2024-06-26T05:43:10.8117470Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2024-06-26T05:43:10.8120520Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2024-06-26T05:43:10.8121380Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2024-06-26T05:43:10.8122540Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2024-06-26T05:43:10.8125610Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2024-06-26T05:43:10.8126990Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2024-06-26T05:43:10.8128210Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2024-06-26T05:43:10.8133210Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2024-06-26T05:43:10.8134140Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2024-06-26T05:43:10.8135240Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2024-06-26T05:43:10.8138250Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2024-06-26T05:43:10.8140210Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2024-06-26T05:43:10.8143280Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2024-06-26T05:43:10.8147780Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2024-06-26T05:43:10.8149890Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2024-06-26T05:43:10.8150790Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2024-06-26T05:43:10.8152280Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2024-06-26T05:43:10.8153200Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2024-06-26T05:43:10.8154370Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2024-06-26T05:43:10.8155740Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2024-06-26T05:43:10.8156390Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2024-06-26T05:43:10.8157780Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2024-06-26T05:43:10.8158330Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2024-06-26T05:43:10.8159460Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2024-06-26T05:43:10.8160610Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2024-06-26T05:43:10.8161810Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2024-06-26T05:43:10.8162310Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2024-06-26T05:43:10.8163420Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2024-06-26T05:43:10.8164800Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2024-06-26T05:43:10.8165690Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2024-06-26T05:43:10.8167330Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2024-06-26T05:43:10.8168530Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2024-06-26T05:43:10.8170120Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2024-06-26T05:43:10.8171410Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2024-06-26T05:43:10.8176490Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2024-06-26T05:43:10.8176800Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2024-06-26T05:43:10.8176970Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2024-06-26T05:43:10.8177130Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2024-06-26T05:43:10.8177550Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2024-06-26T05:43:10.8179060Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2024-06-26T05:43:10.8181320Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2024-06-26T05:43:10.8182750Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2024-06-26T05:43:10.8183630Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2024-06-26T05:43:10.8184790Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2024-06-26T05:43:10.8185630Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2024-06-26T05:43:10.8188870Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2024-06-26T05:43:10.8190920Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2024-06-26T05:43:10.8192040Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2024-06-26T05:43:10.8192920Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2024-06-26T05:43:10.8194160Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2024-06-26T05:43:10.8196270Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2024-06-26T05:43:10.8198770Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2024-06-26T05:43:10.8199970Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2024-06-26T05:43:10.8201200Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2024-06-26T05:43:10.8201730Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2024-06-26T05:43:10.8203120Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2024-06-26T05:43:10.8204110Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2024-06-26T05:43:10.8205350Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2024-06-26T05:43:10.8206650Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2024-06-26T05:43:10.8207840Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2024-06-26T05:43:10.8208420Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2024-06-26T05:43:10.8209800Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2024-06-26T05:43:10.8210950Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2024-06-26T05:43:10.8212130Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2024-06-26T05:43:10.8213300Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2024-06-26T05:43:10.8213780Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2024-06-26T05:43:10.8214990Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2024-06-26T05:43:10.8215830Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2024-06-26T05:43:10.8216830Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2024-06-26T05:43:10.8218380Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2024-06-26T05:43:10.8219680Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2024-06-26T05:43:10.8220580Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2024-06-26T05:43:10.8221750Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2024-06-26T05:43:10.8222360Z adding 'torch/include/torch/csrc/onnx/init.h' 2024-06-26T05:43:10.8223450Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2024-06-26T05:43:10.8224680Z adding 'torch/include/torch/csrc/profiler/api.h' 2024-06-26T05:43:10.8228730Z adding 'torch/include/torch/csrc/profiler/collection.h' 2024-06-26T05:43:10.8230120Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2024-06-26T05:43:10.8231830Z adding 'torch/include/torch/csrc/profiler/containers.h' 2024-06-26T05:43:10.8233260Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2024-06-26T05:43:10.8234120Z adding 'torch/include/torch/csrc/profiler/events.h' 2024-06-26T05:43:10.8235580Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2024-06-26T05:43:10.8236430Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2024-06-26T05:43:10.8237740Z adding 'torch/include/torch/csrc/profiler/perf.h' 2024-06-26T05:43:10.8239320Z adding 'torch/include/torch/csrc/profiler/util.h' 2024-06-26T05:43:10.8241240Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2024-06-26T05:43:10.8242440Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2024-06-26T05:43:10.8243040Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2024-06-26T05:43:10.8244540Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2024-06-26T05:43:10.8245160Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2024-06-26T05:43:10.8246410Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2024-06-26T05:43:10.8247680Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2024-06-26T05:43:10.8248120Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2024-06-26T05:43:10.8249250Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2024-06-26T05:43:10.8250150Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2024-06-26T05:43:10.8251470Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2024-06-26T05:43:10.8252800Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2024-06-26T05:43:10.8254020Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2024-06-26T05:43:10.8255980Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2024-06-26T05:43:10.8257150Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2024-06-26T05:43:10.8258560Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2024-06-26T05:43:10.8259740Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2024-06-26T05:43:10.8261060Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2024-06-26T05:43:10.8263570Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2024-06-26T05:43:10.8265010Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2024-06-26T05:43:10.8267430Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2024-06-26T05:43:10.8268950Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2024-06-26T05:43:10.8270140Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2024-06-26T05:43:10.8271490Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2024-06-26T05:43:10.8272340Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2024-06-26T05:43:10.8273540Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2024-06-26T05:43:10.8274680Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2024-06-26T05:43:10.8275880Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2024-06-26T05:43:10.8277800Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2024-06-26T05:43:10.8278410Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2024-06-26T05:43:10.8279540Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2024-06-26T05:43:10.8280700Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2024-06-26T05:43:10.8281580Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2024-06-26T05:43:10.8282370Z adding 'torch/include/torch/csrc/utils/init.h' 2024-06-26T05:43:10.8283280Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2024-06-26T05:43:10.8284090Z adding 'torch/include/torch/csrc/utils/nested.h' 2024-06-26T05:43:10.8284960Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2024-06-26T05:43:10.8286090Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2024-06-26T05:43:10.8286600Z adding 'torch/include/torch/csrc/utils/out_types.h' 2024-06-26T05:43:10.8289380Z adding 'torch/include/torch/csrc/utils/pybind.h' 2024-06-26T05:43:10.8290300Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2024-06-26T05:43:10.8290880Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2024-06-26T05:43:10.8299280Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2024-06-26T05:43:10.8300410Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2024-06-26T05:43:10.8301040Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2024-06-26T05:43:10.8302740Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2024-06-26T05:43:10.8303940Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2024-06-26T05:43:10.8305350Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2024-06-26T05:43:10.8306780Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2024-06-26T05:43:10.8307310Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2024-06-26T05:43:10.8309190Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2024-06-26T05:43:10.8310120Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2024-06-26T05:43:10.8310940Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2024-06-26T05:43:10.8314530Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2024-06-26T05:43:10.8315900Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2024-06-26T05:43:10.8317040Z adding 'torch/include/torch/csrc/utils/six.h' 2024-06-26T05:43:10.8317520Z adding 'torch/include/torch/csrc/utils/structseq.h' 2024-06-26T05:43:10.8318660Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2024-06-26T05:43:10.8319210Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2024-06-26T05:43:10.8320680Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2024-06-26T05:43:10.8321200Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2024-06-26T05:43:10.8322270Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2024-06-26T05:43:10.8323170Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2024-06-26T05:43:10.8324310Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2024-06-26T05:43:10.8325160Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2024-06-26T05:43:10.8325770Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2024-06-26T05:43:10.8327040Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2024-06-26T05:43:10.8328680Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2024-06-26T05:43:10.8330690Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2024-06-26T05:43:10.8331870Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2024-06-26T05:43:10.8333100Z adding 'torch/include/torch/csrc/utils/variadic.h' 2024-06-26T05:43:10.8333630Z adding 'torch/include/torch/csrc/utils/verbose.h' 2024-06-26T05:43:10.8335030Z adding 'torch/include/torch/csrc/xpu/Event.h' 2024-06-26T05:43:10.8335650Z adding 'torch/include/torch/csrc/xpu/Module.h' 2024-06-26T05:43:10.8336730Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2024-06-26T05:43:10.8339560Z adding 'torch/jit/__init__.py' 2024-06-26T05:43:10.8341000Z adding 'torch/jit/_async.py' 2024-06-26T05:43:10.8342170Z adding 'torch/jit/_await.py' 2024-06-26T05:43:10.8344190Z adding 'torch/jit/_builtins.py' 2024-06-26T05:43:10.8346470Z adding 'torch/jit/_check.py' 2024-06-26T05:43:10.8348380Z adding 'torch/jit/_dataclass_impls.py' 2024-06-26T05:43:10.8349210Z adding 'torch/jit/_decomposition_utils.py' 2024-06-26T05:43:10.8350710Z adding 'torch/jit/_decompositions.py' 2024-06-26T05:43:10.8353040Z adding 'torch/jit/_freeze.py' 2024-06-26T05:43:10.8354920Z adding 'torch/jit/_fuser.py' 2024-06-26T05:43:10.8355520Z adding 'torch/jit/_ir_utils.py' 2024-06-26T05:43:10.8356640Z adding 'torch/jit/_logging.py' 2024-06-26T05:43:10.8358740Z adding 'torch/jit/_monkeytype_config.py' 2024-06-26T05:43:10.8359910Z adding 'torch/jit/_pickle.py' 2024-06-26T05:43:10.8369620Z adding 'torch/jit/_recursive.py' 2024-06-26T05:43:10.8384760Z adding 'torch/jit/_script.py' 2024-06-26T05:43:10.8387300Z adding 'torch/jit/_serialization.py' 2024-06-26T05:43:10.8396510Z adding 'torch/jit/_shape_functions.py' 2024-06-26T05:43:10.8398110Z adding 'torch/jit/_state.py' 2024-06-26T05:43:10.8410320Z adding 'torch/jit/_trace.py' 2024-06-26T05:43:10.8415040Z adding 'torch/jit/annotations.py' 2024-06-26T05:43:10.8424660Z adding 'torch/jit/frontend.py' 2024-06-26T05:43:10.8425870Z adding 'torch/jit/generate_bytecode.py' 2024-06-26T05:43:10.8426990Z adding 'torch/jit/quantized.py' 2024-06-26T05:43:10.8429390Z adding 'torch/jit/supported_ops.py' 2024-06-26T05:43:10.8430630Z adding 'torch/jit/unsupported_tensor_ops.py' 2024-06-26T05:43:10.8431770Z adding 'torch/jit/_passes/__init__.py' 2024-06-26T05:43:10.8432630Z adding 'torch/jit/_passes/_property_propagation.py' 2024-06-26T05:43:10.8434760Z adding 'torch/jit/mobile/__init__.py' 2024-06-26T05:43:10.8674300Z adding 'torch/lib/libc10.dylib' 2024-06-26T05:43:10.8905880Z adding 'torch/lib/libomp.dylib' 2024-06-26T05:43:10.8919380Z adding 'torch/lib/libshm.dylib' 2024-06-26T05:43:10.8921830Z adding 'torch/lib/libtorch.dylib' 2024-06-26T05:43:14.5651220Z adding 'torch/lib/libtorch_cpu.dylib' 2024-06-26T05:43:14.6404050Z adding 'torch/lib/libtorch_global_deps.dylib' 2024-06-26T05:43:15.1483560Z adding 'torch/lib/libtorch_python.dylib' 2024-06-26T05:43:15.1598250Z adding 'torch/linalg/__init__.py' 2024-06-26T05:43:15.1600090Z adding 'torch/masked/__init__.py' 2024-06-26T05:43:15.1604250Z adding 'torch/masked/_docs.py' 2024-06-26T05:43:15.1617640Z adding 'torch/masked/_ops.py' 2024-06-26T05:43:15.1619530Z adding 'torch/masked/maskedtensor/__init__.py' 2024-06-26T05:43:15.1622490Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2024-06-26T05:43:15.1624410Z adding 'torch/masked/maskedtensor/binary.py' 2024-06-26T05:43:15.1627560Z adding 'torch/masked/maskedtensor/core.py' 2024-06-26T05:43:15.1628810Z adding 'torch/masked/maskedtensor/creation.py' 2024-06-26T05:43:15.1629860Z adding 'torch/masked/maskedtensor/passthrough.py' 2024-06-26T05:43:15.1631790Z adding 'torch/masked/maskedtensor/reductions.py' 2024-06-26T05:43:15.1633400Z adding 'torch/masked/maskedtensor/unary.py' 2024-06-26T05:43:15.1634900Z adding 'torch/monitor/__init__.py' 2024-06-26T05:43:15.1637000Z adding 'torch/mps/__init__.py' 2024-06-26T05:43:15.1638290Z adding 'torch/mps/event.py' 2024-06-26T05:43:15.1639590Z adding 'torch/mps/profiler.py' 2024-06-26T05:43:15.1642330Z adding 'torch/mtia/__init__.py' 2024-06-26T05:43:15.1643620Z adding 'torch/mtia/_utils.py' 2024-06-26T05:43:15.1645320Z adding 'torch/multiprocessing/__init__.py' 2024-06-26T05:43:15.1646500Z adding 'torch/multiprocessing/_atfork.py' 2024-06-26T05:43:15.1647710Z adding 'torch/multiprocessing/pool.py' 2024-06-26T05:43:15.1648910Z adding 'torch/multiprocessing/queue.py' 2024-06-26T05:43:15.1653880Z adding 'torch/multiprocessing/reductions.py' 2024-06-26T05:43:15.1656840Z adding 'torch/multiprocessing/spawn.py' 2024-06-26T05:43:15.1661050Z adding 'torch/nested/__init__.py' 2024-06-26T05:43:15.1662330Z adding 'torch/nested/_internal/__init__.py' 2024-06-26T05:43:15.1666830Z adding 'torch/nested/_internal/nested_tensor.py' 2024-06-26T05:43:15.1674180Z adding 'torch/nested/_internal/ops.py' 2024-06-26T05:43:15.1680220Z adding 'torch/nested/_internal/sdpa.py' 2024-06-26T05:43:15.1682120Z adding 'torch/nn/__init__.py' 2024-06-26T05:43:15.1683410Z adding 'torch/nn/_reduction.py' 2024-06-26T05:43:15.1684700Z adding 'torch/nn/common_types.py' 2024-06-26T05:43:15.1686100Z adding 'torch/nn/cpp.py' 2024-06-26T05:43:15.1730900Z adding 'torch/nn/functional.py' 2024-06-26T05:43:15.1735150Z adding 'torch/nn/functional.pyi' 2024-06-26T05:43:15.1737010Z adding 'torch/nn/grad.py' 2024-06-26T05:43:15.1741320Z adding 'torch/nn/init.py' 2024-06-26T05:43:15.1743880Z adding 'torch/nn/parameter.py' 2024-06-26T05:43:15.1745050Z adding 'torch/nn/parameter.pyi' 2024-06-26T05:43:15.1747060Z adding 'torch/nn/attention/__init__.py' 2024-06-26T05:43:15.1749040Z adding 'torch/nn/attention/_flex_attention.py' 2024-06-26T05:43:15.1750250Z adding 'torch/nn/attention/_utils.py' 2024-06-26T05:43:15.1753120Z adding 'torch/nn/attention/bias.py' 2024-06-26T05:43:15.1754390Z adding 'torch/nn/backends/__init__.py' 2024-06-26T05:43:15.1755250Z adding 'torch/nn/backends/thnn.py' 2024-06-26T05:43:15.1756790Z adding 'torch/nn/intrinsic/__init__.py' 2024-06-26T05:43:15.1758120Z adding 'torch/nn/intrinsic/modules/__init__.py' 2024-06-26T05:43:15.1759320Z adding 'torch/nn/intrinsic/modules/fused.py' 2024-06-26T05:43:15.1760500Z adding 'torch/nn/intrinsic/qat/__init__.py' 2024-06-26T05:43:15.1761750Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2024-06-26T05:43:15.1763010Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2024-06-26T05:43:15.1763750Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2024-06-26T05:43:15.1765050Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2024-06-26T05:43:15.1766320Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2024-06-26T05:43:15.1767570Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2024-06-26T05:43:15.1768890Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2024-06-26T05:43:15.1769590Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2024-06-26T05:43:15.1771070Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2024-06-26T05:43:15.1771870Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2024-06-26T05:43:15.1777690Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2024-06-26T05:43:15.1778160Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2024-06-26T05:43:15.1778610Z adding 'torch/nn/modules/__init__.py' 2024-06-26T05:43:15.1779070Z adding 'torch/nn/modules/_functions.py' 2024-06-26T05:43:15.1789260Z adding 'torch/nn/modules/activation.py' 2024-06-26T05:43:15.1792530Z adding 'torch/nn/modules/adaptive.py' 2024-06-26T05:43:15.1798330Z adding 'torch/nn/modules/batchnorm.py' 2024-06-26T05:43:15.1799730Z adding 'torch/nn/modules/channelshuffle.py' 2024-06-26T05:43:15.1806370Z adding 'torch/nn/modules/container.py' 2024-06-26T05:43:15.1816470Z adding 'torch/nn/modules/conv.py' 2024-06-26T05:43:15.1818280Z adding 'torch/nn/modules/distance.py' 2024-06-26T05:43:15.1820520Z adding 'torch/nn/modules/dropout.py' 2024-06-26T05:43:15.1822330Z adding 'torch/nn/modules/flatten.py' 2024-06-26T05:43:15.1825050Z adding 'torch/nn/modules/fold.py' 2024-06-26T05:43:15.1828050Z adding 'torch/nn/modules/instancenorm.py' 2024-06-26T05:43:15.1831100Z adding 'torch/nn/modules/lazy.py' 2024-06-26T05:43:15.1833520Z adding 'torch/nn/modules/linear.py' 2024-06-26T05:43:15.1849500Z adding 'torch/nn/modules/loss.py' 2024-06-26T05:43:15.1873980Z adding 'torch/nn/modules/module.py' 2024-06-26T05:43:15.1877560Z adding 'torch/nn/modules/normalization.py' 2024-06-26T05:43:15.1880830Z adding 'torch/nn/modules/padding.py' 2024-06-26T05:43:15.1882410Z adding 'torch/nn/modules/pixelshuffle.py' 2024-06-26T05:43:15.1889690Z adding 'torch/nn/modules/pooling.py' 2024-06-26T05:43:15.1901400Z adding 'torch/nn/modules/rnn.py' 2024-06-26T05:43:15.1905970Z adding 'torch/nn/modules/sparse.py' 2024-06-26T05:43:15.1914190Z adding 'torch/nn/modules/transformer.py' 2024-06-26T05:43:15.1916960Z adding 'torch/nn/modules/upsampling.py' 2024-06-26T05:43:15.1918460Z adding 'torch/nn/modules/utils.py' 2024-06-26T05:43:15.1919960Z adding 'torch/nn/parallel/__init__.py' 2024-06-26T05:43:15.1921720Z adding 'torch/nn/parallel/_functions.py' 2024-06-26T05:43:15.1924370Z adding 'torch/nn/parallel/comm.py' 2024-06-26T05:43:15.1927390Z adding 'torch/nn/parallel/data_parallel.py' 2024-06-26T05:43:15.1953650Z adding 'torch/nn/parallel/distributed.py' 2024-06-26T05:43:15.1956000Z adding 'torch/nn/parallel/parallel_apply.py' 2024-06-26T05:43:15.1958070Z adding 'torch/nn/parallel/replicate.py' 2024-06-26T05:43:15.1959950Z adding 'torch/nn/parallel/scatter_gather.py' 2024-06-26T05:43:15.1961340Z adding 'torch/nn/qat/__init__.py' 2024-06-26T05:43:15.1962660Z adding 'torch/nn/qat/dynamic/__init__.py' 2024-06-26T05:43:15.1963980Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2024-06-26T05:43:15.1964750Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2024-06-26T05:43:15.1966270Z adding 'torch/nn/qat/modules/__init__.py' 2024-06-26T05:43:15.1967210Z adding 'torch/nn/qat/modules/conv.py' 2024-06-26T05:43:15.1968400Z adding 'torch/nn/qat/modules/embedding_ops.py' 2024-06-26T05:43:15.1969140Z adding 'torch/nn/qat/modules/linear.py' 2024-06-26T05:43:15.1970630Z adding 'torch/nn/quantizable/__init__.py' 2024-06-26T05:43:15.1971840Z adding 'torch/nn/quantizable/modules/__init__.py' 2024-06-26T05:43:15.1972660Z adding 'torch/nn/quantizable/modules/activation.py' 2024-06-26T05:43:15.1973940Z adding 'torch/nn/quantizable/modules/rnn.py' 2024-06-26T05:43:15.1976020Z adding 'torch/nn/quantized/__init__.py' 2024-06-26T05:43:15.1977200Z adding 'torch/nn/quantized/functional.py' 2024-06-26T05:43:15.1978490Z adding 'torch/nn/quantized/_reference/__init__.py' 2024-06-26T05:43:15.1979960Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2024-06-26T05:43:15.1980700Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2024-06-26T05:43:15.1981960Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2024-06-26T05:43:15.1982660Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2024-06-26T05:43:15.1983920Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2024-06-26T05:43:15.1984600Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2024-06-26T05:43:15.1985980Z adding 'torch/nn/quantized/dynamic/__init__.py' 2024-06-26T05:43:15.1987300Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2024-06-26T05:43:15.1988020Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2024-06-26T05:43:15.1989320Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2024-06-26T05:43:15.1989970Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2024-06-26T05:43:15.1991740Z adding 'torch/nn/quantized/modules/__init__.py' 2024-06-26T05:43:15.1992490Z adding 'torch/nn/quantized/modules/activation.py' 2024-06-26T05:43:15.1993700Z adding 'torch/nn/quantized/modules/batchnorm.py' 2024-06-26T05:43:15.1994390Z adding 'torch/nn/quantized/modules/conv.py' 2024-06-26T05:43:15.1995600Z adding 'torch/nn/quantized/modules/dropout.py' 2024-06-26T05:43:15.1996290Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2024-06-26T05:43:15.1997570Z adding 'torch/nn/quantized/modules/functional_modules.py' 2024-06-26T05:43:15.1998140Z adding 'torch/nn/quantized/modules/linear.py' 2024-06-26T05:43:15.1999460Z adding 'torch/nn/quantized/modules/normalization.py' 2024-06-26T05:43:15.2000010Z adding 'torch/nn/quantized/modules/rnn.py' 2024-06-26T05:43:15.2001180Z adding 'torch/nn/quantized/modules/utils.py' 2024-06-26T05:43:15.2002550Z adding 'torch/nn/utils/__init__.py' 2024-06-26T05:43:15.2003770Z adding 'torch/nn/utils/_deprecation_utils.py' 2024-06-26T05:43:15.2006540Z adding 'torch/nn/utils/_named_member_accessor.py' 2024-06-26T05:43:15.2008420Z adding 'torch/nn/utils/_per_sample_grad.py' 2024-06-26T05:43:15.2010430Z adding 'torch/nn/utils/clip_grad.py' 2024-06-26T05:43:15.2011870Z adding 'torch/nn/utils/convert_parameters.py' 2024-06-26T05:43:15.2013580Z adding 'torch/nn/utils/fusion.py' 2024-06-26T05:43:15.2014850Z adding 'torch/nn/utils/init.py' 2024-06-26T05:43:15.2016600Z adding 'torch/nn/utils/memory_format.py' 2024-06-26T05:43:15.2022570Z adding 'torch/nn/utils/parametrizations.py' 2024-06-26T05:43:15.2030350Z adding 'torch/nn/utils/parametrize.py' 2024-06-26T05:43:15.2041000Z adding 'torch/nn/utils/prune.py' 2024-06-26T05:43:15.2045710Z adding 'torch/nn/utils/rnn.py' 2024-06-26T05:43:15.2050170Z adding 'torch/nn/utils/spectral_norm.py' 2024-06-26T05:43:15.2052090Z adding 'torch/nn/utils/stateless.py' 2024-06-26T05:43:15.2054000Z adding 'torch/nn/utils/weight_norm.py' 2024-06-26T05:43:15.2055370Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2024-06-26T05:43:15.2056710Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2024-06-26T05:43:15.2059380Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2024-06-26T05:43:15.2060880Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2024-06-26T05:43:15.2062610Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2024-06-26T05:43:15.2064690Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2024-06-26T05:43:15.2066110Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2024-06-26T05:43:15.2067540Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2024-06-26T05:43:15.2068900Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2024-06-26T05:43:15.2069790Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2024-06-26T05:43:15.2072000Z adding 'torch/onnx/__init__.py' 2024-06-26T05:43:15.2072890Z adding 'torch/onnx/_constants.py' 2024-06-26T05:43:15.2074270Z adding 'torch/onnx/_deprecation.py' 2024-06-26T05:43:15.2075820Z adding 'torch/onnx/_experimental.py' 2024-06-26T05:43:15.2077100Z adding 'torch/onnx/_exporter_states.py' 2024-06-26T05:43:15.2078470Z adding 'torch/onnx/_globals.py' 2024-06-26T05:43:15.2079920Z adding 'torch/onnx/_onnx_supported_ops.py' 2024-06-26T05:43:15.2082910Z adding 'torch/onnx/_type_utils.py' 2024-06-26T05:43:15.2084360Z adding 'torch/onnx/errors.py' 2024-06-26T05:43:15.2085660Z adding 'torch/onnx/operators.py' 2024-06-26T05:43:15.2087520Z adding 'torch/onnx/symbolic_caffe2.py' 2024-06-26T05:43:15.2104780Z adding 'torch/onnx/symbolic_helper.py' 2024-06-26T05:43:15.2110920Z adding 'torch/onnx/symbolic_opset10.py' 2024-06-26T05:43:15.2121000Z adding 'torch/onnx/symbolic_opset11.py' 2024-06-26T05:43:15.2124220Z adding 'torch/onnx/symbolic_opset12.py' 2024-06-26T05:43:15.2131470Z adding 'torch/onnx/symbolic_opset13.py' 2024-06-26T05:43:15.2133930Z adding 'torch/onnx/symbolic_opset14.py' 2024-06-26T05:43:15.2135230Z adding 'torch/onnx/symbolic_opset15.py' 2024-06-26T05:43:15.2137110Z adding 'torch/onnx/symbolic_opset16.py' 2024-06-26T05:43:15.2139240Z adding 'torch/onnx/symbolic_opset17.py' 2024-06-26T05:43:15.2141160Z adding 'torch/onnx/symbolic_opset18.py' 2024-06-26T05:43:15.2141820Z adding 'torch/onnx/symbolic_opset19.py' 2024-06-26T05:43:15.2143220Z adding 'torch/onnx/symbolic_opset20.py' 2024-06-26T05:43:15.2144380Z adding 'torch/onnx/symbolic_opset7.py' 2024-06-26T05:43:15.2147240Z adding 'torch/onnx/symbolic_opset8.py' 2024-06-26T05:43:15.2192810Z adding 'torch/onnx/symbolic_opset9.py' 2024-06-26T05:43:15.2213710Z adding 'torch/onnx/utils.py' 2024-06-26T05:43:15.2230520Z adding 'torch/onnx/verification.py' 2024-06-26T05:43:15.2232040Z adding 'torch/onnx/_internal/__init__.py' 2024-06-26T05:43:15.2233690Z adding 'torch/onnx/_internal/_beartype.py' 2024-06-26T05:43:15.2248290Z adding 'torch/onnx/_internal/exporter.py' 2024-06-26T05:43:15.2252780Z adding 'torch/onnx/_internal/io_adapter.py' 2024-06-26T05:43:15.2255980Z adding 'torch/onnx/_internal/jit_utils.py' 2024-06-26T05:43:15.2258600Z adding 'torch/onnx/_internal/onnx_proto_utils.py' 2024-06-26T05:43:15.2270140Z adding 'torch/onnx/_internal/onnxruntime.py' 2024-06-26T05:43:15.2273160Z adding 'torch/onnx/_internal/registration.py' 2024-06-26T05:43:15.2274900Z adding 'torch/onnx/_internal/diagnostics/__init__.py' 2024-06-26T05:43:15.2277000Z adding 'torch/onnx/_internal/diagnostics/_diagnostic.py' 2024-06-26T05:43:15.2282580Z adding 'torch/onnx/_internal/diagnostics/_rules.py' 2024-06-26T05:43:15.2284080Z adding 'torch/onnx/_internal/diagnostics/infra/__init__.py' 2024-06-26T05:43:15.2286470Z adding 'torch/onnx/_internal/diagnostics/infra/_infra.py' 2024-06-26T05:43:15.2289990Z adding 'torch/onnx/_internal/diagnostics/infra/context.py' 2024-06-26T05:43:15.2291680Z adding 'torch/onnx/_internal/diagnostics/infra/decorator.py' 2024-06-26T05:43:15.2293010Z adding 'torch/onnx/_internal/diagnostics/infra/formatter.py' 2024-06-26T05:43:15.2294280Z adding 'torch/onnx/_internal/diagnostics/infra/utils.py' 2024-06-26T05:43:15.2296210Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/__init__.py' 2024-06-26T05:43:15.2297000Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_address.py' 2024-06-26T05:43:15.2298480Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_artifact.py' 2024-06-26T05:43:15.2299200Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_artifact_change.py' 2024-06-26T05:43:15.2300480Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_artifact_content.py' 2024-06-26T05:43:15.2301170Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_artifact_location.py' 2024-06-26T05:43:15.2302110Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_attachment.py' 2024-06-26T05:43:15.2303310Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_code_flow.py' 2024-06-26T05:43:15.2304070Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_configuration_override.py' 2024-06-26T05:43:15.2304990Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_conversion.py' 2024-06-26T05:43:15.2306300Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_edge.py' 2024-06-26T05:43:15.2306880Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_edge_traversal.py' 2024-06-26T05:43:15.2308240Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_exception.py' 2024-06-26T05:43:15.2309080Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_external_properties.py' 2024-06-26T05:43:15.2310130Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_external_property_file_reference.py' 2024-06-26T05:43:15.2311660Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_external_property_file_references.py' 2024-06-26T05:43:15.2312230Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_fix.py' 2024-06-26T05:43:15.2313050Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_graph.py' 2024-06-26T05:43:15.2314460Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_graph_traversal.py' 2024-06-26T05:43:15.2315320Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_invocation.py' 2024-06-26T05:43:15.2316640Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_location.py' 2024-06-26T05:43:15.2317290Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_location_relationship.py' 2024-06-26T05:43:15.2318240Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_logical_location.py' 2024-06-26T05:43:15.2319110Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_message.py' 2024-06-26T05:43:15.2320530Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_multiformat_message_string.py' 2024-06-26T05:43:15.2321080Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_node.py' 2024-06-26T05:43:15.2322240Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_notification.py' 2024-06-26T05:43:15.2326840Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_physical_location.py' 2024-06-26T05:43:15.2327380Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_property_bag.py' 2024-06-26T05:43:15.2327880Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_rectangle.py' 2024-06-26T05:43:15.2328360Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_region.py' 2024-06-26T05:43:15.2328850Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_replacement.py' 2024-06-26T05:43:15.2329410Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_reporting_configuration.py' 2024-06-26T05:43:15.2329990Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor.py' 2024-06-26T05:43:15.2330610Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor_reference.py' 2024-06-26T05:43:15.2331280Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_reporting_descriptor_relationship.py' 2024-06-26T05:43:15.2331910Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_result.py' 2024-06-26T05:43:15.2333150Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_result_provenance.py' 2024-06-26T05:43:15.2334500Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_run.py' 2024-06-26T05:43:15.2335220Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_run_automation_details.py' 2024-06-26T05:43:15.2336160Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_sarif_log.py' 2024-06-26T05:43:15.2337130Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_special_locations.py' 2024-06-26T05:43:15.2338040Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_stack.py' 2024-06-26T05:43:15.2338920Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_stack_frame.py' 2024-06-26T05:43:15.2339880Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_suppression.py' 2024-06-26T05:43:15.2340830Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_thread_flow.py' 2024-06-26T05:43:15.2342270Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_thread_flow_location.py' 2024-06-26T05:43:15.2342900Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_tool.py' 2024-06-26T05:43:15.2344340Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_tool_component.py' 2024-06-26T05:43:15.2345050Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_tool_component_reference.py' 2024-06-26T05:43:15.2345990Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_translation_metadata.py' 2024-06-26T05:43:15.2347240Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_version_control_details.py' 2024-06-26T05:43:15.2347960Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_web_request.py' 2024-06-26T05:43:15.2349310Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/_web_response.py' 2024-06-26T05:43:15.2349800Z adding 'torch/onnx/_internal/diagnostics/infra/sarif/version.py' 2024-06-26T05:43:15.2351210Z adding 'torch/onnx/_internal/fx/__init__.py' 2024-06-26T05:43:15.2354240Z adding 'torch/onnx/_internal/fx/_pass.py' 2024-06-26T05:43:15.2356160Z adding 'torch/onnx/_internal/fx/decomposition_skip.py' 2024-06-26T05:43:15.2357820Z adding 'torch/onnx/_internal/fx/decomposition_table.py' 2024-06-26T05:43:15.2360010Z adding 'torch/onnx/_internal/fx/diagnostics.py' 2024-06-26T05:43:15.2362220Z adding 'torch/onnx/_internal/fx/dynamo_graph_extractor.py' 2024-06-26T05:43:15.2369710Z adding 'torch/onnx/_internal/fx/fx_onnx_interpreter.py' 2024-06-26T05:43:15.2372610Z adding 'torch/onnx/_internal/fx/fx_symbolic_graph_extractor.py' 2024-06-26T05:43:15.2380210Z adding 'torch/onnx/_internal/fx/onnxfunction_dispatcher.py' 2024-06-26T05:43:15.2383600Z adding 'torch/onnx/_internal/fx/op_validation.py' 2024-06-26T05:43:15.2385340Z adding 'torch/onnx/_internal/fx/patcher.py' 2024-06-26T05:43:15.2386690Z adding 'torch/onnx/_internal/fx/registration.py' 2024-06-26T05:43:15.2389590Z adding 'torch/onnx/_internal/fx/serialization.py' 2024-06-26T05:43:15.2391240Z adding 'torch/onnx/_internal/fx/torch_export_graph_extractor.py' 2024-06-26T05:43:15.2393190Z adding 'torch/onnx/_internal/fx/type_utils.py' 2024-06-26T05:43:15.2394400Z adding 'torch/onnx/_internal/fx/analysis/__init__.py' 2024-06-26T05:43:15.2395690Z adding 'torch/onnx/_internal/fx/analysis/unsupported_nodes.py' 2024-06-26T05:43:15.2396950Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2024-06-26T05:43:15.2398410Z adding 'torch/onnx/_internal/fx/passes/_utils.py' 2024-06-26T05:43:15.2399810Z adding 'torch/onnx/_internal/fx/passes/decomp.py' 2024-06-26T05:43:15.2401710Z adding 'torch/onnx/_internal/fx/passes/functionalization.py' 2024-06-26T05:43:15.2409340Z adding 'torch/onnx/_internal/fx/passes/modularization.py' 2024-06-26T05:43:15.2411250Z adding 'torch/onnx/_internal/fx/passes/readability.py' 2024-06-26T05:43:15.2421580Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2024-06-26T05:43:15.2423250Z adding 'torch/onnx/_internal/fx/passes/virtualization.py' 2024-06-26T05:43:15.2424710Z adding 'torch/optim/__init__.py' 2024-06-26T05:43:15.2426000Z adding 'torch/optim/_functional.py' 2024-06-26T05:43:15.2429290Z adding 'torch/optim/adadelta.py' 2024-06-26T05:43:15.2433410Z adding 'torch/optim/adagrad.py' 2024-06-26T05:43:15.2439210Z adding 'torch/optim/adam.py' 2024-06-26T05:43:15.2442680Z adding 'torch/optim/adamax.py' 2024-06-26T05:43:15.2448230Z adding 'torch/optim/adamw.py' 2024-06-26T05:43:15.2451490Z adding 'torch/optim/asgd.py' 2024-06-26T05:43:15.2455430Z adding 'torch/optim/lbfgs.py' 2024-06-26T05:43:15.2470000Z adding 'torch/optim/lr_scheduler.py' 2024-06-26T05:43:15.2474990Z adding 'torch/optim/nadam.py' 2024-06-26T05:43:15.2484450Z adding 'torch/optim/optimizer.py' 2024-06-26T05:43:15.2488990Z adding 'torch/optim/radam.py' 2024-06-26T05:43:15.2492810Z adding 'torch/optim/rmsprop.py' 2024-06-26T05:43:15.2496330Z adding 'torch/optim/rprop.py' 2024-06-26T05:43:15.2500090Z adding 'torch/optim/sgd.py' 2024-06-26T05:43:15.2502390Z adding 'torch/optim/sparse_adam.py' 2024-06-26T05:43:15.2506380Z adding 'torch/optim/swa_utils.py' 2024-06-26T05:43:15.2507730Z adding 'torch/optim/_multi_tensor/__init__.py' 2024-06-26T05:43:15.2508990Z adding 'torch/package/__init__.py' 2024-06-26T05:43:15.2510670Z adding 'torch/package/_digraph.py' 2024-06-26T05:43:15.2511850Z adding 'torch/package/_directory_reader.py' 2024-06-26T05:43:15.2513140Z adding 'torch/package/_importlib.py' 2024-06-26T05:43:15.2514300Z adding 'torch/package/_mangling.py' 2024-06-26T05:43:15.2515510Z adding 'torch/package/_mock.py' 2024-06-26T05:43:15.2517090Z adding 'torch/package/_package_pickler.py' 2024-06-26T05:43:15.2517810Z adding 'torch/package/_package_unpickler.py' 2024-06-26T05:43:15.2519680Z adding 'torch/package/_stdlib.py' 2024-06-26T05:43:15.2521370Z adding 'torch/package/file_structure_representation.py' 2024-06-26T05:43:15.2522720Z adding 'torch/package/find_file_dependencies.py' 2024-06-26T05:43:15.2524030Z adding 'torch/package/glob_group.py' 2024-06-26T05:43:15.2526520Z adding 'torch/package/importer.py' 2024-06-26T05:43:15.2537230Z adding 'torch/package/package_exporter.py' 2024-06-26T05:43:15.2544500Z adding 'torch/package/package_importer.py' 2024-06-26T05:43:15.2545720Z adding 'torch/package/analyze/__init__.py' 2024-06-26T05:43:15.2546560Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2024-06-26T05:43:15.2547440Z adding 'torch/package/analyze/is_from_package.py' 2024-06-26T05:43:15.2548820Z adding 'torch/package/analyze/trace_dependencies.py' 2024-06-26T05:43:15.2550100Z adding 'torch/profiler/__init__.py' 2024-06-26T05:43:15.2560560Z adding 'torch/profiler/_memory_profiler.py' 2024-06-26T05:43:15.2565450Z adding 'torch/profiler/_pattern_matcher.py' 2024-06-26T05:43:15.2568690Z adding 'torch/profiler/_utils.py' 2024-06-26T05:43:15.2569850Z adding 'torch/profiler/itt.py' 2024-06-26T05:43:15.2576930Z adding 'torch/profiler/profiler.py' 2024-06-26T05:43:15.2578110Z adding 'torch/profiler/python_tracer.py' 2024-06-26T05:43:15.2579560Z adding 'torch/quantization/__init__.py' 2024-06-26T05:43:15.2580280Z adding 'torch/quantization/_numeric_suite.py' 2024-06-26T05:43:15.2581530Z adding 'torch/quantization/_numeric_suite_fx.py' 2024-06-26T05:43:15.2582960Z adding 'torch/quantization/_quantized_conversions.py' 2024-06-26T05:43:15.2583610Z adding 'torch/quantization/fake_quantize.py' 2024-06-26T05:43:15.2584860Z adding 'torch/quantization/fuse_modules.py' 2024-06-26T05:43:15.2585430Z adding 'torch/quantization/fuser_method_mappings.py' 2024-06-26T05:43:15.2586810Z adding 'torch/quantization/observer.py' 2024-06-26T05:43:15.2587140Z adding 'torch/quantization/qconfig.py' 2024-06-26T05:43:15.2588310Z adding 'torch/quantization/quant_type.py' 2024-06-26T05:43:15.2589030Z adding 'torch/quantization/quantization_mappings.py' 2024-06-26T05:43:15.2590220Z adding 'torch/quantization/quantize.py' 2024-06-26T05:43:15.2590760Z adding 'torch/quantization/quantize_fx.py' 2024-06-26T05:43:15.2591940Z adding 'torch/quantization/quantize_jit.py' 2024-06-26T05:43:15.2592410Z adding 'torch/quantization/stubs.py' 2024-06-26T05:43:15.2593540Z adding 'torch/quantization/utils.py' 2024-06-26T05:43:15.2594790Z adding 'torch/quantization/fx/__init__.py' 2024-06-26T05:43:15.2595520Z adding 'torch/quantization/fx/_equalize.py' 2024-06-26T05:43:15.2596740Z adding 'torch/quantization/fx/convert.py' 2024-06-26T05:43:15.2597110Z adding 'torch/quantization/fx/fuse.py' 2024-06-26T05:43:15.2598280Z adding 'torch/quantization/fx/fusion_patterns.py' 2024-06-26T05:43:15.2598860Z adding 'torch/quantization/fx/graph_module.py' 2024-06-26T05:43:15.2600050Z adding 'torch/quantization/fx/match_utils.py' 2024-06-26T05:43:15.2600640Z adding 'torch/quantization/fx/pattern_utils.py' 2024-06-26T05:43:15.2601880Z adding 'torch/quantization/fx/prepare.py' 2024-06-26T05:43:15.2602420Z adding 'torch/quantization/fx/quantization_patterns.py' 2024-06-26T05:43:15.2603660Z adding 'torch/quantization/fx/quantization_types.py' 2024-06-26T05:43:15.2604120Z adding 'torch/quantization/fx/utils.py' 2024-06-26T05:43:15.2605950Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2024-06-26T05:43:15.2607800Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2024-06-26T05:43:15.2608560Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2024-06-26T05:43:15.2610310Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2024-06-26T05:43:15.2617700Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2024-06-26T05:43:15.2619060Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2024-06-26T05:43:15.2620310Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2024-06-26T05:43:15.2621600Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2024-06-26T05:43:15.2622490Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2024-06-26T05:43:15.2624210Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2024-06-26T05:43:15.2643450Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2024-06-26T05:43:15.2647380Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake' 2024-06-26T05:43:15.2648300Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2024-06-26T05:43:15.2650400Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2024-06-26T05:43:15.2651940Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2024-06-26T05:43:15.2654450Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2024-06-26T05:43:15.2656870Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2024-06-26T05:43:15.2658960Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2024-06-26T05:43:15.2661740Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2024-06-26T05:43:15.2663020Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2024-06-26T05:43:15.2664250Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2024-06-26T05:43:15.2664980Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2024-06-26T05:43:15.2666210Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2024-06-26T05:43:15.2667440Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2024-06-26T05:43:15.2671850Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2024-06-26T05:43:15.2672570Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2024-06-26T05:43:15.2674630Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2024-06-26T05:43:15.2675280Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2024-06-26T05:43:15.2676520Z adding 'torch/signal/__init__.py' 2024-06-26T05:43:15.2677700Z adding 'torch/signal/windows/__init__.py' 2024-06-26T05:43:15.2681320Z adding 'torch/signal/windows/windows.py' 2024-06-26T05:43:15.2686620Z adding 'torch/sparse/__init__.py' 2024-06-26T05:43:15.2689970Z adding 'torch/sparse/_semi_structured_conversions.py' 2024-06-26T05:43:15.2691520Z adding 'torch/sparse/_semi_structured_ops.py' 2024-06-26T05:43:15.2705720Z adding 'torch/sparse/_triton_ops.py' 2024-06-26T05:43:15.2766140Z adding 'torch/sparse/_triton_ops_meta.py' 2024-06-26T05:43:15.2772820Z adding 'torch/sparse/semi_structured.py' 2024-06-26T05:43:15.2777860Z adding 'torch/special/__init__.py' 2024-06-26T05:43:15.2779200Z adding 'torch/testing/__init__.py' 2024-06-26T05:43:15.2791490Z adding 'torch/testing/_comparison.py' 2024-06-26T05:43:15.2794610Z adding 'torch/testing/_creation.py' 2024-06-26T05:43:15.2795870Z adding 'torch/testing/_utils.py' 2024-06-26T05:43:15.2797280Z adding 'torch/testing/_internal/__init__.py' 2024-06-26T05:43:15.2800420Z adding 'torch/testing/_internal/autocast_test_lists.py' 2024-06-26T05:43:15.2804730Z adding 'torch/testing/_internal/autograd_function_db.py' 2024-06-26T05:43:15.2805200Z adding 'torch/testing/_internal/check_kernel_launches.py' 2024-06-26T05:43:15.2807770Z adding 'torch/testing/_internal/common_cuda.py' 2024-06-26T05:43:15.2823500Z adding 'torch/testing/_internal/common_device_type.py' 2024-06-26T05:43:15.2825110Z adding 'torch/testing/_internal/common_dist_composable.py' 2024-06-26T05:43:15.2836080Z adding 'torch/testing/_internal/common_distributed.py' 2024-06-26T05:43:15.2837710Z adding 'torch/testing/_internal/common_dtype.py' 2024-06-26T05:43:15.2848580Z adding 'torch/testing/_internal/common_fsdp.py' 2024-06-26T05:43:15.2851920Z adding 'torch/testing/_internal/common_jit.py' 2024-06-26T05:43:15.3012730Z adding 'torch/testing/_internal/common_methods_invocations.py' 2024-06-26T05:43:15.3019700Z adding 'torch/testing/_internal/common_mkldnn.py' 2024-06-26T05:43:15.3042320Z adding 'torch/testing/_internal/common_modules.py' 2024-06-26T05:43:15.3066310Z adding 'torch/testing/_internal/common_nn.py' 2024-06-26T05:43:15.3076340Z adding 'torch/testing/_internal/common_optimizers.py' 2024-06-26T05:43:15.3078770Z adding 'torch/testing/_internal/common_pruning.py' 2024-06-26T05:43:15.3097440Z adding 'torch/testing/_internal/common_quantization.py' 2024-06-26T05:43:15.3100390Z adding 'torch/testing/_internal/common_quantized.py' 2024-06-26T05:43:15.3102490Z adding 'torch/testing/_internal/common_subclass.py' 2024-06-26T05:43:15.3153020Z adding 'torch/testing/_internal/common_utils.py' 2024-06-26T05:43:15.3159360Z adding 'torch/testing/_internal/composite_compliance.py' 2024-06-26T05:43:15.3162340Z adding 'torch/testing/_internal/custom_op_db.py' 2024-06-26T05:43:15.3164470Z adding 'torch/testing/_internal/dist_utils.py' 2024-06-26T05:43:15.3166150Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2024-06-26T05:43:15.3167660Z adding 'torch/testing/_internal/hop_db.py' 2024-06-26T05:43:15.3174230Z adding 'torch/testing/_internal/hypothesis_utils.py' 2024-06-26T05:43:15.3175570Z adding 'torch/testing/_internal/inductor_utils.py' 2024-06-26T05:43:15.3181690Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2024-06-26T05:43:15.3188400Z adding 'torch/testing/_internal/jit_utils.py' 2024-06-26T05:43:15.3190620Z adding 'torch/testing/_internal/logging_tensor.py' 2024-06-26T05:43:15.3192570Z adding 'torch/testing/_internal/logging_utils.py' 2024-06-26T05:43:15.3193350Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2024-06-26T05:43:15.3194200Z adding 'torch/testing/_internal/static_module.py' 2024-06-26T05:43:15.3195790Z adding 'torch/testing/_internal/torchbind_impls.py' 2024-06-26T05:43:15.3197720Z adding 'torch/testing/_internal/triton_utils.py' 2024-06-26T05:43:15.3199020Z adding 'torch/testing/_internal/two_tensor.py' 2024-06-26T05:43:15.3200220Z adding 'torch/testing/_internal/codegen/__init__.py' 2024-06-26T05:43:15.3200900Z adding 'torch/testing/_internal/data/__init__.py' 2024-06-26T05:43:15.3201850Z adding 'torch/testing/_internal/data/network1.py' 2024-06-26T05:43:15.3202510Z adding 'torch/testing/_internal/data/network2.py' 2024-06-26T05:43:15.3203920Z adding 'torch/testing/_internal/distributed/__init__.py' 2024-06-26T05:43:15.3204750Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2024-06-26T05:43:15.3206430Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2024-06-26T05:43:15.3211240Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2024-06-26T05:43:15.3279670Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2024-06-26T05:43:15.3282880Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2024-06-26T05:43:15.3283650Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2024-06-26T05:43:15.3287670Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2024-06-26T05:43:15.3289680Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2024-06-26T05:43:15.3290980Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2024-06-26T05:43:15.3291630Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2024-06-26T05:43:15.3293530Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2024-06-26T05:43:15.3294970Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2024-06-26T05:43:15.3295740Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2024-06-26T05:43:15.3296700Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2024-06-26T05:43:15.3301130Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2024-06-26T05:43:15.3301910Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2024-06-26T05:43:15.3303210Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2024-06-26T05:43:15.3307010Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2024-06-26T05:43:15.3307830Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2024-06-26T05:43:15.3326000Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2024-06-26T05:43:15.3328850Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2024-06-26T05:43:15.3331280Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2024-06-26T05:43:15.3332260Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2024-06-26T05:43:15.3333670Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2024-06-26T05:43:15.3372270Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2024-06-26T05:43:15.3374670Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2024-06-26T05:43:15.3375500Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2024-06-26T05:43:15.3377270Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2024-06-26T05:43:15.3379730Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2024-06-26T05:43:15.3381860Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2024-06-26T05:43:15.3383610Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2024-06-26T05:43:15.3392110Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2024-06-26T05:43:15.3394310Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2024-06-26T05:43:15.3395630Z adding 'torch/testing/_internal/generated/__init__.py' 2024-06-26T05:43:15.3432420Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2024-06-26T05:43:15.3435990Z adding 'torch/testing/_internal/opinfo/__init__.py' 2024-06-26T05:43:15.3460470Z adding 'torch/testing/_internal/opinfo/core.py' 2024-06-26T05:43:15.3462930Z adding 'torch/testing/_internal/opinfo/refs.py' 2024-06-26T05:43:15.3465540Z adding 'torch/testing/_internal/opinfo/utils.py' 2024-06-26T05:43:15.3467000Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2024-06-26T05:43:15.3472310Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2024-06-26T05:43:15.3475460Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2024-06-26T05:43:15.3488690Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2024-06-26T05:43:15.3491720Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2024-06-26T05:43:15.3497060Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2024-06-26T05:43:15.3502660Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2024-06-26T05:43:15.3503180Z adding 'torch/testing/_internal/optests/__init__.py' 2024-06-26T05:43:15.3503720Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2024-06-26T05:43:15.3506000Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2024-06-26T05:43:15.3506740Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2024-06-26T05:43:15.3513920Z adding 'torch/testing/_internal/optests/generate_tests.py' 2024-06-26T05:43:15.3515520Z adding 'torch/testing/_internal/optests/make_fx.py' 2024-06-26T05:43:15.3516780Z adding 'torch/testing/_internal/test_module/__init__.py' 2024-06-26T05:43:15.3517360Z adding 'torch/testing/_internal/test_module/future_div.py' 2024-06-26T05:43:15.3518660Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2024-06-26T05:43:15.3520680Z adding 'torch/utils/__init__.py' 2024-06-26T05:43:15.3523790Z adding 'torch/utils/_config_module.py' 2024-06-26T05:43:15.3526460Z adding 'torch/utils/_content_store.py' 2024-06-26T05:43:15.3528440Z adding 'torch/utils/_contextlib.py' 2024-06-26T05:43:15.3529720Z adding 'torch/utils/_cpp_extension_versioner.py' 2024-06-26T05:43:15.3535760Z adding 'torch/utils/_cxx_pytree.py' 2024-06-26T05:43:15.3537230Z adding 'torch/utils/_device.py' 2024-06-26T05:43:15.3538400Z adding 'torch/utils/_exposed_in.py' 2024-06-26T05:43:15.3539630Z adding 'torch/utils/_foreach_utils.py' 2024-06-26T05:43:15.3542290Z adding 'torch/utils/_freeze.py' 2024-06-26T05:43:15.3544150Z adding 'torch/utils/_get_clean_triton.py' 2024-06-26T05:43:15.3545300Z adding 'torch/utils/_import_utils.py' 2024-06-26T05:43:15.3546030Z adding 'torch/utils/_mode_utils.py' 2024-06-26T05:43:15.3552320Z adding 'torch/utils/_python_dispatch.py' 2024-06-26T05:43:15.3562660Z adding 'torch/utils/_pytree.py' 2024-06-26T05:43:15.3563940Z adding 'torch/utils/_stats.py' 2024-06-26T05:43:15.3566710Z adding 'torch/utils/_traceback.py' 2024-06-26T05:43:15.3568020Z adding 'torch/utils/_triton.py' 2024-06-26T05:43:15.3568890Z adding 'torch/utils/_typing_utils.py' 2024-06-26T05:43:15.3570360Z adding 'torch/utils/_zip.py' 2024-06-26T05:43:15.3574450Z adding 'torch/utils/backend_registration.py' 2024-06-26T05:43:15.3579040Z adding 'torch/utils/bundled_inputs.py' 2024-06-26T05:43:15.3595390Z adding 'torch/utils/checkpoint.py' 2024-06-26T05:43:15.3600900Z adding 'torch/utils/collect_env.py' 2024-06-26T05:43:15.3602050Z adding 'torch/utils/cpp_backtrace.py' 2024-06-26T05:43:15.3625930Z adding 'torch/utils/cpp_extension.py' 2024-06-26T05:43:15.3627530Z adding 'torch/utils/deterministic.py' 2024-06-26T05:43:15.3629290Z adding 'torch/utils/dlpack.py' 2024-06-26T05:43:15.3630490Z adding 'torch/utils/file_baton.py' 2024-06-26T05:43:15.3635790Z adding 'torch/utils/flop_counter.py' 2024-06-26T05:43:15.3638410Z adding 'torch/utils/hooks.py' 2024-06-26T05:43:15.3640180Z adding 'torch/utils/mkldnn.py' 2024-06-26T05:43:15.3642040Z adding 'torch/utils/mobile_optimizer.py' 2024-06-26T05:43:15.3642740Z adding 'torch/utils/model_zoo.py' 2024-06-26T05:43:15.3644660Z adding 'torch/utils/module_tracker.py' 2024-06-26T05:43:15.3646450Z adding 'torch/utils/show_pickle.py' 2024-06-26T05:43:15.3648500Z adding 'torch/utils/throughput_benchmark.py' 2024-06-26T05:43:15.3651200Z adding 'torch/utils/weak.py' 2024-06-26T05:43:15.3652460Z adding 'torch/utils/_strobelight/__init__.py' 2024-06-26T05:43:15.3654970Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2024-06-26T05:43:15.3656190Z adding 'torch/utils/_sympy/__init__.py' 2024-06-26T05:43:15.3661470Z adding 'torch/utils/_sympy/functions.py' 2024-06-26T05:43:15.3663600Z adding 'torch/utils/_sympy/interp.py' 2024-06-26T05:43:15.3665690Z adding 'torch/utils/_sympy/numbers.py' 2024-06-26T05:43:15.3667350Z adding 'torch/utils/_sympy/reference.py' 2024-06-26T05:43:15.3668710Z adding 'torch/utils/_sympy/singleton_int.py' 2024-06-26T05:43:15.3670670Z adding 'torch/utils/_sympy/solve.py' 2024-06-26T05:43:15.3672210Z adding 'torch/utils/_sympy/symbol.py' 2024-06-26T05:43:15.3679680Z adding 'torch/utils/_sympy/value_ranges.py' 2024-06-26T05:43:15.3681190Z adding 'torch/utils/backcompat/__init__.py' 2024-06-26T05:43:15.3682460Z adding 'torch/utils/benchmark/__init__.py' 2024-06-26T05:43:15.3683690Z adding 'torch/utils/benchmark/examples/__init__.py' 2024-06-26T05:43:15.3685810Z adding 'torch/utils/benchmark/examples/blas_compare_setup.py' 2024-06-26T05:43:15.3687190Z adding 'torch/utils/benchmark/examples/compare.py' 2024-06-26T05:43:15.3688480Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2024-06-26T05:43:15.3690240Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2024-06-26T05:43:15.3691020Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2024-06-26T05:43:15.3693040Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2024-06-26T05:43:15.3693790Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2024-06-26T05:43:15.3695460Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2024-06-26T05:43:15.3696920Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2024-06-26T05:43:15.3698280Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2024-06-26T05:43:15.3699670Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2024-06-26T05:43:15.3700980Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2024-06-26T05:43:15.3702210Z adding 'torch/utils/benchmark/utils/__init__.py' 2024-06-26T05:43:15.3703410Z adding 'torch/utils/benchmark/utils/_stubs.py' 2024-06-26T05:43:15.3706750Z adding 'torch/utils/benchmark/utils/common.py' 2024-06-26T05:43:15.3710010Z adding 'torch/utils/benchmark/utils/compare.py' 2024-06-26T05:43:15.3712070Z adding 'torch/utils/benchmark/utils/compile.py' 2024-06-26T05:43:15.3714100Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2024-06-26T05:43:15.3718280Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2024-06-26T05:43:15.3720170Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2024-06-26T05:43:15.3721420Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2024-06-26T05:43:15.3726190Z adding 'torch/utils/benchmark/utils/timer.py' 2024-06-26T05:43:15.3727590Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2024-06-26T05:43:15.3733390Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2024-06-26T05:43:15.3733940Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2024-06-26T05:43:15.3734590Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2024-06-26T05:43:15.3739910Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2024-06-26T05:43:15.3778270Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2024-06-26T05:43:15.3781190Z adding 'torch/utils/bottleneck/__init__.py' 2024-06-26T05:43:15.3783310Z adding 'torch/utils/bottleneck/__main__.py' 2024-06-26T05:43:15.3784890Z adding 'torch/utils/data/__init__.py' 2024-06-26T05:43:15.3786100Z adding 'torch/utils/data/backward_compatibility.py' 2024-06-26T05:43:15.3804470Z adding 'torch/utils/data/dataloader.py' 2024-06-26T05:43:15.3809200Z adding 'torch/utils/data/dataset.py' 2024-06-26T05:43:15.3811390Z adding 'torch/utils/data/distributed.py' 2024-06-26T05:43:15.3813480Z adding 'torch/utils/data/graph.py' 2024-06-26T05:43:15.3815430Z adding 'torch/utils/data/graph_settings.py' 2024-06-26T05:43:15.3818450Z adding 'torch/utils/data/sampler.py' 2024-06-26T05:43:15.3820140Z adding 'torch/utils/data/_utils/__init__.py' 2024-06-26T05:43:15.3823380Z adding 'torch/utils/data/_utils/collate.py' 2024-06-26T05:43:15.3824710Z adding 'torch/utils/data/_utils/fetch.py' 2024-06-26T05:43:15.3826380Z adding 'torch/utils/data/_utils/pin_memory.py' 2024-06-26T05:43:15.3828060Z adding 'torch/utils/data/_utils/signal_handling.py' 2024-06-26T05:43:15.3831510Z adding 'torch/utils/data/_utils/worker.py' 2024-06-26T05:43:15.3832800Z adding 'torch/utils/data/datapipes/__init__.py' 2024-06-26T05:43:15.3834770Z adding 'torch/utils/data/datapipes/_decorator.py' 2024-06-26T05:43:15.3837610Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2024-06-26T05:43:15.3841450Z adding 'torch/utils/data/datapipes/_typing.py' 2024-06-26T05:43:15.3844790Z adding 'torch/utils/data/datapipes/datapipe.py' 2024-06-26T05:43:15.3850890Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2024-06-26T05:43:15.3853640Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2024-06-26T05:43:15.3855050Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2024-06-26T05:43:15.3856480Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2024-06-26T05:43:15.3859300Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2024-06-26T05:43:15.3860770Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2024-06-26T05:43:15.3861610Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2024-06-26T05:43:15.3863260Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2024-06-26T05:43:15.3865760Z adding 'torch/utils/data/datapipes/iter/callable.py' 2024-06-26T05:43:15.3867780Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2024-06-26T05:43:15.3872550Z adding 'torch/utils/data/datapipes/iter/combining.py' 2024-06-26T05:43:15.3874010Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2024-06-26T05:43:15.3875420Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2024-06-26T05:43:15.3878090Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2024-06-26T05:43:15.3879510Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2024-06-26T05:43:15.3880970Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2024-06-26T05:43:15.3882380Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2024-06-26T05:43:15.3883650Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2024-06-26T05:43:15.3884900Z adding 'torch/utils/data/datapipes/iter/utils.py' 2024-06-26T05:43:15.3886230Z adding 'torch/utils/data/datapipes/map/__init__.py' 2024-06-26T05:43:15.3887460Z adding 'torch/utils/data/datapipes/map/callable.py' 2024-06-26T05:43:15.3889060Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2024-06-26T05:43:15.3890470Z adding 'torch/utils/data/datapipes/map/combining.py' 2024-06-26T05:43:15.3891810Z adding 'torch/utils/data/datapipes/map/grouping.py' 2024-06-26T05:43:15.3893020Z adding 'torch/utils/data/datapipes/map/utils.py' 2024-06-26T05:43:15.3894230Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2024-06-26T05:43:15.3897430Z adding 'torch/utils/data/datapipes/utils/common.py' 2024-06-26T05:43:15.3900410Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2024-06-26T05:43:15.3901930Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2024-06-26T05:43:15.3903140Z adding 'torch/utils/hipify/__init__.py' 2024-06-26T05:43:15.3904380Z adding 'torch/utils/hipify/constants.py' 2024-06-26T05:43:15.3944300Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2024-06-26T05:43:15.3956370Z adding 'torch/utils/hipify/hipify_python.py' 2024-06-26T05:43:15.3957570Z adding 'torch/utils/hipify/version.py' 2024-06-26T05:43:15.3958770Z adding 'torch/utils/jit/__init__.py' 2024-06-26T05:43:15.3960370Z adding 'torch/utils/jit/log_extract.py' 2024-06-26T05:43:15.3964620Z adding 'torch/utils/model_dump/__init__.py' 2024-06-26T05:43:15.3965790Z adding 'torch/utils/model_dump/__main__.py' 2024-06-26T05:43:15.3969620Z adding 'torch/utils/model_dump/code.js' 2024-06-26T05:43:15.3970870Z adding 'torch/utils/model_dump/htm.mjs' 2024-06-26T05:43:15.3973790Z adding 'torch/utils/model_dump/preact.mjs' 2024-06-26T05:43:15.3974490Z adding 'torch/utils/model_dump/skeleton.html' 2024-06-26T05:43:15.3976050Z adding 'torch/utils/tensorboard/__init__.py' 2024-06-26T05:43:15.3976840Z adding 'torch/utils/tensorboard/_convert_np.py' 2024-06-26T05:43:15.3978470Z adding 'torch/utils/tensorboard/_embedding.py' 2024-06-26T05:43:15.3979680Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2024-06-26T05:43:15.3980890Z adding 'torch/utils/tensorboard/_proto_graph.py' 2024-06-26T05:43:15.3984350Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2024-06-26T05:43:15.3985990Z adding 'torch/utils/tensorboard/_utils.py' 2024-06-26T05:43:15.3993460Z adding 'torch/utils/tensorboard/summary.py' 2024-06-26T05:43:15.4001750Z adding 'torch/utils/tensorboard/writer.py' 2024-06-26T05:43:15.4003000Z adding 'torch/utils/viz/__init__.py' 2024-06-26T05:43:15.4006560Z adding 'torch/utils/viz/_cycles.py' 2024-06-26T05:43:15.4010430Z adding 'torch/xpu/__init__.py' 2024-06-26T05:43:15.4011620Z adding 'torch/xpu/_gpu_trace.py' 2024-06-26T05:43:15.4012790Z adding 'torch/xpu/_utils.py' 2024-06-26T05:43:15.4014260Z adding 'torch/xpu/random.py' 2024-06-26T05:43:15.4016000Z adding 'torch/xpu/streams.py' 2024-06-26T05:43:15.4019710Z adding 'torchgen/__init__.py' 2024-06-26T05:43:15.4021130Z adding 'torchgen/code_template.py' 2024-06-26T05:43:15.4026640Z adding 'torchgen/context.py' 2024-06-26T05:43:15.4046510Z adding 'torchgen/gen.py' 2024-06-26T05:43:15.4050500Z adding 'torchgen/gen_aoti_c_shim.py' 2024-06-26T05:43:15.4055160Z adding 'torchgen/gen_backend_stubs.py' 2024-06-26T05:43:15.4062810Z adding 'torchgen/gen_executorch.py' 2024-06-26T05:43:15.4070820Z adding 'torchgen/gen_functionalization_type.py' 2024-06-26T05:43:15.4076000Z adding 'torchgen/gen_lazy_tensor.py' 2024-06-26T05:43:15.4078160Z adding 'torchgen/gen_vmap_plumbing.py' 2024-06-26T05:43:15.4079360Z adding 'torchgen/local.py' 2024-06-26T05:43:15.4106220Z adding 'torchgen/model.py' 2024-06-26T05:43:15.4113570Z adding 'torchgen/native_function_generation.py' 2024-06-26T05:43:15.4117690Z adding 'torchgen/utils.py' 2024-06-26T05:43:15.4118870Z adding 'torchgen/yaml_utils.py' 2024-06-26T05:43:15.4120030Z adding 'torchgen/aoti/__init__.py' 2024-06-26T05:43:15.4121490Z adding 'torchgen/aoti/fallback_ops.py' 2024-06-26T05:43:15.4122670Z adding 'torchgen/api/__init__.py' 2024-06-26T05:43:15.4131290Z adding 'torchgen/api/autograd.py' 2024-06-26T05:43:15.4135070Z adding 'torchgen/api/cpp.py' 2024-06-26T05:43:15.4136550Z adding 'torchgen/api/dispatcher.py' 2024-06-26T05:43:15.4138640Z adding 'torchgen/api/functionalization.py' 2024-06-26T05:43:15.4142610Z adding 'torchgen/api/lazy.py' 2024-06-26T05:43:15.4143780Z adding 'torchgen/api/meta.py' 2024-06-26T05:43:15.4145280Z adding 'torchgen/api/native.py' 2024-06-26T05:43:15.4158180Z adding 'torchgen/api/python.py' 2024-06-26T05:43:15.4160190Z adding 'torchgen/api/structured.py' 2024-06-26T05:43:15.4164020Z adding 'torchgen/api/translate.py' 2024-06-26T05:43:15.4165950Z adding 'torchgen/api/ufunc.py' 2024-06-26T05:43:15.4168330Z adding 'torchgen/api/unboxing.py' 2024-06-26T05:43:15.4169590Z adding 'torchgen/api/types/__init__.py' 2024-06-26T05:43:15.4172920Z adding 'torchgen/api/types/signatures.py' 2024-06-26T05:43:15.4174720Z adding 'torchgen/api/types/types.py' 2024-06-26T05:43:15.4176660Z adding 'torchgen/api/types/types_base.py' 2024-06-26T05:43:15.4178210Z adding 'torchgen/dest/__init__.py' 2024-06-26T05:43:15.4184040Z adding 'torchgen/dest/lazy_ir.py' 2024-06-26T05:43:15.4185340Z adding 'torchgen/dest/lazy_ts_lowering.py' 2024-06-26T05:43:15.4186590Z adding 'torchgen/dest/native_functions.py' 2024-06-26T05:43:15.4194710Z adding 'torchgen/dest/register_dispatch_key.py' 2024-06-26T05:43:15.4198670Z adding 'torchgen/dest/ufunc.py' 2024-06-26T05:43:15.4199870Z adding 'torchgen/executorch/__init__.py' 2024-06-26T05:43:15.4202120Z adding 'torchgen/executorch/model.py' 2024-06-26T05:43:15.4203800Z adding 'torchgen/executorch/parse.py' 2024-06-26T05:43:15.4204970Z adding 'torchgen/executorch/api/__init__.py' 2024-06-26T05:43:15.4206590Z adding 'torchgen/executorch/api/custom_ops.py' 2024-06-26T05:43:15.4209660Z adding 'torchgen/executorch/api/et_cpp.py' 2024-06-26T05:43:15.4211760Z adding 'torchgen/executorch/api/unboxing.py' 2024-06-26T05:43:15.4212960Z adding 'torchgen/executorch/api/types/__init__.py' 2024-06-26T05:43:15.4214200Z adding 'torchgen/executorch/api/types/signatures.py' 2024-06-26T05:43:15.4215410Z adding 'torchgen/executorch/api/types/types.py' 2024-06-26T05:43:15.4216620Z adding 'torchgen/operator_versions/__init__.py' 2024-06-26T05:43:15.4219330Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2024-06-26T05:43:15.4220100Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2024-06-26T05:43:15.4298050Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2024-06-26T05:43:15.4302050Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2024-06-26T05:43:15.4303790Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2024-06-26T05:43:15.4305130Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2024-06-26T05:43:15.4305830Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2024-06-26T05:43:15.4307330Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2024-06-26T05:43:15.4308130Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2024-06-26T05:43:15.4309120Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2024-06-26T05:43:15.4310000Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2024-06-26T05:43:15.4310860Z adding 'torchgen/packaged/ATen/templates/Function.h' 2024-06-26T05:43:15.4312240Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2024-06-26T05:43:15.4313590Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2024-06-26T05:43:15.4315130Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2024-06-26T05:43:15.4315860Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2024-06-26T05:43:15.4317130Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2024-06-26T05:43:15.4317860Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2024-06-26T05:43:15.4319150Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2024-06-26T05:43:15.4319820Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2024-06-26T05:43:15.4321130Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2024-06-26T05:43:15.4321640Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2024-06-26T05:43:15.4322910Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2024-06-26T05:43:15.4323520Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2024-06-26T05:43:15.4325060Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2024-06-26T05:43:15.4325760Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2024-06-26T05:43:15.4327100Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2024-06-26T05:43:15.4327930Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2024-06-26T05:43:15.4329390Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2024-06-26T05:43:15.4330110Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2024-06-26T05:43:15.4331490Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2024-06-26T05:43:15.4332880Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2024-06-26T05:43:15.4333600Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2024-06-26T05:43:15.4334270Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2024-06-26T05:43:15.4341330Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2024-06-26T05:43:15.4342730Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2024-06-26T05:43:15.4347560Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2024-06-26T05:43:15.4348020Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2024-06-26T05:43:15.4348450Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2024-06-26T05:43:15.4348890Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2024-06-26T05:43:15.4349370Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2024-06-26T05:43:15.4349850Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2024-06-26T05:43:15.4350290Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2024-06-26T05:43:15.4350660Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2024-06-26T05:43:15.4351140Z adding 'torchgen/packaged/autograd/README.md' 2024-06-26T05:43:15.4352130Z adding 'torchgen/packaged/autograd/__init__.py' 2024-06-26T05:43:15.4352830Z adding 'torchgen/packaged/autograd/build.bzl' 2024-06-26T05:43:15.4354090Z adding 'torchgen/packaged/autograd/context.py' 2024-06-26T05:43:15.4355490Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2024-06-26T05:43:15.4385630Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2024-06-26T05:43:15.4388070Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2024-06-26T05:43:15.4389620Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2024-06-26T05:43:15.4394930Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2024-06-26T05:43:15.4399940Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2024-06-26T05:43:15.4409730Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2024-06-26T05:43:15.4414050Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2024-06-26T05:43:15.4415810Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2024-06-26T05:43:15.4432710Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2024-06-26T05:43:15.4436030Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2024-06-26T05:43:15.4444640Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2024-06-26T05:43:15.4446400Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2024-06-26T05:43:15.4447120Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2024-06-26T05:43:15.4448500Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2024-06-26T05:43:15.4449310Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2024-06-26T05:43:15.4450720Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2024-06-26T05:43:15.4451590Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2024-06-26T05:43:15.4452880Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2024-06-26T05:43:15.4453440Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2024-06-26T05:43:15.4454770Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2024-06-26T05:43:15.4455320Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2024-06-26T05:43:15.4456820Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2024-06-26T05:43:15.4457590Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2024-06-26T05:43:15.4458510Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2024-06-26T05:43:15.4459910Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2024-06-26T05:43:15.4460830Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2024-06-26T05:43:15.4462370Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2024-06-26T05:43:15.4464020Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2024-06-26T05:43:15.4469960Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2024-06-26T05:43:15.4470760Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2024-06-26T05:43:15.4472160Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2024-06-26T05:43:15.4473000Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2024-06-26T05:43:15.4480320Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2024-06-26T05:43:15.4481970Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2024-06-26T05:43:15.4482700Z adding 'torchgen/selective_build/__init__.py' 2024-06-26T05:43:15.4484810Z adding 'torchgen/selective_build/operator.py' 2024-06-26T05:43:15.4487500Z adding 'torchgen/selective_build/selector.py' 2024-06-26T05:43:15.4488250Z adding 'torchgen/static_runtime/__init__.py' 2024-06-26T05:43:15.4490540Z adding 'torchgen/static_runtime/config.py' 2024-06-26T05:43:15.4492440Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2024-06-26T05:43:15.4497160Z adding 'torchgen/static_runtime/generator.py' 2024-06-26T05:43:15.4572100Z adding 'torch-2.5.0a0+gitb8c4c54.dist-info/LICENSE' 2024-06-26T05:43:15.4580030Z adding 'torch-2.5.0a0+gitb8c4c54.dist-info/METADATA' 2024-06-26T05:43:15.4585240Z adding 'torch-2.5.0a0+gitb8c4c54.dist-info/NOTICE' 2024-06-26T05:43:15.4585710Z adding 'torch-2.5.0a0+gitb8c4c54.dist-info/WHEEL' 2024-06-26T05:43:15.4587010Z adding 'torch-2.5.0a0+gitb8c4c54.dist-info/entry_points.txt' 2024-06-26T05:43:15.4587560Z adding 'torch-2.5.0a0+gitb8c4c54.dist-info/top_level.txt' 2024-06-26T05:43:15.4941240Z adding 'torch-2.5.0a0+gitb8c4c54.dist-info/RECORD' 2024-06-26T05:43:15.5628300Z removing build/bdist.macosx-11.1-arm64/wheel 2024-06-26T05:43:16.0378930Z + which sccache 2024-06-26T05:43:16.0422740Z + print_sccache_stats 2024-06-26T05:43:16.0423130Z + echo 'PyTorch Build Statistics' 2024-06-26T05:43:16.0423420Z + sccache --show-stats 2024-06-26T05:43:16.0423640Z PyTorch Build Statistics 2024-06-26T05:43:16.0454200Z Compile requests 6049 2024-06-26T05:43:16.0454730Z Compile requests executed 5438 2024-06-26T05:43:16.0455010Z Cache hits 5414 2024-06-26T05:43:16.0455300Z Cache hits (C/C++) 5414 2024-06-26T05:43:16.0455550Z Cache misses 1 2024-06-26T05:43:16.0455810Z Cache misses (C/C++) 1 2024-06-26T05:43:16.0456070Z Cache timeouts 0 2024-06-26T05:43:16.0456470Z Cache read errors 0 2024-06-26T05:43:16.0456740Z Forced recaches 0 2024-06-26T05:43:16.0457000Z Cache write errors 0 2024-06-26T05:43:16.0457270Z Compilation failures 2 2024-06-26T05:43:16.0457530Z Cache errors 21 2024-06-26T05:43:16.0457790Z Cache errors (C/C++) 21 2024-06-26T05:43:16.0458150Z Non-cacheable compilations 0 2024-06-26T05:43:16.0458450Z Non-cacheable calls 516 2024-06-26T05:43:16.0464320Z Non-compilation calls 95 2024-06-26T05:43:16.0464610Z Unsupported compiler calls 0 2024-06-26T05:43:16.0464890Z Average cache write 0.064 s 2024-06-26T05:43:16.0465170Z Average compiler 1.219 s 2024-06-26T05:43:16.0465440Z Average cache read hit 0.000 s 2024-06-26T05:43:16.0465710Z Failed distributed compilations 0 2024-06-26T05:43:16.0465900Z 2024-06-26T05:43:16.0466000Z Non-cacheable reasons: 2024-06-26T05:43:16.0466220Z unknown source language 504 2024-06-26T05:43:16.0466470Z @ 6 2024-06-26T05:43:16.0466710Z multiple input files 6 2024-06-26T05:43:16.0466890Z 2024-06-26T05:43:16.0467290Z Cache location s3, name: ossci-compiler-cache-circleci-v2, prefix: /trunk/ 2024-06-26T05:43:16.0467710Z Version (client) 0.4.1 2024-06-26T05:43:16.0467970Z + [[ -n 26687968773 ]] 2024-06-26T05:43:16.0468220Z + sccache --show-stats --stats-format json 2024-06-26T05:43:16.0468470Z + jq .stats 2024-06-26T05:43:16.0985170Z + python tools/stats/export_test_times.py 2024-06-26T05:43:16.3099130Z Exporting test times from test-infra 2024-06-26T05:43:16.3100110Z 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 2024-06-26T05:43:16.3101580Z 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 2024-06-26T05:43:16.3144620Z + assert_git_not_dirty 2024-06-26T05:43:16.3144920Z + [[ macos-py3-arm64 != *rocm* ]] 2024-06-26T05:43:16.3145220Z + [[ macos-py3-arm64 != *xla* ]] 2024-06-26T05:43:16.3150800Z ++ git status --porcelain 2024-06-26T05:43:16.3151890Z ++ grep -v '?? third_party' 2024-06-26T05:43:28.0088700Z ++ true 2024-06-26T05:43:28.0090180Z + git_status= 2024-06-26T05:43:28.0090510Z + [[ -n '' ]] 2024-06-26T05:43:28.0090930Z + rm -rfv /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4 2024-06-26T05:43:28.0108690Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang 2024-06-26T05:43:28.0109270Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4/clang++ 2024-06-26T05:43:28.0109810Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.IeFfQ7TjM4 2024-06-26T05:43:28.0503270Z ##[group]Run zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files 2024-06-26T05:43:28.0504080Z zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files 2024-06-26T05:43:28.0894290Z shell: /bin/bash -e {0} 2024-06-26T05:43:28.0894500Z env: 2024-06-26T05:43:28.0894680Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:43:28.0894930Z SCCACHE_USE_GHA: false 2024-06-26T05:43:28.0895790Z 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 2024-06-26T05:43:28.0896760Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:43:28.0897230Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:28.0897740Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:28.0898530Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --no-capture-output 2024-06-26T05:43:28.0899660Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:28.0900360Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2024-06-26T05:43:28.0900670Z SCCACHE_S3_KEY_PREFIX: trunk 2024-06-26T05:43:28.0901040Z CMAKE_PREFIX_PATH: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:28.0901420Z ##[endgroup] 2024-06-26T05:43:28.1462800Z adding: dist/ (stored 0%) 2024-06-26T05:43:29.4531100Z adding: dist/torch-2.5.0a0+gitb8c4c54-cp39-cp39-macosx_11_0_arm64.whl (deflated 4%) 2024-06-26T05:43:29.4662850Z adding: build/.ninja_log (deflated 89%) 2024-06-26T05:43:29.5092370Z adding: build/compile_commands.json (deflated 98%) 2024-06-26T05:43:29.5092760Z adding: .additional_ci_files/ (stored 0%) 2024-06-26T05:43:29.5160150Z adding: .additional_ci_files/test-times.json (deflated 74%) 2024-06-26T05:43:29.5445840Z adding: .additional_ci_files/test-class-times.json (deflated 68%) 2024-06-26T05:43:29.5810660Z ##[group]Run actions/upload-artifact@v3 2024-06-26T05:43:29.5810910Z with: 2024-06-26T05:43:29.5811120Z name: macos-py3-arm64 2024-06-26T05:43:29.5811330Z retention-days: 14 2024-06-26T05:43:29.5811590Z if-no-files-found: error 2024-06-26T05:43:29.5811810Z path: artifacts.zip 2024-06-26T05:43:29.5812010Z env: 2024-06-26T05:43:29.5812200Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:43:29.5812460Z SCCACHE_USE_GHA: false 2024-06-26T05:43:29.5813330Z 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 2024-06-26T05:43:29.5814300Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:43:29.5814810Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:29.5815340Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:29.5816160Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --no-capture-output 2024-06-26T05:43:29.5817210Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:29.5824390Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2024-06-26T05:43:29.5824690Z SCCACHE_S3_KEY_PREFIX: trunk 2024-06-26T05:43:29.5825060Z CMAKE_PREFIX_PATH: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:29.5825440Z ##[endgroup] 2024-06-26T05:43:29.6724730Z With the provided path, there will be 1 file uploaded 2024-06-26T05:43:29.6725570Z Starting artifact upload 2024-06-26T05:43:29.6726680Z For more detailed logs during the artifact upload process, enable step-debugging: https://docs.github.com/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging#enabling-step-debug-logging 2024-06-26T05:43:29.6727960Z Artifact name is valid! 2024-06-26T05:43:29.7298180Z Container for artifact "macos-py3-arm64" successfully created. Starting upload of file(s) 2024-06-26T05:43:31.3779200Z Uploaded /Users/ec2-user/runner/_work/pytorch/pytorch/artifacts.zip (13.6%) bytes 0:8388607 2024-06-26T05:43:33.0511220Z Uploaded /Users/ec2-user/runner/_work/pytorch/pytorch/artifacts.zip (27.3%) bytes 8388608:16777215 2024-06-26T05:43:34.8038850Z Uploaded /Users/ec2-user/runner/_work/pytorch/pytorch/artifacts.zip (41.0%) bytes 16777216:25165823 2024-06-26T05:43:36.5192900Z Uploaded /Users/ec2-user/runner/_work/pytorch/pytorch/artifacts.zip (54.7%) bytes 25165824:33554431 2024-06-26T05:43:38.2237310Z Uploaded /Users/ec2-user/runner/_work/pytorch/pytorch/artifacts.zip (68.4%) bytes 33554432:41943039 2024-06-26T05:43:39.7336820Z Total file count: 1 ---- Processed file #0 (0.0%) 2024-06-26T05:43:39.9492780Z Uploaded /Users/ec2-user/runner/_work/pytorch/pytorch/artifacts.zip (82.1%) bytes 41943040:50331647 2024-06-26T05:43:41.6670690Z Uploaded /Users/ec2-user/runner/_work/pytorch/pytorch/artifacts.zip (95.8%) bytes 50331648:58720255 2024-06-26T05:43:42.3157450Z Uploaded /Users/ec2-user/runner/_work/pytorch/pytorch/artifacts.zip (100.0%) bytes 58720256:61275177 2024-06-26T05:43:42.3170550Z Total size of all the files uploaded is 61275178 bytes 2024-06-26T05:43:42.3171850Z File upload process has finished. Finalizing the artifact upload 2024-06-26T05:43:42.3650300Z Artifact has been finalized. All files have been successfully uploaded! 2024-06-26T05:43:42.3652490Z 2024-06-26T05:43:42.3653770Z The raw size of all the files that were specified for upload is 61275178 bytes 2024-06-26T05:43:42.3658600Z The size of all the files that were uploaded is 61275178 bytes. This takes into account any gzip compression used to reduce the upload size, time and storage 2024-06-26T05:43:42.3662270Z 2024-06-26T05:43:42.3669460Z Note: The size of downloaded zips can differ significantly from the reported size. For more information see: https://github.com/actions/upload-artifact#zipped-artifact-downloads 2024-06-26T05:43:42.3673810Z 2024-06-26T05:43:42.3675010Z Artifact macos-py3-arm64 has been successfully uploaded! 2024-06-26T05:43:42.3921070Z ##[group]Run actions/upload-artifact@v3 2024-06-26T05:43:42.3939440Z with: 2024-06-26T05:43:42.3940350Z name: sccache-stats-macos-py3-arm64-runattempt1-26687968773 2024-06-26T05:43:42.3941410Z retention-days: 14 2024-06-26T05:43:42.3942020Z if-no-files-found: warn 2024-06-26T05:43:42.3942680Z path: sccache-stats-*.json 2024-06-26T05:43:42.3943280Z env: 2024-06-26T05:43:42.3943780Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:43:42.3944510Z SCCACHE_USE_GHA: false 2024-06-26T05:43:42.3947040Z 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 2024-06-26T05:43:42.3949960Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:43:42.3951320Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:42.3952840Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:42.3955190Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --no-capture-output 2024-06-26T05:43:42.3958270Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:42.3960310Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2024-06-26T05:43:42.3961190Z SCCACHE_S3_KEY_PREFIX: trunk 2024-06-26T05:43:42.3962280Z CMAKE_PREFIX_PATH: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:42.3963910Z ##[endgroup] 2024-06-26T05:43:42.5187370Z With the provided path, there will be 1 file uploaded 2024-06-26T05:43:42.5188350Z Starting artifact upload 2024-06-26T05:43:42.5189420Z For more detailed logs during the artifact upload process, enable step-debugging: https://docs.github.com/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging#enabling-step-debug-logging 2024-06-26T05:43:42.5190320Z Artifact name is valid! 2024-06-26T05:43:42.5760360Z Container for artifact "sccache-stats-macos-py3-arm64-runattempt1-26687968773" successfully created. Starting upload of file(s) 2024-06-26T05:43:42.6544270Z Total size of all the files uploaded is 340 bytes 2024-06-26T05:43:42.6545160Z File upload process has finished. Finalizing the artifact upload 2024-06-26T05:43:42.6993690Z Artifact has been finalized. All files have been successfully uploaded! 2024-06-26T05:43:42.6994670Z 2024-06-26T05:43:42.6995310Z The raw size of all the files that were specified for upload is 893 bytes 2024-06-26T05:43:42.6998260Z The size of all the files that were uploaded is 340 bytes. This takes into account any gzip compression used to reduce the upload size, time and storage 2024-06-26T05:43:42.7000070Z 2024-06-26T05:43:42.7002140Z Note: The size of downloaded zips can differ significantly from the reported size. For more information see: https://github.com/actions/upload-artifact#zipped-artifact-downloads 2024-06-26T05:43:42.7004190Z 2024-06-26T05:43:42.7005330Z Artifact sccache-stats-macos-py3-arm64-runattempt1-26687968773 has been successfully uploaded! 2024-06-26T05:43:42.7205620Z ##[group]Run pytorch/test-infra/.github/actions/check-disk-space@main 2024-06-26T05:43:42.7206510Z with: 2024-06-26T05:43:42.7206980Z minimum-available-space-in-gb: 6 2024-06-26T05:43:42.7207580Z env: 2024-06-26T05:43:42.7208010Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:43:42.7208620Z SCCACHE_USE_GHA: false 2024-06-26T05:43:42.7210740Z 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 2024-06-26T05:43:42.7213180Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:43:42.7214330Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:42.7215540Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:42.7217490Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --no-capture-output 2024-06-26T05:43:42.7219780Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:42.7221230Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2024-06-26T05:43:42.7221850Z SCCACHE_S3_KEY_PREFIX: trunk 2024-06-26T05:43:42.7222630Z CMAKE_PREFIX_PATH: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:42.7223420Z ##[endgroup] 2024-06-26T05:43:42.7249620Z ##[group]Run echo "Print the available disk space for manual inspection" 2024-06-26T05:43:42.7250720Z echo "Print the available disk space for manual inspection" 2024-06-26T05:43:42.7251450Z df -h 2024-06-26T05:43:42.7251800Z  2024-06-26T05:43:42.7252190Z function check_disk_space() { 2024-06-26T05:43:42.7252710Z  set +e 2024-06-26T05:43:42.7253080Z  2024-06-26T05:43:42.7253540Z  # Set the minimum requirement space to 6GB 2024-06-26T05:43:42.7254500Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2024-06-26T05:43:42.7255330Z  2024-06-26T05:43:42.7255850Z  # Use KB to avoid floating point warning like 3.1GB 2024-06-26T05:43:42.7269020Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2024-06-26T05:43:42.7269900Z  do 2024-06-26T05:43:42.7270350Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2024-06-26T05:43:42.7271000Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2024-06-26T05:43:42.7271560Z  2024-06-26T05:43:42.7271950Z  if [ "${MOUNT}" = "/" ]; then 2024-06-26T05:43:42.7272710Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2024-06-26T05:43:42.7274380Z  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}" 2024-06-26T05:43:42.7275800Z  else 2024-06-26T05:43:42.7276640Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2024-06-26T05:43:42.7277560Z  fi 2024-06-26T05:43:42.7277930Z  fi 2024-06-26T05:43:42.7278290Z  done 2024-06-26T05:43:42.7278770Z  2024-06-26T05:43:42.7279100Z  set -e 2024-06-26T05:43:42.7279460Z } 2024-06-26T05:43:42.7279790Z  2024-06-26T05:43:42.7280160Z RESULT=$(check_disk_space) 2024-06-26T05:43:42.7280680Z echo "${RESULT}" 2024-06-26T05:43:42.7281110Z  2024-06-26T05:43:42.7281650Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2024-06-26T05:43:42.7283190Z  # We can clean up /System/Library/Caches/com.apple.coresymbolicationd on MacOS to free up the space and this should free up enough space 2024-06-26T05:43:42.7285110Z  # https://github.com/pytorch/pytorch/issues/85440 2024-06-26T05:43:42.7286150Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2024-06-26T05:43:42.7287650Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2024-06-26T05:43:42.7289020Z  sudo launchctl stop com.apple.coresymbolicationd || true 2024-06-26T05:43:42.7289730Z  2024-06-26T05:43:42.7290170Z  # Clean up crash reports on the runner 2024-06-26T05:43:42.7291070Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2024-06-26T05:43:42.7291870Z  2024-06-26T05:43:42.7292380Z  # Also try to clean up torch.hub caching directory 2024-06-26T05:43:42.7293140Z  rm -rf "${HOME}/.cache/torch/hub" || true 2024-06-26T05:43:42.7293720Z  2024-06-26T05:43:42.7294060Z  # Purge conda 2024-06-26T05:43:42.7294530Z  conda clean -p -t -y || true 2024-06-26T05:43:42.7295080Z  # and pip cache 2024-06-26T05:43:42.7295550Z  pip cache purge || true 2024-06-26T05:43:42.7296040Z  2024-06-26T05:43:42.7296650Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2024-06-26T05:43:42.7297440Z  # Re-run the check 2024-06-26T05:43:42.7297930Z  RESULT=$(check_disk_space) 2024-06-26T05:43:42.7298460Z  echo "${RESULT}" 2024-06-26T05:43:42.7298890Z fi 2024-06-26T05:43:42.7299220Z  2024-06-26T05:43:42.7299630Z if [[ "${RESULT}" == *Failure* ]]; then 2024-06-26T05:43:42.7300190Z  df -h 2024-06-26T05:43:42.7300570Z  2024-06-26T05:43:42.7301820Z  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." 2024-06-26T05:43:42.7303220Z  exit 1 2024-06-26T05:43:42.7303590Z fi 2024-06-26T05:43:42.7374800Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-06-26T05:43:42.7375330Z env: 2024-06-26T05:43:42.7375640Z BUILD_ENVIRONMENT: macos-py3-arm64 2024-06-26T05:43:42.7376090Z SCCACHE_USE_GHA: false 2024-06-26T05:43:42.7377630Z 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 2024-06-26T05:43:42.7379470Z CONDA_EXE: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda 2024-06-26T05:43:42.7380310Z CONDA_ENV: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:42.7381210Z CONDA_PREFIX: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:42.7382620Z CONDA_RUN: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda run -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 --no-capture-output 2024-06-26T05:43:42.7384520Z CONDA_INSTALL: /Users/ec2-user/runner/_work/_temp/miniconda/bin/conda install --yes --quiet -p /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:42.7385790Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2024-06-26T05:43:42.7386330Z SCCACHE_S3_KEY_PREFIX: trunk 2024-06-26T05:43:42.7386990Z CMAKE_PREFIX_PATH: /Users/ec2-user/runner/_work/_temp/conda_environment_9673646592 2024-06-26T05:43:42.7387800Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2024-06-26T05:43:42.7388210Z ##[endgroup] 2024-06-26T05:43:42.7939520Z Print the available disk space for manual inspection 2024-06-26T05:43:42.7966060Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2024-06-26T05:43:42.7975770Z /dev/disk5s2s1 256Gi 9.5Gi 144Gi 7% 404k 1.5G 0% / 2024-06-26T05:43:42.7976240Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2024-06-26T05:43:42.7977160Z /dev/disk5s5 256Gi 1.0Gi 144Gi 1% 1 1.5G 0% /System/Volumes/VM 2024-06-26T05:43:42.7977730Z /dev/disk5s3 256Gi 5.7Gi 144Gi 4% 997 1.5G 0% /System/Volumes/Preboot 2024-06-26T05:43:42.7978290Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2024-06-26T05:43:42.7978860Z /dev/disk1s1 500Mi 54Mi 387Mi 13% 53 4.0M 0% /System/Volumes/iSCPreboot 2024-06-26T05:43:42.7979460Z /dev/disk1s3 500Mi 700Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2024-06-26T05:43:42.7980030Z /dev/disk5s1 256Gi 95Gi 144Gi 40% 11M 1.5G 1% /System/Volumes/Data 2024-06-26T05:43:42.7980870Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2024-06-26T05:43:42.7981490Z /dev/disk3s4 228Gi 220Ki 212Gi 1% 17 2.2G 0% /private/tmp/tmp-mount-CSI6T3 2024-06-26T05:43:42.8358530Z Success: There is 150925456KB free space left in / for macOS, continue 2024-06-26T05:43:42.8488490Z Post job cleanup. 2024-06-26T05:43:43.0328070Z Post job cleanup. 2024-06-26T05:43:43.1636220Z Cache hit occurred on the primary key miniconda-env-macOS-ARM64-3.9.12-20240626d-d2e9511d9e56638ec6d1acb510f1a8c378c9d02010984f84aaf470a85ac03b75-317df9a7cbecab0e1b882611f260ff6ee31cf35d44d460b5049c2aab77ac687b, not saving cache. 2024-06-26T05:43:43.1684340Z Post job cleanup. 2024-06-26T05:43:43.2885920Z Cache hit occurred on the primary key miniconda-macOS-ARM64-3.9.12-20240626d, not saving cache. 2024-06-26T05:43:43.2986500Z Post job cleanup. 2024-06-26T05:43:43.3025530Z Post job cleanup. 2024-06-26T05:43:43.4094570Z [command]/usr/bin/git version 2024-06-26T05:43:43.4184130Z git version 2.39.3 (Apple Git-146) 2024-06-26T05:43:43.4205230Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/07ed0b14-eaaa-4137-99eb-dbe260581f43' before making global git config changes 2024-06-26T05:43:43.4206090Z Adding repository directory to the temporary git global config as a safe directory 2024-06-26T05:43:43.4209040Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/pytorch/pytorch 2024-06-26T05:43:43.4284080Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2024-06-26T05:43:43.4352190Z [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' || :" 2024-06-26T05:43:43.4970420Z Entering 'android/libs/fbjni' 2024-06-26T05:43:43.5083280Z Entering 'third_party/FP16' 2024-06-26T05:43:43.5193950Z Entering 'third_party/FXdiv' 2024-06-26T05:43:43.5301040Z Entering 'third_party/NNPACK' 2024-06-26T05:43:43.5418660Z Entering 'third_party/VulkanMemoryAllocator' 2024-06-26T05:43:43.5525470Z Entering 'third_party/XNNPACK' 2024-06-26T05:43:43.5634940Z Entering 'third_party/benchmark' 2024-06-26T05:43:43.5763100Z Entering 'third_party/cpp-httplib' 2024-06-26T05:43:43.5864940Z Entering 'third_party/cpuinfo' 2024-06-26T05:43:43.6001620Z Entering 'third_party/cudnn_frontend' 2024-06-26T05:43:43.6107530Z Entering 'third_party/cutlass' 2024-06-26T05:43:43.6215960Z Entering 'third_party/eigen' 2024-06-26T05:43:43.6372960Z Entering 'third_party/fbgemm' 2024-06-26T05:43:43.6525220Z Entering 'third_party/fbgemm/third_party/asmjit' 2024-06-26T05:43:43.6682510Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2024-06-26T05:43:43.6830780Z Entering 'third_party/fbgemm/third_party/cutlass' 2024-06-26T05:43:43.6958110Z Entering 'third_party/fbgemm/third_party/googletest' 2024-06-26T05:43:43.7116570Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2024-06-26T05:43:43.7234310Z Entering 'third_party/flatbuffers' 2024-06-26T05:43:43.7338300Z Entering 'third_party/fmt' 2024-06-26T05:43:43.7463780Z Entering 'third_party/foxi' 2024-06-26T05:43:43.7573720Z Entering 'third_party/gemmlowp/gemmlowp' 2024-06-26T05:43:43.7682930Z Entering 'third_party/gloo' 2024-06-26T05:43:43.7800600Z Entering 'third_party/googletest' 2024-06-26T05:43:43.7924170Z Entering 'third_party/ideep' 2024-06-26T05:43:43.8067060Z Entering 'third_party/ideep/mkl-dnn' 2024-06-26T05:43:43.8186480Z Entering 'third_party/ittapi' 2024-06-26T05:43:43.8288590Z Entering 'third_party/kineto' 2024-06-26T05:43:43.8388770Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2024-06-26T05:43:43.8488460Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2024-06-26T05:43:43.8590870Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2024-06-26T05:43:43.8693030Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2024-06-26T05:43:43.8796790Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2024-06-26T05:43:43.8897540Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2024-06-26T05:43:43.9000140Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2024-06-26T05:43:43.9101850Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2024-06-26T05:43:43.9201980Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2024-06-26T05:43:43.9306020Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2024-06-26T05:43:43.9411640Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2024-06-26T05:43:43.9514850Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2024-06-26T05:43:43.9619110Z Entering 'third_party/mimalloc' 2024-06-26T05:43:43.9723920Z Entering 'third_party/nccl/nccl' 2024-06-26T05:43:43.9844510Z Entering 'third_party/nlohmann' 2024-06-26T05:43:43.9949950Z Entering 'third_party/onnx' 2024-06-26T05:43:44.0081790Z Entering 'third_party/onnx/third_party/benchmark' 2024-06-26T05:43:44.0214770Z Entering 'third_party/onnx/third_party/pybind11' 2024-06-26T05:43:44.0355060Z Entering 'third_party/opentelemetry-cpp' 2024-06-26T05:43:44.0456620Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2024-06-26T05:43:44.0556630Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2024-06-26T05:43:44.0658040Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2024-06-26T05:43:44.0758780Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2024-06-26T05:43:44.0860080Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2024-06-26T05:43:44.0960180Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2024-06-26T05:43:44.1060500Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2024-06-26T05:43:44.1159770Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2024-06-26T05:43:44.1261150Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2024-06-26T05:43:44.1363240Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2024-06-26T05:43:44.1473730Z Entering 'third_party/pocketfft' 2024-06-26T05:43:44.1580380Z Entering 'third_party/protobuf' 2024-06-26T05:43:44.1784760Z Entering 'third_party/protobuf/third_party/benchmark' 2024-06-26T05:43:44.1919450Z Entering 'third_party/protobuf/third_party/googletest' 2024-06-26T05:43:44.2048690Z Entering 'third_party/psimd' 2024-06-26T05:43:44.2163120Z Entering 'third_party/pthreadpool' 2024-06-26T05:43:44.2288850Z Entering 'third_party/pybind11' 2024-06-26T05:43:44.2405100Z Entering 'third_party/python-peachpy' 2024-06-26T05:43:44.2512790Z Entering 'third_party/sleef' 2024-06-26T05:43:44.2627970Z Entering 'third_party/tensorpipe' 2024-06-26T05:43:44.2772870Z Entering 'third_party/tensorpipe/third_party/googletest' 2024-06-26T05:43:44.2949880Z Entering 'third_party/tensorpipe/third_party/libnop' 2024-06-26T05:43:44.3094160Z Entering 'third_party/tensorpipe/third_party/libuv' 2024-06-26T05:43:44.3240640Z Entering 'third_party/tensorpipe/third_party/pybind11' 2024-06-26T05:43:44.3375040Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2024-06-26T05:43:44.3514230Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2024-06-26T05:43:44.3579520Z http.https://github.com/.extraheader 2024-06-26T05:43:44.3587230Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2024-06-26T05:43:44.3688110Z [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' || :" 2024-06-26T05:43:44.4193460Z Entering 'android/libs/fbjni' 2024-06-26T05:43:44.4263350Z http.https://github.com/.extraheader 2024-06-26T05:43:44.4350520Z Entering 'third_party/FP16' 2024-06-26T05:43:44.4417800Z http.https://github.com/.extraheader 2024-06-26T05:43:44.4487740Z Entering 'third_party/FXdiv' 2024-06-26T05:43:44.4555610Z http.https://github.com/.extraheader 2024-06-26T05:43:44.4627700Z Entering 'third_party/NNPACK' 2024-06-26T05:43:44.4695140Z http.https://github.com/.extraheader 2024-06-26T05:43:44.4762950Z Entering 'third_party/VulkanMemoryAllocator' 2024-06-26T05:43:44.4830510Z http.https://github.com/.extraheader 2024-06-26T05:43:44.4899770Z Entering 'third_party/XNNPACK' 2024-06-26T05:43:44.4968320Z http.https://github.com/.extraheader 2024-06-26T05:43:44.5043400Z Entering 'third_party/benchmark' 2024-06-26T05:43:44.5112450Z http.https://github.com/.extraheader 2024-06-26T05:43:44.5282370Z Entering 'third_party/cpp-httplib' 2024-06-26T05:43:44.5353410Z http.https://github.com/.extraheader 2024-06-26T05:43:44.5421080Z Entering 'third_party/cpuinfo' 2024-06-26T05:43:44.5494860Z http.https://github.com/.extraheader 2024-06-26T05:43:44.5564540Z Entering 'third_party/cudnn_frontend' 2024-06-26T05:43:44.5634900Z http.https://github.com/.extraheader 2024-06-26T05:43:44.5759530Z Entering 'third_party/cutlass' 2024-06-26T05:43:44.5830200Z http.https://github.com/.extraheader 2024-06-26T05:43:44.5899700Z Entering 'third_party/eigen' 2024-06-26T05:43:44.5966400Z http.https://github.com/.extraheader 2024-06-26T05:43:44.6033920Z Entering 'third_party/fbgemm' 2024-06-26T05:43:44.6100090Z http.https://github.com/.extraheader 2024-06-26T05:43:44.6165930Z Entering 'third_party/fbgemm/third_party/asmjit' 2024-06-26T05:43:44.6231760Z http.https://github.com/.extraheader 2024-06-26T05:43:44.6298080Z Entering 'third_party/fbgemm/third_party/cpuinfo' 2024-06-26T05:43:44.6364490Z http.https://github.com/.extraheader 2024-06-26T05:43:44.6429490Z Entering 'third_party/fbgemm/third_party/cutlass' 2024-06-26T05:43:44.6495820Z http.https://github.com/.extraheader 2024-06-26T05:43:44.6569210Z Entering 'third_party/fbgemm/third_party/googletest' 2024-06-26T05:43:44.6635230Z http.https://github.com/.extraheader 2024-06-26T05:43:44.6701680Z Entering 'third_party/fbgemm/third_party/hipify_torch' 2024-06-26T05:43:44.6766880Z http.https://github.com/.extraheader 2024-06-26T05:43:44.6835610Z Entering 'third_party/flatbuffers' 2024-06-26T05:43:44.6902100Z http.https://github.com/.extraheader 2024-06-26T05:43:44.6970760Z Entering 'third_party/fmt' 2024-06-26T05:43:44.7038760Z http.https://github.com/.extraheader 2024-06-26T05:43:44.7106300Z Entering 'third_party/foxi' 2024-06-26T05:43:44.7173850Z http.https://github.com/.extraheader 2024-06-26T05:43:44.7240700Z Entering 'third_party/gemmlowp/gemmlowp' 2024-06-26T05:43:44.7307790Z http.https://github.com/.extraheader 2024-06-26T05:43:44.7374680Z Entering 'third_party/gloo' 2024-06-26T05:43:44.7440610Z http.https://github.com/.extraheader 2024-06-26T05:43:44.7507430Z Entering 'third_party/googletest' 2024-06-26T05:43:44.7575660Z http.https://github.com/.extraheader 2024-06-26T05:43:44.7642570Z Entering 'third_party/ideep' 2024-06-26T05:43:44.7709940Z http.https://github.com/.extraheader 2024-06-26T05:43:44.7774640Z Entering 'third_party/ideep/mkl-dnn' 2024-06-26T05:43:44.7841250Z http.https://github.com/.extraheader 2024-06-26T05:43:44.7912270Z Entering 'third_party/ittapi' 2024-06-26T05:43:44.7980770Z http.https://github.com/.extraheader 2024-06-26T05:43:44.8047720Z Entering 'third_party/kineto' 2024-06-26T05:43:44.8115140Z http.https://github.com/.extraheader 2024-06-26T05:43:44.8181940Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2024-06-26T05:43:44.8248320Z http.https://github.com/.extraheader 2024-06-26T05:43:44.8314640Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2024-06-26T05:43:44.8382860Z http.https://github.com/.extraheader 2024-06-26T05:43:44.8450960Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2024-06-26T05:43:44.8517170Z http.https://github.com/.extraheader 2024-06-26T05:43:44.8583940Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2024-06-26T05:43:44.8651560Z http.https://github.com/.extraheader 2024-06-26T05:43:44.8719850Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2024-06-26T05:43:44.8785830Z http.https://github.com/.extraheader 2024-06-26T05:43:44.8852930Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2024-06-26T05:43:44.8918680Z http.https://github.com/.extraheader 2024-06-26T05:43:44.8988080Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2024-06-26T05:43:44.9056130Z http.https://github.com/.extraheader 2024-06-26T05:43:44.9122880Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2024-06-26T05:43:44.9190050Z http.https://github.com/.extraheader 2024-06-26T05:43:44.9256160Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2024-06-26T05:43:44.9323270Z http.https://github.com/.extraheader 2024-06-26T05:43:44.9390890Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2024-06-26T05:43:44.9456480Z http.https://github.com/.extraheader 2024-06-26T05:43:44.9526860Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2024-06-26T05:43:44.9592980Z http.https://github.com/.extraheader 2024-06-26T05:43:44.9659480Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2024-06-26T05:43:44.9726890Z http.https://github.com/.extraheader 2024-06-26T05:43:44.9797200Z Entering 'third_party/mimalloc' 2024-06-26T05:43:44.9866220Z http.https://github.com/.extraheader 2024-06-26T05:43:44.9932420Z Entering 'third_party/nccl/nccl' 2024-06-26T05:43:44.9999480Z http.https://github.com/.extraheader 2024-06-26T05:43:45.0066120Z Entering 'third_party/nlohmann' 2024-06-26T05:43:45.0131850Z http.https://github.com/.extraheader 2024-06-26T05:43:45.0199100Z Entering 'third_party/onnx' 2024-06-26T05:43:45.0265110Z http.https://github.com/.extraheader 2024-06-26T05:43:45.0342100Z Entering 'third_party/onnx/third_party/benchmark' 2024-06-26T05:43:45.0405150Z http.https://github.com/.extraheader 2024-06-26T05:43:45.0472620Z Entering 'third_party/onnx/third_party/pybind11' 2024-06-26T05:43:45.0539540Z http.https://github.com/.extraheader 2024-06-26T05:43:45.0609290Z Entering 'third_party/opentelemetry-cpp' 2024-06-26T05:43:45.0677670Z http.https://github.com/.extraheader 2024-06-26T05:43:45.0743040Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2024-06-26T05:43:45.0809850Z http.https://github.com/.extraheader 2024-06-26T05:43:45.0875840Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2024-06-26T05:43:45.0941950Z http.https://github.com/.extraheader 2024-06-26T05:43:45.1010380Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2024-06-26T05:43:45.1076870Z http.https://github.com/.extraheader 2024-06-26T05:43:45.1143430Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2024-06-26T05:43:45.1210430Z http.https://github.com/.extraheader 2024-06-26T05:43:45.1276870Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2024-06-26T05:43:45.1343530Z http.https://github.com/.extraheader 2024-06-26T05:43:45.1410460Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2024-06-26T05:43:45.1476600Z http.https://github.com/.extraheader 2024-06-26T05:43:45.1544910Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2024-06-26T05:43:45.1613910Z http.https://github.com/.extraheader 2024-06-26T05:43:45.1680840Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2024-06-26T05:43:45.1746950Z http.https://github.com/.extraheader 2024-06-26T05:43:45.1814760Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2024-06-26T05:43:45.1882430Z http.https://github.com/.extraheader 2024-06-26T05:43:45.1950970Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2024-06-26T05:43:45.2019230Z http.https://github.com/.extraheader 2024-06-26T05:43:45.2094500Z Entering 'third_party/pocketfft' 2024-06-26T05:43:45.2163390Z http.https://github.com/.extraheader 2024-06-26T05:43:45.2229500Z Entering 'third_party/protobuf' 2024-06-26T05:43:45.2295380Z http.https://github.com/.extraheader 2024-06-26T05:43:45.2362730Z Entering 'third_party/protobuf/third_party/benchmark' 2024-06-26T05:43:45.2428710Z http.https://github.com/.extraheader 2024-06-26T05:43:45.2495460Z Entering 'third_party/protobuf/third_party/googletest' 2024-06-26T05:43:45.2562240Z http.https://github.com/.extraheader 2024-06-26T05:43:45.2630790Z Entering 'third_party/psimd' 2024-06-26T05:43:45.2699370Z http.https://github.com/.extraheader 2024-06-26T05:43:45.2765700Z Entering 'third_party/pthreadpool' 2024-06-26T05:43:45.2832900Z http.https://github.com/.extraheader 2024-06-26T05:43:45.2899110Z Entering 'third_party/pybind11' 2024-06-26T05:43:45.2964880Z http.https://github.com/.extraheader 2024-06-26T05:43:45.3032570Z Entering 'third_party/python-peachpy' 2024-06-26T05:43:45.3098660Z http.https://github.com/.extraheader 2024-06-26T05:43:45.3165190Z Entering 'third_party/sleef' 2024-06-26T05:43:45.3231800Z http.https://github.com/.extraheader 2024-06-26T05:43:45.3298720Z Entering 'third_party/tensorpipe' 2024-06-26T05:43:45.3365530Z http.https://github.com/.extraheader 2024-06-26T05:43:45.3430920Z Entering 'third_party/tensorpipe/third_party/googletest' 2024-06-26T05:43:45.3497540Z http.https://github.com/.extraheader 2024-06-26T05:43:45.3564340Z Entering 'third_party/tensorpipe/third_party/libnop' 2024-06-26T05:43:45.3630590Z http.https://github.com/.extraheader 2024-06-26T05:43:45.3698410Z Entering 'third_party/tensorpipe/third_party/libuv' 2024-06-26T05:43:45.3765010Z http.https://github.com/.extraheader 2024-06-26T05:43:45.3831630Z Entering 'third_party/tensorpipe/third_party/pybind11' 2024-06-26T05:43:45.3897810Z http.https://github.com/.extraheader 2024-06-26T05:43:45.3962240Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2024-06-26T05:43:45.4029370Z http.https://github.com/.extraheader 2024-06-26T05:43:45.4159800Z A job completed hook has been configured by the self-hosted runner administrator 2024-06-26T05:43:45.4243650Z ##[group]Run '/opt/runner_scripts/post-job.sh' 2024-06-26T05:43:45.4258910Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2024-06-26T05:43:45.4259220Z ##[endgroup] 2024-06-26T05:43:45.4838130Z + df -h 2024-06-26T05:43:45.4857760Z + ls -t /var/log/post_job 2024-06-26T05:43:45.4858100Z + awk 'NR>100' 2024-06-26T05:43:45.4858710Z + xargs rm -fv 2024-06-26T05:43:45.4871900Z + Checking if runner needs to be terminated...ok 2024-06-26T05:43:45.4872410Z + Outputting disk space 2024-06-26T05:43:45.4872810Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2024-06-26T05:43:45.4873320Z /dev/disk5s2s1 256Gi 9.5Gi 144Gi 7% 404k 1.5G 0% / 2024-06-26T05:43:45.4873800Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2024-06-26T05:43:45.4874530Z /dev/disk5s5 256Gi 1.0Gi 144Gi 1% 1 1.5G 0% /System/Volumes/VM 2024-06-26T05:43:45.4875070Z /dev/disk5s3 256Gi 5.7Gi 144Gi 4% 997 1.5G 0% /System/Volumes/Preboot 2024-06-26T05:43:45.4875610Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2024-06-26T05:43:45.4876150Z /dev/disk1s1 500Mi 54Mi 387Mi 13% 53 4.0M 0% /System/Volumes/iSCPreboot 2024-06-26T05:43:45.4876710Z /dev/disk1s3 500Mi 700Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2024-06-26T05:43:45.4877250Z /dev/disk5s1 256Gi 95Gi 144Gi 40% 11M 1.5G 1% /System/Volumes/Data 2024-06-26T05:43:45.4877890Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2024-06-26T05:43:45.4878540Z /dev/disk3s4 228Gi 220Ki 212Gi 1% 17 2.2G 0% /private/tmp/tmp-mount-CSI6T3 2024-06-26T05:43:45.4879010Z + Cleaning up old logs (Keep the latest 100) 2024-06-26T05:43:47.0256470Z + Restoring SSH key to be the skeleton key 2024-06-26T05:43:47.0411940Z Evaluate and set job outputs 2024-06-26T05:43:47.0418340Z Set output 'build-outcome' 2024-06-26T05:43:47.0419520Z Set output 'test-matrix' 2024-06-26T05:43:47.0420090Z Cleaning up orphan processes 2024-06-26T05:43:47.8946160Z Terminate orphan process: pid (26299) (sccache)